diff --git a/README.md b/README.md index 92192a2..564c896 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,11 @@ - 🎯 **TCP包抓取** - 实时抓取游戏客户端的TCP通信数据 - 🔍 **数据解析** - 自动解析十六进制数据为可读的装备信息 - 📊 **数据可视化** - 现代化的React界面展示装备数据 -- 💾 **数据导出** - 支持导出为JSON格式 +- 💾 **数据持久化** - 基于SQLite的本地数据存储,支持装备数据的增删改查 +- 📤 **数据导出** - 支持导出为JSON格式 +- 🔍 **数据搜索** - 支持装备数据的模糊搜索和筛选 +- 📈 **数据统计** - 提供装备数据的统计分析功能 +- ⚙️ **设置管理** - 应用设置的本地持久化存储 - 🚀 **高性能** - 基于Go语言的高性能网络处理 ## 技术栈 @@ -17,6 +21,7 @@ - **Wails v2** - 桌面应用框架 - **gopacket** - 网络包抓取 - **zap** - 结构化日志 +- **SQLite** - 本地数据存储 ### 前端 - **React 18** - 用户界面框架 @@ -109,6 +114,56 @@ equipment-analyzer/ ## 开发指南 +### 常见问题解决 + +#### 1. React严格模式导致的重复调用 +在开发模式下,React严格模式会导致组件渲染两次,这可能导致: +- useEffect被重复执行 +- 异步操作被重复调用 +- 用户提示消息重复显示 + +**解决方案:** +- **全局消息去重配置**:在`frontend/src/utils/messageConfig.ts`中配置Antd message的全局设置 +- **防重复机制**:使用缓存机制防止2秒内相同消息重复显示 +- **最大显示数量限制**:设置`maxCount: 1`确保同时只显示一个消息 + +**全局配置:** +```typescript +// frontend/src/utils/messageConfig.ts +import { message } from 'antd'; + +// 配置全局消息设置,防止重复显示 +message.config({ + maxCount: 1, // 最多同时显示1个消息 + duration: 3, // 消息显示3秒 + top: 24, // 距离顶部24px +}); + +// 防重复消息函数 +const messageCache = new Map(); +const DEBOUNCE_TIME = 2000; // 2秒内相同消息不重复显示 + +export const showMessage = (type: 'success' | 'error' | 'warning' | 'info', content: string) => { + const messageId = `${type}:${content}`; + const now = Date.now(); + + // 检查是否在防抖时间内 + const lastTime = messageCache.get(messageId); + if (lastTime && now - lastTime < DEBOUNCE_TIME) { + return; // 跳过重复消息 + } + + // 更新缓存并显示消息 + messageCache.set(messageId, now); + message[type](content); +}; +``` + +**使用方法:** +- 在`main.tsx`中导入配置:`import './utils/messageConfig'` +- 在组件中正常使用`message.success()`、`message.error()`等 +- 全局配置会自动防止重复消息显示 + ### 添加新功能 1. **后端功能** @@ -121,6 +176,23 @@ equipment-analyzer/ - 使用TypeScript确保类型安全 - 遵循Ant Design设计规范 +### 数据库操作 + +1. **添加新的数据表** + - 在`internal/model/database.go`的`initTables()`方法中添加表结构 + - 在`Database`结构体中添加相应的CRUD方法 + - 在`DatabaseService`中添加业务逻辑方法 + - 在`App`中添加API接口方法 + +2. **数据迁移** + - 数据库结构变更时,在`initTables()`方法中处理版本升级 + - 使用事务确保数据一致性 + +3. **性能优化** + - 为常用查询字段添加索引 + - 使用批量操作减少数据库交互 + - 合理使用连接池和事务 + ### 测试 ```bash @@ -147,8 +219,27 @@ make release make clean ``` -## 配置说明 +## 数据存储 +### 数据库存储 +应用使用SQLite数据库进行本地数据持久化,数据库文件位置:`~/.equipment-analyzer/equipment_analyzer.db` + +#### 数据库表结构 +- **equipment** - 装备基本信息表 +- **equipment_operations** - 装备操作属性表 +- **capture_sessions** - 抓包会话记录表 +- **raw_packet_data** - 原始数据包表 +- **app_settings** - 应用设置表 + +#### 数据库功能 +- ✅ 装备数据的增删改查 +- ✅ 批量数据导入导出 +- ✅ 装备数据搜索和筛选 +- ✅ 数据统计分析 +- ✅ 应用设置持久化 +- ✅ 抓包会话历史记录 + +### 配置文件 应用会在用户目录下创建配置文件:`~/.equipment-analyzer/config.json` ```json diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index d349b05..f89e39c 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -1,14 +1,10 @@ -import React, {useEffect, useState, useRef} from 'react' -import {Button, Card, Layout, message, Select, Spin, Table} from 'antd' -import {DownloadOutlined, PlayCircleOutlined, SettingOutlined, StopOutlined} from '@ant-design/icons' +import React from 'react' +import {Layout, Menu} from 'antd' import './App.css' -import {ExportData, GetCapturedData,GetNetworkInterfaces, - ParseData,StartCapture,StopCapture, ReadRawJsonFile -} from "../wailsjs/go/service/App"; -import { BrowserRouter as Router, Routes, Route, Link, useLocation } from 'react-router-dom'; -import { Menu } from 'antd'; +import {BrowserRouter as Router, Link, Route, Routes, useLocation} from 'react-router-dom'; import CapturePage from './pages/CapturePage'; import OptimizerPage from './pages/OptimizerPage'; +import DatabasePage from './pages/DatabasePage'; const {Header, Content, Sider} = Layout @@ -51,6 +47,9 @@ function AppContent() { 抓包 + + 数据库 + 配装优化 @@ -59,6 +58,7 @@ function AppContent() { } /> + } /> } /> diff --git a/frontend/src/pages/CapturePage.tsx b/frontend/src/pages/CapturePage.tsx index 6acf9cc..4139140 100644 --- a/frontend/src/pages/CapturePage.tsx +++ b/frontend/src/pages/CapturePage.tsx @@ -1,11 +1,11 @@ import React, {useEffect, useRef, useState} from 'react'; import {Button, Card, Layout, message, Select, Spin, Table} from 'antd'; -import {DownloadOutlined, PlayCircleOutlined, SettingOutlined, StopOutlined} from '@ant-design/icons'; +import {DownloadOutlined, PlayCircleOutlined, SettingOutlined, StopOutlined, UploadOutlined} from '@ant-design/icons'; import '../App.css'; import { - ExportData, GetNetworkInterfaces, ReadRawJsonFile, + SaveParsedDataToDatabase, StartCapture, StopAndParseCapture } from '../../wailsjs/go/service/App'; @@ -170,50 +170,102 @@ function CapturePage() { } }; - const exportData = async () => { - if (!capturedData.length) { + const exportData = () => { + // 检查是否有解析数据 + if (!parsedData || !Array.isArray(parsedData.items) || parsedData.items.length === 0) { showMessage('warning', '没有数据可导出'); return; } + try { - const filename = `equipment_data_${Date.now()}.json`; - const result = await safeApiCall( - () => ExportData(capturedData, filename), - '导出数据失败' - ); - if (result === undefined) { - showMessage('error', '导出数据失败'); - return; - } + // 创建要导出的数据内容 + const exportContent = JSON.stringify(parsedData, null, 2); + + // 创建 Blob 对象 + const blob = new Blob([exportContent], { type: 'text/plain;charset=utf-8' }); + + // 创建下载链接 + const url = URL.createObjectURL(blob); + const link = document.createElement('a'); + link.href = url; + link.download = 'gear.txt'; + + // 触发下载 + document.body.appendChild(link); + link.click(); + + // 清理 + document.body.removeChild(link); + URL.revokeObjectURL(url); + showMessage('success', '数据导出成功'); } catch (error) { - console.error('导出数据时发生未知错误:', error); + console.error('导出数据时发生错误:', error); showMessage('error', '导出数据失败'); } }; - const handleFileUpload = (event: React.ChangeEvent) => { + const handleFileUpload = async (event: React.ChangeEvent) => { const file = event.target.files?.[0]; if (!file) return; + setUploadedFileName(file.name); const reader = new FileReader(); - reader.onload = (e) => { + reader.onload = async (e) => { try { const text = e.target?.result as string; const json = JSON.parse(text); + + // 校验数据格式 + if (!json || typeof json !== 'object') { + showMessage('error', '文件格式错误:不是有效的JSON对象'); + return; + } + + if (!json.heroes || !Array.isArray(json.heroes)) { + showMessage('error', '数据格式错误:缺少heroes数组'); + return; + } + + if (!json.items || !Array.isArray(json.items)) { + showMessage('error', '数据格式错误:缺少items数组'); + return; + } + + if (json.heroes.length === 0) { + showMessage('error', '数据格式错误:heroes数组不能为空'); + return; + } + + if (json.items.length === 0) { + showMessage('error', '数据格式错误:items数组不能为空'); + return; + } + + // 数据校验通过,保存到数据库 + const sessionName = `import_${Date.now()}`; + const equipmentJSON = JSON.stringify(json.items); + const heroesJSON = JSON.stringify(json.heroes); + + await SaveParsedDataToDatabase(sessionName, equipmentJSON, heroesJSON); + + // 更新界面显示 const safeData = { - items: Array.isArray(json.items) ? json.items : [], - heroes: Array.isArray(json.heroes) ? json.heroes : [] + items: json.items, + heroes: json.heroes }; setParsedData(safeData); - if (safeData.items.length === 0 && safeData.heroes.length === 0) { - showMessage('warning', '上传文件数据为空,请检查文件内容'); - } else { - showMessage('success', `文件解析成功:${safeData.items.length}件装备,${safeData.heroes.length}个英雄`); - } + setUploadedFileName(''); // 清空文件名显示 + + showMessage('success', `数据导入成功:${json.items.length}件装备,${json.heroes.length}个英雄,已保存到数据库`); + } catch (err) { - console.error('文件格式错误,无法解析:', err); - showMessage('error', '文件格式错误,无法解析'); + console.error('文件处理错误:', err); + if (err instanceof SyntaxError) { + showMessage('error', '文件格式错误:不是有效的JSON格式'); + } else { + showMessage('error', '数据导入失败'); + } setParsedData({ items: [], heroes: [] }); } }; @@ -315,19 +367,6 @@ function CapturePage() { loading={loading} style={{ flex: 1, height: 32 }} >刷新数据 - - - {uploadedFileName && ( - {uploadedFileName} - )} @@ -379,10 +418,28 @@ function CapturePage() { + + + {uploadedFileName && ( + + {uploadedFileName} + + )} diff --git a/frontend/src/pages/DatabasePage.tsx b/frontend/src/pages/DatabasePage.tsx new file mode 100644 index 0000000..ce82a92 --- /dev/null +++ b/frontend/src/pages/DatabasePage.tsx @@ -0,0 +1,203 @@ +import React, {useEffect, useState} from 'react'; +import {Button, Card, Col, Row, Space, Statistic, Table, Tag,} from 'antd'; +import {BarChartOutlined, DatabaseOutlined, ReloadOutlined, SettingOutlined,} from '@ant-design/icons'; +import * as App from '../../wailsjs/go/service/App'; +import {model} from '../../wailsjs/go/models'; +import {useMessage} from '../utils/useMessage'; + +// 定义Equipment接口 +interface Equipment { + id: string | number; + code: string; + ct: number; + e: number; + g: number; + l: boolean; + mg: number; + op: any[]; + p: number; + s: string; + sk: number; +} + +const DatabasePage: React.FC = () => { + const [loading, setLoading] = useState(false); + const [latestData, setLatestData] = useState(null); + const { success, error, info } = useMessage(); + + // 加载最新解析数据 + const loadLatestData = async () => { + // 防止重复调用 + if (loading) return; + + setLoading(true); + try { + const parsedResult = await App.GetLatestParsedDataFromDatabase(); + if (parsedResult && (parsedResult.items?.length > 0 || parsedResult.heroes?.length > 0)) { + setLatestData(parsedResult); + success('数据加载成功'); + } else { + setLatestData(null); + info('暂无解析数据'); + } + } catch (err) { + error('加载数据失败'); + console.error('Load data error:', err); + setLatestData(null); + } finally { + setLoading(false); + } + }; + + useEffect(() => { + loadLatestData(); + }, []); + + // 装备表格列定义 + const equipmentColumns = [ + { + title: 'ID', + dataIndex: 'id', + key: 'id', + width: 80, + render: (id: any) => { + const idStr = String(id || ''); + return {idStr.length > 8 ? `${idStr.slice(0, 8)}...` : idStr}; + }, + }, + { + title: '代码', + dataIndex: 'code', + key: 'code', + width: 120, + }, + { + title: '等级', + dataIndex: 'g', + key: 'g', + width: 80, + render: (grade: number) => ( + = 5 ? 'red' : grade >= 3 ? 'orange' : 'green'}> + {grade} + + ), + }, + { + title: '经验', + dataIndex: 'e', + key: 'e', + width: 100, + render: (exp: number) => exp.toLocaleString(), + }, + { + title: '力量', + dataIndex: 'p', + key: 'p', + width: 80, + }, + { + title: '魔法', + dataIndex: 'mg', + key: 'mg', + width: 80, + }, + { + title: '技能', + dataIndex: 'sk', + key: 'sk', + width: 80, + }, + { + title: '状态', + dataIndex: 'l', + key: 'l', + width: 80, + render: (locked: boolean) => ( + + {locked ? '锁定' : '正常'} + + ), + }, + ]; + + return ( +
+ {/* 统计卡片 */} + + + + } + suffix="已连接" + /> + + + + + } + /> + + + + + } + /> + + + + + {/* 操作栏 */} + + + + + 显示最新一次抓包解析的数据 + + + + + {/* 装备表格 */} + + {latestData?.items && latestData.items.length > 0 ? ( + + `第 ${range[0]}-${range[1]} 条,共 ${total} 条`, + }} + scroll={{ x: 800 }} + /> + ) : ( +
+

暂无解析数据

+

+ 请先进行抓包操作,解析后的数据会自动保存到数据库 +

+
+ )} + + + ); +}; + +export default DatabasePage; \ No newline at end of file diff --git a/frontend/src/utils/useMessage.ts b/frontend/src/utils/useMessage.ts new file mode 100644 index 0000000..f5bbfda --- /dev/null +++ b/frontend/src/utils/useMessage.ts @@ -0,0 +1,66 @@ +import {message} from 'antd'; +import {useRef} from 'react'; + +// 全局消息缓存,用于防止重复显示 +const messageCache = new Map(); +const DEBOUNCE_TIME = 2000; // 2秒内相同消息不重复显示 + +export const useMessage = () => { + const messageKeyRef = useRef(''); + + const showMessage = (type: 'success' | 'error' | 'warning' | 'info', content: string, duration?: number) => { + // 生成消息的唯一标识 + const messageId = `${type}:${content}`; + const now = Date.now(); + + // 检查是否在防抖时间内 + const lastTime = messageCache.get(messageId); + if (lastTime && now - lastTime < DEBOUNCE_TIME) { + return; // 跳过重复消息 + } + + // 更新缓存 + messageCache.set(messageId, now); + + // 清理过期的缓存项(超过10秒的) + const expiredKeys: string[] = []; + messageCache.forEach((timestamp, msgId) => { + if (now - timestamp > 10000) { + expiredKeys.push(msgId); + } + }); + expiredKeys.forEach(key => messageCache.delete(key)); + + // 显示消息 + message[type](content, duration); + }; + + const success = (content: string, duration?: number) => { + showMessage('success', content, duration); + }; + + const error = (content: string, duration?: number) => { + showMessage('error', content, duration); + }; + + const warning = (content: string, duration?: number) => { + showMessage('warning', content, duration); + }; + + const info = (content: string, duration?: number) => { + showMessage('info', content, duration); + }; + + const destroy = () => { + message.destroy(); + }; + + return { + success, + error, + warning, + info, + destroy, + showMessage, + }; +}; \ No newline at end of file diff --git a/frontend/wailsjs/go/service/App.d.ts b/frontend/wailsjs/go/service/App.d.ts index 5100075..4b76fe6 100644 --- a/frontend/wailsjs/go/service/App.d.ts +++ b/frontend/wailsjs/go/service/App.d.ts @@ -2,18 +2,32 @@ // This file is automatically generated. DO NOT EDIT import {model} from '../models'; +export function ExportCurrentData(arg1:string):Promise; + export function ExportData(arg1:Array,arg2:string):Promise; +export function GetAllAppSettings():Promise>; + +export function GetAppSetting(arg1:string):Promise; + export function GetCaptureStatus():Promise; export function GetCapturedData():Promise>; +export function GetCurrentDataForExport():Promise; + +export function GetLatestParsedDataFromDatabase():Promise; + export function GetNetworkInterfaces():Promise>; export function ParseData(arg1:Array):Promise; export function ReadRawJsonFile():Promise; +export function SaveAppSetting(arg1:string,arg2:string):Promise; + +export function SaveParsedDataToDatabase(arg1:string,arg2:string,arg3:string):Promise; + export function StartCapture(arg1:string):Promise; export function StopAndParseCapture():Promise; diff --git a/frontend/wailsjs/go/service/App.js b/frontend/wailsjs/go/service/App.js index e825a86..497ea1c 100644 --- a/frontend/wailsjs/go/service/App.js +++ b/frontend/wailsjs/go/service/App.js @@ -2,10 +2,22 @@ // Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL // This file is automatically generated. DO NOT EDIT +export function ExportCurrentData(arg1) { + return window['go']['service']['App']['ExportCurrentData'](arg1); +} + export function ExportData(arg1, arg2) { return window['go']['service']['App']['ExportData'](arg1, arg2); } +export function GetAllAppSettings() { + return window['go']['service']['App']['GetAllAppSettings'](); +} + +export function GetAppSetting(arg1) { + return window['go']['service']['App']['GetAppSetting'](arg1); +} + export function GetCaptureStatus() { return window['go']['service']['App']['GetCaptureStatus'](); } @@ -14,6 +26,14 @@ export function GetCapturedData() { return window['go']['service']['App']['GetCapturedData'](); } +export function GetCurrentDataForExport() { + return window['go']['service']['App']['GetCurrentDataForExport'](); +} + +export function GetLatestParsedDataFromDatabase() { + return window['go']['service']['App']['GetLatestParsedDataFromDatabase'](); +} + export function GetNetworkInterfaces() { return window['go']['service']['App']['GetNetworkInterfaces'](); } @@ -26,6 +46,14 @@ export function ReadRawJsonFile() { return window['go']['service']['App']['ReadRawJsonFile'](); } +export function SaveAppSetting(arg1, arg2) { + return window['go']['service']['App']['SaveAppSetting'](arg1, arg2); +} + +export function SaveParsedDataToDatabase(arg1, arg2, arg3) { + return window['go']['service']['App']['SaveParsedDataToDatabase'](arg1, arg2, arg3); +} + export function StartCapture(arg1) { return window['go']['service']['App']['StartCapture'](arg1); } diff --git a/go.mod b/go.mod index 83da18d..16cb5a3 100644 --- a/go.mod +++ b/go.mod @@ -6,6 +6,7 @@ toolchain go1.24.4 require ( github.com/google/gopacket v1.1.19 + github.com/mattn/go-sqlite3 v1.14.17 github.com/wailsapp/wails/v2 v2.10.1 go.uber.org/zap v1.26.0 gopkg.in/natefinch/lumberjack.v2 v2.2.1 diff --git a/go.sum b/go.sum index 9c468ff..eb26d38 100644 --- a/go.sum +++ b/go.sum @@ -34,6 +34,8 @@ github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovk github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY= github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= +github.com/mattn/go-sqlite3 v1.14.17 h1:mCRHCLDUBXgpKAqIKsaAaAsrAlbkeomtRFKXh2L6YIM= +github.com/mattn/go-sqlite3 v1.14.17/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg= github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c h1:+mdjkGKdHQG3305AYmdv1U2eRNDiU2ErMBj1gwrq8eQ= github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c/go.mod h1:7rwL4CYBLnjLxUqIJNnCWiEdr3bn6IUYi15bNlnbCCU= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= diff --git a/internal/capture/interface.go b/internal/capture/interface.go index 379c878..7b5fffa 100644 --- a/internal/capture/interface.go +++ b/internal/capture/interface.go @@ -23,7 +23,7 @@ func GetNetworkInterfaces() ([]model.NetworkInterface, error) { continue } - log.Printf("网卡名称: %s, 描述: %s", device.Name, device.Description) // 打印每个网卡的名称和描述 + //log.Printf("网卡名称: %s, 描述: %s", device.Name, device.Description) // 打印每个网卡的名称和描述 // 提取IP地址 var addresses []string diff --git a/internal/model/database.go b/internal/model/database.go new file mode 100644 index 0000000..96c147a --- /dev/null +++ b/internal/model/database.go @@ -0,0 +1,163 @@ +package model + +import ( + "database/sql" + "fmt" + "os" + "path/filepath" + "time" + + _ "github.com/mattn/go-sqlite3" +) + +// Database 数据库管理器 +type Database struct { + db *sql.DB +} + +// NewDatabase 创建新的数据库连接 +func NewDatabase() (*Database, error) { + dbPath := getDatabasePath() + + // 确保目录存在 + dir := filepath.Dir(dbPath) + if err := os.MkdirAll(dir, 0755); err != nil { + return nil, fmt.Errorf("创建数据库目录失败: %w", err) + } + + // 连接数据库 + db, err := sql.Open("sqlite3", dbPath) + if err != nil { + return nil, fmt.Errorf("连接数据库失败: %w", err) + } + + // 测试连接 + if err := db.Ping(); err != nil { + return nil, fmt.Errorf("数据库连接测试失败: %w", err) + } + + database := &Database{db: db} + + // 初始化表结构 + if err := database.initTables(); err != nil { + return nil, fmt.Errorf("初始化数据库表失败: %w", err) + } + + return database, nil +} + +// Close 关闭数据库连接 +func (d *Database) Close() error { + return d.db.Close() +} + +// getDatabasePath 获取数据库文件路径 +func getDatabasePath() string { + homeDir, err := os.UserHomeDir() + if err != nil { + return "equipment_analyzer.db" + } + return filepath.Join(homeDir, ".equipment-analyzer", "equipment_analyzer.db") +} + +// initTables 初始化数据库表结构 +func (d *Database) initTables() error { + // 解析数据表 - 存储抓包解析后的装备和角色数据 + parsedDataTable := ` + CREATE TABLE IF NOT EXISTS parsed_data ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + session_name TEXT NOT NULL, + items_json TEXT NOT NULL, + heroes_json TEXT NOT NULL, + created_at INTEGER NOT NULL + );` + + // 应用设置表 + settingsTable := ` + CREATE TABLE IF NOT EXISTS app_settings ( + key TEXT PRIMARY KEY, + value TEXT NOT NULL, + updated_at INTEGER NOT NULL + );` + + tables := []string{ + parsedDataTable, + settingsTable, + } + + for _, table := range tables { + if _, err := d.db.Exec(table); err != nil { + return fmt.Errorf("创建表失败: %w", err) + } + } + + return nil +} + +// SaveParsedData 保存解析后的数据 +func (d *Database) SaveParsedData(sessionName string, itemsJSON, heroesJSON string) error { + stmt := ` + INSERT INTO parsed_data (session_name, items_json, heroes_json, created_at) + VALUES (?, ?, ?, ?)` + + _, err := d.db.Exec(stmt, sessionName, itemsJSON, heroesJSON, time.Now().Unix()) + return err +} + +// GetLatestParsedData 获取最新的解析数据 +func (d *Database) GetLatestParsedData() (string, string, error) { + stmt := ` + SELECT items_json, heroes_json + FROM parsed_data + ORDER BY created_at DESC + LIMIT 1` + + var itemsJSON, heroesJSON string + err := d.db.QueryRow(stmt).Scan(&itemsJSON, &heroesJSON) + if err != nil { + return "", "", err + } + + return itemsJSON, heroesJSON, nil +} + + + +// SaveSetting 保存应用设置 +func (d *Database) SaveSetting(key, value string) error { + stmt := "INSERT OR REPLACE INTO app_settings (key, value, updated_at) VALUES (?, ?, ?)" + _, err := d.db.Exec(stmt, key, value, time.Now().Unix()) + return err +} + +// GetSetting 获取应用设置 +func (d *Database) GetSetting(key string) (string, error) { + stmt := "SELECT value FROM app_settings WHERE key = ?" + var value string + err := d.db.QueryRow(stmt, key).Scan(&value) + if err != nil { + return "", err + } + return value, nil +} + +// GetAllSettings 获取所有设置 +func (d *Database) GetAllSettings() (map[string]string, error) { + stmt := "SELECT key, value FROM app_settings" + rows, err := d.db.Query(stmt) + if err != nil { + return nil, err + } + defer rows.Close() + + settings := make(map[string]string) + for rows.Next() { + var key, value string + if err := rows.Scan(&key, &value); err != nil { + return nil, err + } + settings[key] = value + } + + return settings, nil +} \ No newline at end of file diff --git a/internal/service/database_service.go b/internal/service/database_service.go new file mode 100644 index 0000000..e579f4a --- /dev/null +++ b/internal/service/database_service.go @@ -0,0 +1,82 @@ +package service + +import ( + "fmt" + + "equipment-analyzer/internal/model" + "equipment-analyzer/internal/utils" +) + +// DatabaseService 数据库服务 +type DatabaseService struct { + db *model.Database + logger *utils.Logger +} + +// NewDatabaseService 创建数据库服务 +func NewDatabaseService(db *model.Database, logger *utils.Logger) *DatabaseService { + return &DatabaseService{ + db: db, + logger: logger, + } +} + +// SaveParsedDataToDatabase 保存解析后的数据到数据库 +func (s *DatabaseService) SaveParsedDataToDatabase(sessionName string, itemsJSON, heroesJSON string) error { + err := s.db.SaveParsedData(sessionName, itemsJSON, heroesJSON) + if err != nil { + s.logger.Error("保存解析数据到数据库失败", "error", err, "session_name", sessionName) + return fmt.Errorf("保存解析数据失败: %w", err) + } + + s.logger.Info("解析数据保存成功", "session_name", sessionName) + return nil +} + +// GetLatestParsedDataFromDatabase 从数据库获取最新的解析数据 +func (s *DatabaseService) GetLatestParsedDataFromDatabase() (string, string, error) { + itemsJSON, heroesJSON, err := s.db.GetLatestParsedData() + if err != nil { + s.logger.Error("从数据库获取最新解析数据失败", "error", err) + return "", "", fmt.Errorf("获取解析数据失败: %w", err) + } + + s.logger.Info("最新解析数据获取成功") + return itemsJSON, heroesJSON, nil +} + +// SaveAppSetting 保存应用设置 +func (s *DatabaseService) SaveAppSetting(key, value string) error { + err := s.db.SaveSetting(key, value) + if err != nil { + s.logger.Error("保存应用设置失败", "error", err, "key", key) + return fmt.Errorf("保存设置失败: %w", err) + } + + s.logger.Info("应用设置保存成功", "key", key) + return nil +} + +// GetAppSetting 获取应用设置 +func (s *DatabaseService) GetAppSetting(key string) (string, error) { + value, err := s.db.GetSetting(key) + if err != nil { + s.logger.Error("获取应用设置失败", "error", err, "key", key) + return "", fmt.Errorf("获取设置失败: %w", err) + } + + return value, nil +} + +// GetAllAppSettings 获取所有应用设置 +func (s *DatabaseService) GetAllAppSettings() (map[string]string, error) { + settings, err := s.db.GetAllSettings() + if err != nil { + s.logger.Error("获取所有应用设置失败", "error", err) + return nil, fmt.Errorf("获取设置失败: %w", err) + } + + return settings, nil +} + + \ No newline at end of file diff --git a/internal/service/main_service.go b/internal/service/main_service.go index f241e39..866293a 100644 --- a/internal/service/main_service.go +++ b/internal/service/main_service.go @@ -2,8 +2,8 @@ package service import ( "context" + "encoding/json" "fmt" - "io/ioutil" "time" "equipment-analyzer/internal/capture" @@ -13,18 +13,37 @@ import ( ) type App struct { - config *config.Config - logger *utils.Logger - captureService *CaptureService - parserService *ParserService + config *config.Config + logger *utils.Logger + captureService *CaptureService + parserService *ParserService + database *model.Database + databaseService *DatabaseService } func NewApp(cfg *config.Config, logger *utils.Logger) *App { + // 初始化数据库 + database, err := model.NewDatabase() + if err != nil { + logger.Error("初始化数据库失败", "error", err) + // 如果数据库初始化失败,仍然创建应用,但数据库功能不可用 + return &App{ + config: cfg, + logger: logger, + captureService: NewCaptureService(cfg, logger), + parserService: NewParserService(cfg, logger), + } + } + + databaseService := NewDatabaseService(database, logger) + return &App{ - config: cfg, - logger: logger, - captureService: NewCaptureService(cfg, logger), - parserService: NewParserService(cfg, logger), + config: cfg, + logger: logger, + captureService: NewCaptureService(cfg, logger), + parserService: NewParserService(cfg, logger), + database: database, + databaseService: databaseService, } } @@ -43,6 +62,15 @@ func (a *App) BeforeClose(ctx context.Context) (prevent bool) { func (a *App) Shutdown(ctx context.Context) { a.logger.Info("应用关闭") + + // 关闭数据库连接 + if a.database != nil { + if err := a.database.Close(); err != nil { + a.logger.Error("关闭数据库连接失败", "error", err) + } else { + a.logger.Info("数据库连接已关闭") + } + } } // GetNetworkInterfaces 获取网络接口列表 @@ -130,6 +158,80 @@ func (a *App) ExportData(hexDataList []string, filename string) error { return nil } +// ExportCurrentData 导出当前数据库中的数据到文件 +func (a *App) ExportCurrentData(filename string) error { + if a.databaseService == nil { + return fmt.Errorf("数据库服务未初始化") + } + + // 从数据库获取最新数据 + parsedResult, err := a.GetLatestParsedDataFromDatabase() + if err != nil { + a.logger.Error("获取数据库数据失败", "error", err) + return err + } + + if parsedResult == nil || (len(parsedResult.Items) == 0 && len(parsedResult.Heroes) == 0) { + return fmt.Errorf("没有数据可导出") + } + + // 创建导出数据格式 + exportData := map[string]interface{}{ + "items": parsedResult.Items, + "heroes": parsedResult.Heroes, + } + + // 序列化为JSON + jsonData, err := json.MarshalIndent(exportData, "", " ") + if err != nil { + a.logger.Error("序列化数据失败", "error", err) + return err + } + + // 写入文件 + err = utils.WriteFile(filename, jsonData) + if err != nil { + a.logger.Error("写入文件失败", "error", err) + return err + } + + a.logger.Info("数据导出成功", "filename", filename, "items_count", len(parsedResult.Items), "heroes_count", len(parsedResult.Heroes)) + return nil +} + +// GetCurrentDataForExport 获取当前数据库中的数据,供前端导出使用 +func (a *App) GetCurrentDataForExport() (string, error) { + if a.databaseService == nil { + return "", fmt.Errorf("数据库服务未初始化") + } + + // 从数据库获取最新数据 + parsedResult, err := a.GetLatestParsedDataFromDatabase() + if err != nil { + a.logger.Error("获取数据库数据失败", "error", err) + return "", err + } + + if parsedResult == nil || (len(parsedResult.Items) == 0 && len(parsedResult.Heroes) == 0) { + return "", fmt.Errorf("没有数据可导出") + } + + // 创建导出数据格式 + exportData := map[string]interface{}{ + "items": parsedResult.Items, + "heroes": parsedResult.Heroes, + } + + // 序列化为JSON + jsonData, err := json.MarshalIndent(exportData, "", " ") + if err != nil { + a.logger.Error("序列化数据失败", "error", err) + return "", err + } + + return string(jsonData), nil +} + // GetCaptureStatus 获取抓包状态 func (a *App) GetCaptureStatus() model.CaptureStatus { return model.CaptureStatus{ @@ -145,13 +247,9 @@ func (a *App) getStatusMessage() string { return "准备就绪" } -// ReadRawJsonFile 供前端调用,读取output_raw.json内容 +// ReadRawJsonFile 已废弃,请使用GetLatestParsedDataFromDatabase从数据库获取数据 func (a *App) ReadRawJsonFile() (*model.ParsedResult, error) { - data, err := ioutil.ReadFile("output_raw.json") - if err != nil { - return nil, err - } - return a.parserService.ReadRawJsonFile(string(data)) + return a.GetLatestParsedDataFromDatabase() } // StopAndParseCapture 停止抓包并解析数据,供前端调用 @@ -161,5 +259,101 @@ func (a *App) StopAndParseCapture() (*model.ParsedResult, error) { a.logger.Error("停止抓包并解析数据失败", "error", err) return nil, err } + + // 将解析结果保存到数据库 + if a.databaseService != nil && result != nil { + // 序列化装备数据 + itemsJSON := "[]" + if result.Items != nil { + if jsonData, err := json.Marshal(result.Items); err == nil { + itemsJSON = string(jsonData) + } + } + + // 序列化英雄数据 + heroesJSON := "[]" + if result.Heroes != nil { + if jsonData, err := json.Marshal(result.Heroes); err == nil { + heroesJSON = string(jsonData) + } + } + + // 保存到数据库 + sessionName := fmt.Sprintf("capture_%d", time.Now().Unix()) + if err := a.databaseService.SaveParsedDataToDatabase(sessionName, itemsJSON, heroesJSON); err != nil { + a.logger.Error("保存解析数据到数据库失败", "error", err) + // 不返回错误,因为解析成功了,只是保存失败 + } else { + a.logger.Info("解析数据已保存到数据库", "session_name", sessionName) + } + } + return result, nil } + +// ========== 数据库相关API ========== + +// SaveParsedDataToDatabase 保存解析后的数据到数据库 +func (a *App) SaveParsedDataToDatabase(sessionName string, itemsJSON, heroesJSON string) error { + if a.databaseService == nil { + return fmt.Errorf("数据库服务未初始化") + } + return a.databaseService.SaveParsedDataToDatabase(sessionName, itemsJSON, heroesJSON) +} + +// GetLatestParsedDataFromDatabase 从数据库获取最新的解析数据 +func (a *App) GetLatestParsedDataFromDatabase() (*model.ParsedResult, error) { + if a.databaseService == nil { + return nil, fmt.Errorf("数据库服务未初始化") + } + + itemsJSON, heroesJSON, err := a.databaseService.GetLatestParsedDataFromDatabase() + if err != nil { + return nil, err + } + + // 解析装备数据 + var items []interface{} + if itemsJSON != "" { + if err := json.Unmarshal([]byte(itemsJSON), &items); err != nil { + return nil, fmt.Errorf("解析装备数据失败: %w", err) + } + } + + // 解析英雄数据 + var heroes []interface{} + if heroesJSON != "" { + if err := json.Unmarshal([]byte(heroesJSON), &heroes); err != nil { + return nil, fmt.Errorf("解析英雄数据失败: %w", err) + } + } + + return &model.ParsedResult{ + Items: items, + Heroes: heroes, + }, nil +} + +// SaveAppSetting 保存应用设置 +func (a *App) SaveAppSetting(key, value string) error { + if a.databaseService == nil { + return fmt.Errorf("数据库服务未初始化") + } + return a.databaseService.SaveAppSetting(key, value) +} + +// GetAppSetting 获取应用设置 +func (a *App) GetAppSetting(key string) (string, error) { + if a.databaseService == nil { + return "", fmt.Errorf("数据库服务未初始化") + } + return a.databaseService.GetAppSetting(key) +} + +// GetAllAppSettings 获取所有应用设置 +func (a *App) GetAllAppSettings() (map[string]string, error) { + if a.databaseService == nil { + return nil, fmt.Errorf("数据库服务未初始化") + } + return a.databaseService.GetAllAppSettings() +} diff --git a/internal/service/output_raw.json b/internal/service/output_raw.json deleted file mode 100644 index 21866d8..0000000 --- a/internal/service/output_raw.json +++ /dev/null @@ -1,95152 +0,0 @@ -{ - "data": [ - { - "code": "efm03", - "ct": 1687231721, - "e": 152894, - "g": 4, - "id": 4462915, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "p": 713583798, - "s": "ff96", - "sk": 5 - }, - { - "code": "ef316", - "ct": 1687231721, - "e": 10590, - "g": 3, - "id": 4462919, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 16 - ], - [ - "max_hp", - 14 - ] - ], - "p": 28393107, - "s": "aa8b", - "sk": 5 - }, - { - "code": "efk04", - "ct": 1687231721, - "e": 156352, - "g": 4, - "id": 4462920, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "6ae7", - "sk": 5 - }, - { - "code": "ef303", - "ct": 1687231749, - "e": 108949, - "g": 3, - "id": 4487754, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 14 - ], - [ - "max_hp", - 21 - ] - ], - "p": 326928979, - "s": "c2cf", - "sk": 5 - }, - { - "code": "ef304", - "ct": 1687235956, - "e": 11769, - "g": 3, - "id": 8038085, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 14 - ], - [ - "max_hp", - 21 - ] - ], - "s": "cc2c", - "sk": 4 - }, - { - "code": "efw15", - "ct": 1687265403, - "e": 14550, - "g": 4, - "id": 29215102, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "2cd3", - "sk": 5 - }, - { - "code": "efm20", - "ct": 1687266469, - "g": 5, - "id": 30030238, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "s": "2cca" - }, - { - "code": "efh04", - "ct": 1687311955, - "e": 161371, - "g": 4, - "id": 52862619, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "p": 90857803, - "s": "fffa", - "sk": 5 - }, - { - "code": "ef302", - "ct": 1687321001, - "e": 10125, - "g": 3, - "id": 58159013, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 16 - ], - [ - "max_hp", - 14 - ] - ], - "s": "4933", - "sk": 5 - }, - { - "code": "ef317", - "ct": 1687357169, - "e": 109476, - "g": 3, - "id": 79617377, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 16 - ], - [ - "max_hp", - 14 - ] - ], - "p": 49161666, - "s": "924e", - "sk": 5 - }, - { - "code": "ef317", - "ct": 1687395297, - "e": 108123, - "g": 3, - "id": 95763759, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 16 - ], - [ - "max_hp", - 14 - ] - ], - "s": "9408", - "sk": 5 - }, - { - "code": "efr03", - "ct": 1687481111, - "e": 44380, - "g": 4, - "id": 138094604, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "p": 140659207, - "s": "47f0", - "sk": 5 - }, - { - "code": "ef434", - "ct": 1687531495, - "g": 4, - "id": 165469249, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "5b5b", - "sk": 5 - }, - { - "code": "efm14", - "ct": 1687568420, - "g": 5, - "id": 179062892, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "34d0" - }, - { - "code": "efm04", - "ct": 1687610151, - "e": 154068, - "g": 4, - "id": 201087466, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "p": 99507012, - "s": "faac", - "sk": 5 - }, - { - "code": "efk03", - "ct": 1687613863, - "e": 165462, - "g": 4, - "id": 203042400, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "p": 412803674, - "s": "0", - "sk": 5 - }, - { - "code": "efk09", - "ct": 1687646880, - "e": 34686, - "g": 5, - "id": 214521843, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 110838566, - "s": "62fb" - }, - { - "code": "efk02", - "ct": 1687702277, - "e": 204655, - "g": 5, - "id": 239225398, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "p": 360878989, - "s": "219d", - "sk": 5 - }, - { - "code": "efh11", - "ct": 1687739825, - "g": 5, - "id": 251781195, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "a150" - }, - { - "code": "efa03", - "ct": 1687743517, - "e": 27005, - "g": 4, - "id": 253342697, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "p": 313179896, - "s": "5b1b", - "sk": 5 - }, - { - "code": "ef317", - "ct": 1687770420, - "e": 118092, - "g": 3, - "id": 265405741, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 16 - ], - [ - "max_hp", - 14 - ] - ], - "p": 6911147, - "s": "9b5a", - "sk": 5 - }, - { - "code": "efh05", - "ct": 1687821204, - "e": 153078, - "g": 4, - "id": 284790173, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "p": 636577158, - "s": "b92c", - "sk": 5 - }, - { - "code": "efr04", - "ct": 1687831642, - "g": 4, - "id": 288784747, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "fe75" - }, - { - "code": "ef401", - "ct": 1687873809, - "e": 2623, - "g": 4, - "id": 308004433, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "2e70", - "sk": 2 - }, - { - "code": "efm05", - "ct": 1687923488, - "e": 30941, - "g": 4, - "id": 324012612, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "eac1" - }, - { - "code": "efh03", - "ct": 1688397489, - "e": 152274, - "g": 4, - "id": 467600970, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "p": 354206748, - "s": "9b16", - "sk": 5 - }, - { - "code": "efk14", - "ct": 1688431238, - "e": 35678, - "g": 5, - "id": 473956465, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "fb25" - }, - { - "code": "efm23", - "ct": 1688703519, - "e": 39408, - "g": 5, - "id": 530284598, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "p": 6844892, - "s": "4e82", - "sk": 5 - }, - { - "code": "efa20", - "ct": 1688710402, - "e": 216472, - "g": 5, - "id": 532877438, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 158971995, - "s": "914b", - "sk": 5 - }, - { - "code": "efw20", - "ct": 1688735763, - "e": 35679, - "g": 5, - "id": 542128629, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "f8e" - }, - { - "code": "efa03", - "ct": 1688735777, - "e": 154179, - "g": 4, - "id": 542134241, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "4120", - "sk": 5 - }, - { - "code": "efk02", - "ct": 1688772497, - "e": 34884, - "g": 5, - "id": 551026028, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "p": 490684210, - "s": "5f2c" - }, - { - "code": "efh02", - "ct": 1688886117, - "g": 5, - "id": 575977182, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "s": "f4fe" - }, - { - "code": "efh11", - "ct": 1688886154, - "e": 39256, - "g": 5, - "id": 575989978, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 31856726, - "s": "a328" - }, - { - "code": "ef431", - "ct": 1689124042, - "e": 5571, - "g": 4, - "id": 627827153, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "0", - "sk": 4 - }, - { - "code": "efh07", - "ct": 1689345081, - "e": 46173, - "g": 5, - "id": 674145277, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "p": 226377978, - "s": "3f61" - }, - { - "code": "efh02", - "ct": 1689475014, - "g": 5, - "id": 696581680, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "s": "1cb9" - }, - { - "code": "efh19", - "ct": 1689845857, - "e": 34263, - "g": 5, - "id": 759108554, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 279573776, - "s": "f0aa" - }, - { - "code": "ef432", - "ct": 1689846605, - "e": 160557, - "g": 4, - "id": 759344627, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 36 - ] - ], - "p": 890790459, - "s": "9599", - "sk": 5 - }, - { - "code": "efr11", - "ct": 1689863852, - "e": 10304, - "g": 4, - "id": 763676876, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "p": 48982864, - "s": "2f80", - "sk": 5 - }, - { - "code": "ef504", - "ct": 1689947152, - "e": 203196, - "g": 5, - "id": 784612780, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 640588979, - "s": "0", - "sk": 5 - }, - { - "code": "efa13", - "ct": 1690156149, - "e": 40223, - "g": 5, - "id": 821808690, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 360551102, - "s": "e15" - }, - { - "code": "efw31", - "ct": 1690327818, - "e": 34272, - "g": 5, - "id": 845194760, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "p": 434015426, - "s": "1dd8" - }, - { - "code": "efm03", - "ct": 1690553985, - "e": 155220, - "g": 4, - "id": 873946891, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "p": 618609916, - "s": "0", - "sk": 5 - }, - { - "code": "ef303", - "ct": 1690647495, - "e": 109552, - "g": 3, - "id": 885428013, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 14 - ], - [ - "max_hp", - 21 - ] - ], - "p": 566472035, - "s": "1f49", - "sk": 5 - }, - { - "code": "efw32", - "ct": 1691039782, - "e": 202842, - "g": 5, - "id": 938741651, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "p": 784315107, - "s": "22fb", - "sk": 5 - }, - { - "code": "ef505", - "ct": 1691055668, - "e": 205969, - "g": 5, - "id": 943842728, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 583954927, - "s": "0", - "sk": 5 - }, - { - "code": "ef501", - "ct": 1691906837, - "e": 203994, - "g": 5, - "id": 1060911354, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 739641017, - "s": "0", - "sk": 5 - }, - { - "code": "efa02", - "ct": 1692879528, - "e": 104161, - "g": 5, - "id": 1184347069, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "5e9a", - "sk": 3 - }, - { - "code": "efw17", - "ct": 1692880080, - "e": 35445, - "g": 5, - "id": 1184459620, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "6892" - }, - { - "code": "efh14", - "ct": 1693457388, - "e": 35435, - "g": 5, - "id": 1250655682, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "0" - }, - { - "code": "efm22", - "ct": 1693457504, - "g": 5, - "id": 1250714085, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "99ad" - }, - { - "code": "efm22", - "ct": 1693462258, - "g": 5, - "id": 1252509488, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "cb78" - }, - { - "code": "ef501", - "ct": 1694599431, - "e": 203657, - "g": 5, - "id": 1353741355, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 620426700, - "s": "0", - "sk": 5 - }, - { - "code": "ef435", - "ct": 1694669555, - "e": 29381, - "g": 4, - "id": 1356574789, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "p": 11185757, - "s": "396a", - "sk": 5 - }, - { - "code": "efw16", - "ct": 1694828259, - "g": 5, - "id": 1372685234, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "69f4" - }, - { - "code": "efr04", - "ct": 1694908857, - "e": 39115, - "g": 4, - "id": 1387536256, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "p": 562155721, - "s": "e90", - "sk": 4 - }, - { - "code": "efk15", - "ct": 1695268850, - "e": 13407, - "g": 5, - "id": 1427760473, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "e009" - }, - { - "code": "efr05", - "ct": 1695340636, - "e": 4297, - "g": 4, - "id": 1433090983, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "258c", - "sk": 5 - }, - { - "code": "efw03", - "ct": 1695360380, - "e": 56897, - "g": 4, - "id": 1434649476, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "p": 525461035, - "s": "fdd2", - "sk": 5 - }, - { - "code": "efa19", - "ct": 1695471775, - "g": 5, - "id": 1443157729, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "3b35" - }, - { - "code": "efa15", - "ct": 1695471811, - "e": 7344, - "g": 5, - "id": 1443162325, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "731d" - }, - { - "code": "efw05", - "ct": 1695471811, - "e": 6876, - "g": 4, - "id": 1443162328, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "c5ea", - "sk": 4 - }, - { - "code": "efm15", - "ct": 1695598000, - "e": 4297, - "g": 4, - "id": 1455440632, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "58df", - "sk": 5 - }, - { - "code": "efk06", - "ct": 1695598000, - "e": 72407, - "g": 5, - "id": 1455440636, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 893757497, - "s": "54ba", - "sk": 2 - }, - { - "code": "efk05", - "ct": 1695632467, - "e": 42075, - "g": 4, - "id": 1458246497, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 10 - ], - [ - "max_hp", - 55 - ] - ], - "s": "ae16", - "sk": 5 - }, - { - "code": "efw12", - "ct": 1695857836, - "e": 5156, - "g": 4, - "id": 1474390585, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "e89a", - "sk": 5 - }, - { - "code": "efa05", - "ct": 1696027586, - "e": 16889, - "g": 4, - "id": 1503244793, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "p": 440334191, - "s": "410b", - "sk": 5 - }, - { - "code": "efw04", - "ct": 1696118630, - "e": 4749, - "g": 4, - "id": 1517382079, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "81c4", - "sk": 5 - }, - { - "code": "efm02", - "ct": 1696388797, - "e": 34035, - "g": 5, - "id": 1544370742, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 43 - ] - ], - "p": 21884461, - "s": "6363" - }, - { - "code": "ef432", - "ct": 1696473306, - "e": 152162, - "g": 4, - "id": 1553093275, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 36 - ] - ], - "p": 738614105, - "s": "fefd", - "sk": 5 - }, - { - "code": "efh08", - "ct": 1696667512, - "e": 108040, - "g": 4, - "id": 1567769978, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "625a", - "sk": 5 - }, - { - "code": "efk03", - "ct": 1696685236, - "e": 157424, - "g": 4, - "id": 1569748164, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "p": 559859822, - "s": "dd91", - "sk": 5 - }, - { - "code": "efk17", - "ct": 1696685236, - "g": 5, - "id": 1569748165, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "91f5" - }, - { - "code": "efr25", - "ct": 1697088296, - "e": 36726, - "g": 5, - "id": 1586756965, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 649028156, - "s": "b9f0" - }, - { - "code": "efr22", - "ct": 1697377991, - "e": 7735, - "g": 5, - "id": 1601714853, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "0", - "sk": 5 - }, - { - "code": "efa08", - "ct": 1697684468, - "g": 5, - "id": 1614899644, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "2af5" - }, - { - "code": "efm05", - "ct": 1698027236, - "e": 44173, - "g": 4, - "id": 1639113763, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "cb7c", - "sk": 5 - }, - { - "code": "efh14", - "ct": 1698590402, - "e": 35066, - "g": 5, - "id": 1673957157, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 218403497, - "s": "8935" - }, - { - "code": "efh04", - "ct": 1699503566, - "e": 155134, - "g": 4, - "id": 1713004500, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "p": 847822619, - "s": "5e1f", - "sk": 5 - }, - { - "code": "ef317", - "ct": 1699672092, - "e": 108374, - "g": 3, - "id": 1723310813, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 16 - ], - [ - "max_hp", - 14 - ] - ], - "s": "8712", - "sk": 5 - }, - { - "code": "efm19", - "ct": 1699673024, - "e": 35066, - "g": 5, - "id": 1723441894, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 48988520, - "s": "0" - }, - { - "code": "efr13", - "ct": 1699673045, - "e": 49122, - "g": 5, - "id": 1723444781, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 461989175, - "s": "0" - }, - { - "code": "efr18", - "ct": 1699673064, - "e": 203053, - "g": 5, - "id": 1723447431, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 518782830, - "s": "0", - "sk": 5 - }, - { - "code": "efr23", - "ct": 1700285575, - "g": 5, - "id": 1758939073, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "bb9" - }, - { - "code": "efr01", - "ct": 1700336119, - "e": 35498, - "g": 5, - "id": 1763286559, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 613630545, - "s": "51c6" - }, - { - "code": "efw06", - "ct": 1700527322, - "e": 50478, - "g": 5, - "id": 1773543212, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 559859824, - "s": "8279", - "sk": 1 - }, - { - "code": "efw23", - "ct": 1701937886, - "g": 5, - "id": 1835049950, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "7673" - }, - { - "code": "efw29", - "ct": 1702429371, - "g": 5, - "id": 1861750395, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "s": "a150" - }, - { - "code": "efh12", - "ct": 1702429595, - "e": 35678, - "g": 5, - "id": 1861764733, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 6885517, - "s": "333e" - }, - { - "code": "efk04", - "ct": 1702596340, - "e": 152612, - "g": 4, - "id": 1870369798, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "p": 241191727, - "s": "9205", - "sk": 5 - }, - { - "code": "efw30", - "ct": 1702955562, - "e": 6294, - "g": 5, - "id": 1900142025, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "s": "0" - }, - { - "code": "efw02", - "ct": 1703213230, - "g": 5, - "id": 1908937724, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 43 - ] - ], - "s": "68c7" - }, - { - "code": "efm01", - "ct": 1703297507, - "e": 204104, - "g": 5, - "id": 1912132735, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "p": 799495489, - "s": "6ae2", - "sk": 5 - }, - { - "code": "efh15", - "ct": 1703313396, - "e": 7344, - "g": 5, - "id": 1914018172, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 545449824, - "s": "0", - "sk": 5 - }, - { - "code": "ef507", - "ct": 1703464974, - "e": 35067, - "g": 5, - "id": 1929111133, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 713631381, - "s": "0" - }, - { - "code": "efa11", - "ct": 1703632630, - "e": 152771, - "g": 4, - "id": 1939748376, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "p": 96079748, - "s": "3ac9", - "sk": 5 - }, - { - "code": "efw02", - "ct": 1704243432, - "g": 5, - "id": 1964461670, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 43 - ] - ], - "s": "e4c6" - }, - { - "code": "efr06", - "ct": 1704256140, - "g": 5, - "id": 1964960565, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "2cab" - }, - { - "code": "ef406", - "ct": 1704256140, - "g": 4, - "id": 1964960567, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "d497" - }, - { - "code": "efr26", - "ct": 1704791312, - "e": 42768, - "g": 5, - "id": 1990533065, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 590699704, - "s": "9f84" - }, - { - "code": "efa02", - "ct": 1705280767, - "e": 35640, - "g": 5, - "id": 2018582370, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 494187001, - "s": "dbad" - }, - { - "code": "efm13", - "ct": 1705476076, - "g": 5, - "id": 2024775909, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "1956" - }, - { - "code": "efw33", - "ct": 1706328230, - "g": 5, - "id": 2054056488, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "db79" - }, - { - "code": "efm03", - "ct": 1706415586, - "e": 152072, - "g": 4, - "id": 2058808106, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "0", - "sk": 5 - }, - { - "code": "efa01", - "ct": 1706416503, - "e": 37778, - "g": 5, - "id": 2058865844, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "0" - }, - { - "code": "ef437", - "ct": 1707465148, - "g": 4, - "id": 2095702656, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "82d0", - "sk": 5 - }, - { - "code": "efr04", - "ct": 1707538643, - "e": 158806, - "g": 4, - "id": 2100347344, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "91b7", - "sk": 5 - }, - { - "code": "ef507", - "ct": 1707890165, - "g": 5, - "id": 2116983297, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "0" - }, - { - "code": "efw01", - "ct": 1707987798, - "e": 37778, - "g": 5, - "id": 2121417259, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 591089796, - "s": "0" - }, - { - "code": "efm03", - "ct": 1707987830, - "e": 153207, - "g": 4, - "id": 2121418967, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "p": 596366779, - "s": "0", - "sk": 5 - }, - { - "code": "efw19", - "ct": 1708571274, - "g": 5, - "id": 2137715390, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "52e3" - }, - { - "code": "efw20", - "ct": 1708571905, - "g": 5, - "id": 2137856469, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "e084" - }, - { - "code": "ef507", - "ct": 1708962679, - "e": 50369, - "g": 5, - "id": 2155138784, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 389494760, - "s": "0", - "sk": 1 - }, - { - "code": "ef438", - "ct": 1709556938, - "e": 6996, - "g": 4, - "id": 2167712272, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "0", - "sk": 4 - }, - { - "code": "efw35", - "ct": 1709779385, - "e": 81035, - "g": 5, - "id": 2172682781, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "s": "0", - "sk": 2 - }, - { - "code": "ef433", - "ct": 1710408031, - "e": 3498, - "g": 4, - "id": 2192689422, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "64a5", - "sk": 4 - }, - { - "code": "ef507", - "ct": 1711426170, - "g": 5, - "id": 2228137937, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "0" - }, - { - "code": "efk16", - "ct": 1711436398, - "g": 5, - "id": 2228371919, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "138d" - }, - { - "code": "ef317", - "ct": 1711436398, - "e": 119278, - "g": 3, - "id": 2228371920, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 16 - ], - [ - "max_hp", - 14 - ] - ], - "p": 306859366, - "s": "f04d", - "sk": 5 - }, - { - "code": "efh06", - "ct": 1711857943, - "e": 40925, - "g": 5, - "id": 2237100558, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "1b7" - }, - { - "code": "ef507", - "ct": 1713862062, - "e": 48272, - "g": 5, - "id": 2285991134, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 403476926, - "s": "0" - }, - { - "code": "ef427", - "ct": 1714047701, - "e": 27283, - "g": 4, - "id": 2290508984, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "p": 225876663, - "s": "58e1" - }, - { - "code": "efm30", - "ct": 1714621985, - "e": 5770, - "g": 5, - "id": 2311850900, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "p": 653128055, - "s": "2a22", - "sk": 5 - }, - { - "code": "efa04", - "ct": 1714622136, - "e": 3497, - "g": 4, - "id": 2311869598, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "dd44", - "sk": 4 - }, - { - "code": "efk21", - "ct": 1714654759, - "e": 34629, - "g": 5, - "id": 2313845939, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 892353109, - "s": "3391" - }, - { - "code": "efr11", - "ct": 1714956033, - "e": 152334, - "g": 4, - "id": 2324397548, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "5129", - "sk": 5 - }, - { - "code": "efk10", - "ct": 1715067514, - "e": 3498, - "g": 4, - "id": 2327721532, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 10 - ], - [ - "max_hp", - 55 - ] - ], - "s": "1efd", - "sk": 4 - }, - { - "code": "efw34", - "ct": 1715240335, - "e": 50718, - "g": 5, - "id": 2332863605, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 2716899, - "s": "0", - "sk": 1 - }, - { - "code": "ef317", - "ct": 1715245083, - "e": 6645, - "g": 3, - "id": 2333109541, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 16 - ], - [ - "max_hp", - 14 - ] - ], - "s": "ecad", - "sk": 5 - }, - { - "code": "efm08", - "ct": 1716863644, - "g": 4, - "id": 2376927620, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 14 - ], - [ - "max_hp", - 51 - ] - ], - "p": 627243561, - "s": "0" - }, - { - "code": "efr01", - "ct": 1716864020, - "e": 37778, - "g": 5, - "id": 2376938615, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 110853212, - "s": "dbf1" - }, - { - "code": "efk03", - "ct": 1717038053, - "e": 156619, - "g": 4, - "id": 2381263138, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "p": 781837305, - "s": "72ed", - "sk": 5 - }, - { - "code": "efh05", - "ct": 1717644012, - "e": 55791, - "g": 4, - "id": 2396878676, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "4f9", - "sk": 5 - }, - { - "code": "efk09", - "ct": 1717645087, - "e": 34278, - "g": 5, - "id": 2396962936, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 28398305, - "s": "7088" - }, - { - "code": "ef439", - "ct": 1718861710, - "g": 4, - "id": 2428599167, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "a340", - "sk": 5 - }, - { - "code": "efw36", - "ct": 1718865972, - "e": 35678, - "g": 5, - "id": 2429230249, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "9236" - }, - { - "code": "efw27", - "ct": 1718931007, - "g": 5, - "id": 2434161774, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "ed46" - }, - { - "code": "efh11", - "ct": 1719278208, - "g": 5, - "id": 2458397780, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "b29a" - }, - { - "code": "efr09", - "ct": 1719278208, - "g": 5, - "id": 2458397781, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "d66c" - }, - { - "code": "efw09", - "ct": 1719373359, - "g": 5, - "id": 2462444284, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "96b1" - }, - { - "code": "efw01", - "ct": 1722344529, - "e": 39877, - "g": 5, - "id": 2561750760, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 736028830, - "s": "c552" - }, - { - "code": "efr12", - "ct": 1722394893, - "e": 39877, - "g": 5, - "id": 2562923285, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "3844" - }, - { - "code": "efw01", - "ct": 1722561578, - "e": 36726, - "g": 5, - "id": 2566803904, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 717223364, - "s": "d877" - }, - { - "code": "efa14", - "ct": 1724815402, - "e": 214130, - "g": 5, - "id": 2636523808, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 704271358, - "s": "0", - "sk": 5 - }, - { - "code": "efw16", - "ct": 1725505437, - "g": 5, - "id": 2652643665, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "1790" - }, - { - "code": "efm04", - "ct": 1725506653, - "g": 4, - "id": 2652868488, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "ac91" - }, - { - "code": "ef440", - "ct": 1726127866, - "e": 26234, - "g": 4, - "id": 2675698603, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "6d7c", - "sk": 5 - }, - { - "code": "efh21", - "ct": 1726227596, - "e": 37777, - "g": 5, - "id": 2683115359, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "0" - }, - { - "code": "efa22", - "ct": 1726233949, - "e": 39875, - "g": 5, - "id": 2683582241, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "c944" - }, - { - "code": "efa17", - "ct": 1726361842, - "e": 35678, - "g": 5, - "id": 2691498572, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 793619248, - "s": "a8ab" - }, - { - "code": "efa07", - "ct": 1726710940, - "e": 10492, - "g": 5, - "id": 2718105650, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "162b" - }, - { - "code": "efh16", - "ct": 1726712565, - "g": 5, - "id": 2718223724, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "d2dc" - }, - { - "code": "efk07", - "ct": 1726789936, - "g": 5, - "id": 2722243813, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "7246" - }, - { - "code": "efw19", - "ct": 1727054143, - "g": 5, - "id": 2742185557, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "a45b" - }, - { - "code": "efm06", - "ct": 1727135941, - "e": 35679, - "g": 5, - "id": 2747793176, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 43 - ] - ], - "p": 115835449, - "s": "b196" - }, - { - "code": "efr28", - "ct": 1727924557, - "g": 5, - "id": 2793010074, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "6505" - }, - { - "code": "efw13", - "ct": 1728037257, - "g": 5, - "id": 2800371082, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "a6cc" - }, - { - "code": "efw27", - "ct": 1728214638, - "e": 34279, - "g": 5, - "id": 2808847663, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "1765" - }, - { - "code": "efh02", - "ct": 1729324708, - "e": 37777, - "g": 5, - "id": 2861496845, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "s": "8c71" - }, - { - "code": "efr27", - "ct": 1730377337, - "e": 203115, - "g": 5, - "id": 2908978581, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 798777729, - "s": "0", - "sk": 5 - }, - { - "code": "efr09", - "ct": 1731118423, - "g": 5, - "id": 2937459521, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "936c" - }, - { - "code": "efr19", - "ct": 1731118423, - "g": 5, - "id": 2937459522, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "s": "31bb" - }, - { - "code": "efh16", - "ct": 1731890903, - "g": 5, - "id": 2964558515, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "9dc6" - }, - { - "code": "efm02", - "ct": 1733707681, - "e": 35678, - "g": 5, - "id": 3016042895, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 43 - ] - ], - "p": 323638178, - "s": "61e6" - }, - { - "code": "efh23", - "ct": 1735194599, - "e": 37776, - "g": 5, - "id": 3053136643, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 830235768, - "s": "0" - }, - { - "code": "efa15", - "ct": 1735357207, - "g": 5, - "id": 3057109776, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "ebdc" - }, - { - "code": "efw21", - "ct": 1736298164, - "g": 5, - "id": 3078858334, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "7649" - }, - { - "code": "efh03", - "ct": 1736468873, - "e": 153646, - "g": 4, - "id": 3085142965, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "p": 829105288, - "s": "456a", - "sk": 5 - }, - { - "code": "efm18", - "ct": 1736730208, - "g": 5, - "id": 3095287926, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "b69c" - }, - { - "code": "efm03", - "ct": 1736749343, - "e": 18712, - "g": 4, - "id": 3096071305, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "e7a", - "sk": 1 - }, - { - "code": "efa12", - "ct": 1736818143, - "g": 5, - "id": 3098283081, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "4337" - }, - { - "code": "efw12", - "ct": 1737610189, - "g": 4, - "id": 3117735712, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "8344" - }, - { - "code": "efw24", - "ct": 1737610189, - "g": 5, - "id": 3117735715, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "s": "4e68" - }, - { - "code": "ef502", - "ct": 1737612606, - "e": 35678, - "g": 5, - "id": 3117869104, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "0" - }, - { - "code": "efr24", - "ct": 1737772818, - "e": 36729, - "g": 5, - "id": 3123087246, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 669363338, - "s": "ea23" - }, - { - "code": "efa01", - "ct": 1737772818, - "g": 5, - "id": 3123087249, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "c287" - }, - { - "code": "efh09", - "ct": 1737863357, - "g": 5, - "id": 3125285992, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "841c" - }, - { - "code": "efr03", - "ct": 1737863357, - "g": 4, - "id": 3125285996, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "5611" - }, - { - "code": "efh20", - "ct": 1737892949, - "e": 35679, - "g": 5, - "id": 3126020549, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "2332" - }, - { - "code": "efa25", - "ct": 1738044569, - "g": 5, - "id": 3129664628, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "f7c6" - }, - { - "code": "efh04", - "ct": 1738983997, - "e": 26670, - "g": 4, - "id": 3155489521, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "p": 326831592, - "s": "15aa", - "sk": 5 - }, - { - "code": "efr05", - "ct": 1740471311, - "g": 4, - "id": 3192423124, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "f0b0" - }, - { - "code": "ef441", - "ct": 1740662691, - "g": 4, - "id": 3196581146, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "791f" - }, - { - "code": "efk14", - "ct": 1741142944, - "g": 5, - "id": 3210599274, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "651d" - }, - { - "code": "efw16", - "ct": 1741142944, - "g": 5, - "id": 3210599278, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "c440" - }, - { - "code": "efm03", - "ct": 1741228309, - "g": 4, - "id": 3212912912, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "d2c0" - }, - { - "code": "efw05", - "ct": 1741846711, - "g": 4, - "id": 3225243600, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "ee0b" - }, - { - "code": "efa23", - "ct": 1741846711, - "e": 35678, - "g": 5, - "id": 3225243601, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "p": 899011010, - "s": "69e8" - }, - { - "code": "ef441", - "ct": 1742041578, - "g": 4, - "id": 3230800928, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "0" - }, - { - "code": "ef441", - "ct": 1742862046, - "g": 4, - "id": 3244366444, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "a44b" - }, - { - "code": "ef441", - "ct": 1742906459, - "g": 4, - "id": 3245041392, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "0" - }, - { - "code": "ef303", - "ct": 1742953918, - "e": 50721, - "g": 3, - "id": 3245713193, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 14 - ], - [ - "max_hp", - 21 - ] - ], - "p": 207190343, - "s": "daba", - "sk": 5 - }, - { - "code": "ef441", - "ct": 1742991888, - "g": 4, - "id": 3246327762, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "0" - }, - { - "code": "efw03", - "ct": 1743136235, - "g": 4, - "id": 3249187620, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "60b6" - }, - { - "code": "ef502", - "ct": 1743384637, - "e": 35679, - "g": 5, - "id": 3256484807, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 769932771, - "s": "0" - }, - { - "code": "efr04", - "ct": 1744189249, - "g": 4, - "id": 3275118772, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "9c21" - }, - { - "code": "efw05", - "ct": 1744189249, - "g": 4, - "id": 3275118773, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "6e76" - }, - { - "code": "efw03", - "ct": 1744189249, - "g": 4, - "id": 3275118774, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "a627" - }, - { - "code": "efa25", - "ct": 1744189249, - "g": 5, - "id": 3275118775, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "ab78" - }, - { - "code": "efk09", - "ct": 1744189249, - "e": 7344, - "g": 5, - "id": 3275118777, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "6d27" - }, - { - "code": "efw17", - "ct": 1744189249, - "g": 5, - "id": 3275118778, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "372f" - }, - { - "code": "efm04", - "ct": 1744335246, - "g": 4, - "id": 3277217927, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "f60" - }, - { - "code": "efm15", - "ct": 1744341733, - "g": 4, - "id": 3277418725, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "f398" - }, - { - "code": "efk13", - "ct": 1744363141, - "e": 35678, - "g": 5, - "id": 3278211471, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 445022861, - "s": "a53" - }, - { - "code": "efk07", - "ct": 1744434586, - "g": 5, - "id": 3280164077, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "aa53" - }, - { - "code": "ef438", - "ct": 1744448579, - "g": 4, - "id": 3280688708, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "0" - }, - { - "code": "ef438", - "ct": 1744448581, - "g": 4, - "id": 3280688771, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "0" - }, - { - "code": "ef506", - "ct": 1744632168, - "g": 5, - "id": 3285451244, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "0" - }, - { - "code": "efk01", - "ct": 1745413993, - "g": 5, - "id": 3303302637, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "0" - }, - { - "code": "efm14", - "ct": 1745473492, - "g": 5, - "id": 3304378641, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "e694" - }, - { - "code": "efk04", - "ct": 1745550791, - "g": 4, - "id": 3307075085, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "ac7c" - }, - { - "code": "efh08", - "ct": 1745572061, - "g": 4, - "id": 3307804895, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "7566" - }, - { - "code": "efk03", - "ct": 1745645037, - "e": 28333, - "g": 4, - "id": 3309955692, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "p": 166490, - "s": "3e6b" - }, - { - "code": "efw05", - "ct": 1745645037, - "g": 4, - "id": 3309955693, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "340e" - }, - { - "code": "efh08", - "ct": 1745716353, - "g": 4, - "id": 3311770110, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "cac4" - }, - { - "code": "efk04", - "ct": 1745716353, - "g": 4, - "id": 3311770111, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "2eb3" - }, - { - "code": "efk16", - "ct": 1745716353, - "g": 5, - "id": 3311770113, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "6c4e" - }, - { - "code": "ef409", - "ct": 1745802411, - "g": 4, - "id": 3315410834, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "56ec" - }, - { - "code": "ef409", - "ct": 1745809525, - "g": 4, - "id": 3316856438, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "846e" - }, - { - "code": "ef409", - "ct": 1745809525, - "g": 4, - "id": 3316856467, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "6a88" - }, - { - "code": "ef409", - "ct": 1745809525, - "g": 4, - "id": 3316856500, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "5dcb" - }, - { - "code": "efk12", - "ct": 1745851970, - "e": 37778, - "g": 5, - "id": 3328070348, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "7246" - }, - { - "code": "efr03", - "ct": 1745887565, - "g": 4, - "id": 3334167854, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "c243" - }, - { - "code": "efr03", - "ct": 1745904961, - "g": 4, - "id": 3338631065, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "489" - }, - { - "code": "efm06", - "ct": 1745967663, - "g": 5, - "id": 3353450780, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 43 - ] - ], - "s": "72f7" - }, - { - "code": "efr16", - "ct": 1746063496, - "e": 37777, - "g": 5, - "id": 3375118379, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "9f3a" - }, - { - "code": "ef317", - "ct": 1746110637, - "e": 3498, - "g": 3, - "id": 3387404092, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 16 - ], - [ - "max_hp", - 14 - ] - ], - "s": "ebc5", - "sk": 5 - }, - { - "code": "ef317", - "ct": 1746111807, - "e": 3498, - "g": 3, - "id": 3387725549, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 16 - ], - [ - "max_hp", - 14 - ] - ], - "s": "4d03", - "sk": 5 - }, - { - "code": "efh05", - "ct": 1746678639, - "g": 4, - "id": 3457553983, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "cade" - }, - { - "code": "efk22", - "ct": 1746679584, - "e": 41975, - "g": 5, - "id": 3457702816, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "s": "0" - }, - { - "code": "efh01", - "ct": 1746949687, - "g": 5, - "id": 3470437633, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "c309" - }, - { - "code": "efa27", - "ct": 1747284882, - "e": 35678, - "g": 5, - "id": 3484645766, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 897188455, - "s": "de76" - }, - { - "code": "efw04", - "ct": 1747284902, - "e": 3934, - "g": 4, - "id": 3484647470, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "4ce1", - "sk": 3 - }, - { - "code": "efm15", - "ct": 1747558580, - "g": 4, - "id": 3494941078, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "b796" - }, - { - "code": "efw37", - "ct": 1747924863, - "e": 31480, - "g": 5, - "id": 3504437731, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "def", - 11 - ] - ], - "p": 898971885, - "s": "eff0" - }, - { - "code": "efr05", - "ct": 1747961646, - "g": 4, - "id": 3505030374, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "7bf6" - }, - { - "code": "efr10", - "ct": 1747982551, - "g": 5, - "id": 3505554326, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "251d" - }, - { - "code": "efh03", - "ct": 1748046992, - "g": 4, - "id": 3506992811, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "c5b5" - }, - { - "code": "efk03", - "ct": 1748046992, - "g": 4, - "id": 3506992813, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "8002" - }, - { - "code": "efk10", - "ct": 1748137882, - "g": 4, - "id": 3509312931, - "mg": 1111, - "op": [ - [ - "att", - 10 - ], - [ - "max_hp", - 55 - ] - ], - "s": "75dc" - }, - { - "code": "efr11", - "ct": 1748311835, - "g": 4, - "id": 3513481630, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "a46" - }, - { - "code": "ef509", - "ct": 1748440017, - "g": 5, - "id": 3515817210, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "c11f" - }, - { - "code": "ef509", - "ct": 1748620329, - "g": 5, - "id": 3518459452, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "b46d" - }, - { - "code": "ef509", - "ct": 1748673290, - "g": 5, - "id": 3519472795, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "3d18" - }, - { - "code": "efr25", - "ct": 1748757623, - "g": 5, - "id": 3521411131, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "bd75" - }, - { - "code": "efk05", - "ct": 1749028178, - "g": 4, - "id": 3525793174, - "mg": 1111, - "op": [ - [ - "att", - 10 - ], - [ - "max_hp", - 55 - ] - ], - "s": "66b7" - }, - { - "code": "efk03", - "ct": 1749028178, - "g": 4, - "id": 3525793175, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "d67d" - }, - { - "code": "efm05", - "ct": 1749028178, - "g": 4, - "id": 3525793176, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "3e55" - }, - { - "code": "efh04", - "ct": 1749028178, - "g": 4, - "id": 3525793178, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "8695" - }, - { - "code": "efh01", - "ct": 1749028178, - "g": 5, - "id": 3525793179, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "3e5" - }, - { - "code": "efh08", - "ct": 1749028178, - "g": 4, - "id": 3525793180, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "c457" - }, - { - "code": "efa15", - "ct": 1749028178, - "g": 5, - "id": 3525793181, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "23ec" - }, - { - "code": "ef509", - "ct": 1749109489, - "g": 5, - "id": 3526739399, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "3f57" - }, - { - "code": "ef509", - "ct": 1749133113, - "g": 5, - "id": 3527125038, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "ee20" - }, - { - "code": "efw03", - "ct": 1749168389, - "g": 4, - "id": 3527482034, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "bf55" - }, - { - "code": "ef509", - "ct": 1749191371, - "g": 5, - "id": 3527738716, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "d88d" - }, - { - "code": "efr11", - "ct": 1749256342, - "g": 4, - "id": 3528426242, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "dc82" - }, - { - "code": "efm04", - "ct": 1749620335, - "g": 4, - "id": 3533637350, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "bdc" - }, - { - "code": "efh08", - "ct": 1749693351, - "g": 4, - "id": 3534350055, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "d3c1" - }, - { - "code": "efa25", - "ct": 1749775144, - "g": 5, - "id": 3535850749, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "26c5" - }, - { - "code": "ef502", - "ct": 1749807742, - "g": 5, - "id": 3536356840, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "0" - }, - { - "code": "ef502", - "ct": 1749807745, - "g": 5, - "id": 3536356883, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "0" - }, - { - "code": "efm15", - "ct": 1749908653, - "g": 4, - "id": 3537911212, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "65ad" - }, - { - "code": "efm03", - "ct": 1750210984, - "g": 4, - "id": 3541774737, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "4795" - }, - { - "code": "efk05", - "ct": 1750316482, - "g": 4, - "id": 3543554870, - "mg": 1111, - "op": [ - [ - "att", - 10 - ], - [ - "max_hp", - 55 - ] - ], - "s": "4a6f" - }, - { - "code": "efw05", - "ct": 1750316482, - "g": 4, - "id": 3543554872, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "50ed" - }, - { - "code": "efm05", - "ct": 1750483271, - "g": 4, - "id": 3549077159, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "6bcd" - }, - { - "code": "efa08", - "ct": 1750558927, - "g": 5, - "id": 3551234946, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "fbb0" - }, - { - "code": "ef443", - "ct": 1750560531, - "g": 4, - "id": 3551290475, - "l": true, - "level": 0, - "mg": 1111, - "name": "Unknown", - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "3bc3", - "sk": 5 - }, - { - "code": "efr28", - "ct": 1750560564, - "g": 5, - "id": 3551291534, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "c2d8" - }, - { - "code": "efw03", - "ct": 1750824575, - "g": 4, - "id": 3557904040, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "8f4" - }, - { - "code": "efw12", - "ct": 1751033215, - "g": 4, - "id": 3562133819, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "e51e" - }, - { - "code": "efa13", - "ct": 1751173096, - "g": 5, - "id": 3564687450, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "4ae7" - }, - { - "code": "efk10", - "ct": 1751246575, - "g": 4, - "id": 3566157381, - "mg": 1111, - "op": [ - [ - "att", - 10 - ], - [ - "max_hp", - 55 - ] - ], - "s": "5501" - }, - { - "code": "efk17", - "ct": 1751261441, - "g": 5, - "id": 3566409716, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "5f19" - }, - { - "code": "emd5a", - "ct": 1687315843, - "e": 70322, - "f": "set_speed", - "g": 5, - "id": 55095347, - "l": true, - "level": 70, - "mainStatBaseValue": 52, - "mainStatId": "md5_armo_m", - "mainStatType": "def", - "mainStatValue": 260, - "mg": 1111, - "op": [ - [ - "def", - 52 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 3 - ] - ], - "p": 663498964, - "s": "bd8d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "emd5n", - "ct": 1687315843, - "e": 76932, - "f": "set_cri", - "g": 5, - "id": 55095368, - "l": true, - "level": 70, - "mainStatBaseValue": 0.11, - "mainStatId": "md5_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.55, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.11 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.02 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ] - ], - "p": 549294853, - "s": "a71a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eah8r", - "ct": 1687319825, - "e": 94162, - "f": "set_speed", - "g": 5, - "id": 57468023, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah8_ring_m1", - "mainStatType": "acc", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "acc", - 0.13 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "p": 899011010, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eug14a", - "ct": 1687352113, - "e": 75074, - "f": "set_att", - "g": 5, - "id": 76436415, - "l": true, - "level": 70, - "mainStatBaseValue": 52, - "mainStatId": "ug14_armo_m", - "mainStatType": "def", - "mainStatValue": 260, - "mg": 1111, - "op": [ - [ - "def", - 52 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "p": 502450559, - "s": "43ae", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eug15n", - "ct": 1687352113, - "e": 70435, - "f": "set_cri", - "g": 5, - "id": 76436440, - "l": true, - "level": 70, - "mainStatBaseValue": 0.11, - "mainStatId": "ug15_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.55, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.11 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.02 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ] - ], - "s": "ecaf", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eah9w", - "ct": 1687362218, - "e": 95035, - "f": "set_acc", - "g": 5, - "id": 82994008, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah9_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 3 - ] - ], - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ere6b", - "ct": 1687394468, - "e": 82150, - "f": "set_att", - "g": 5, - "id": 95342608, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "re6_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 3 - ] - ], - "p": 49161666, - "s": "808b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ere6r", - "ct": 1687394469, - "e": 82508, - "f": "set_att", - "g": 5, - "id": 95342627, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "re6_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ] - ], - "p": 49161666, - "s": "d768", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eap2w", - "ct": 1687410119, - "e": 83106, - "f": "set_att", - "g": 5, - "id": 104574710, - "l": true, - "level": 75, - "mainStatBaseValue": 93, - "mainStatId": "ap2_weap_m1", - "mainStatType": "att", - "mainStatValue": 465, - "mg": 1111, - "op": [ - [ - "att", - 93 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "p": 140659207, - "s": "a008", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eap2h", - "ct": 1687410120, - "e": 89826, - "f": "set_att", - "g": 5, - "id": 104574881, - "l": true, - "level": 75, - "mainStatBaseValue": 499, - "mainStatId": "ap2_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2495, - "mg": 1111, - "op": [ - [ - "max_hp", - 499 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.05 - ] - ], - "s": "9316", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eap2a", - "ct": 1687410120, - "e": 82382, - "f": "set_att", - "g": 5, - "id": 104574892, - "l": true, - "level": 75, - "mainStatBaseValue": 55, - "mainStatId": "ap2_armo_m1", - "mainStatType": "def", - "mainStatValue": 275, - "mg": 1111, - "op": [ - [ - "def", - 55 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "p": 49161666, - "s": "b75f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eap2b", - "ct": 1687410120, - "e": 83325, - "f": "set_att", - "g": 5, - "id": 104574909, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "ap2_boot_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "408d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eap2r", - "ct": 1687410120, - "e": 82680, - "f": "set_att", - "g": 5, - "id": 104574925, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "ap2_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "5200", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eap2n", - "ct": 1687410120, - "e": 84101, - "f": "set_att", - "g": 5, - "id": 104574936, - "l": true, - "level": 75, - "mainStatBaseValue": 0.13, - "mainStatId": "ap2_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "p": 140659207, - "s": "163", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eah9n", - "ct": 1687410312, - "e": 94045, - "f": "set_acc", - "g": 5, - "id": 104689525, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ah9_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.07 - ] - ], - "p": 225876663, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eap3w", - "ct": 1687411057, - "e": 82977, - "f": "set_max_hp", - "g": 5, - "id": 105136064, - "l": true, - "level": 75, - "mainStatBaseValue": 93, - "mainStatId": "ap3_weap_m1", - "mainStatType": "att", - "mainStatValue": 465, - "mg": 1111, - "op": [ - [ - "att", - 93 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ] - ], - "s": "c93a", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eap3h", - "ct": 1687411057, - "e": 82173, - "f": "set_max_hp", - "g": 5, - "id": 105136081, - "l": true, - "level": 75, - "mainStatBaseValue": 499, - "mainStatId": "ap3_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2495, - "mg": 1111, - "op": [ - [ - "max_hp", - 499 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.06 - ] - ], - "p": 40490456, - "s": "e928", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eap3a", - "ct": 1687411057, - "e": 104962, - "f": "set_max_hp", - "g": 5, - "id": 105136105, - "l": true, - "level": 75, - "mainStatBaseValue": 55, - "mainStatId": "ap3_armo_m1", - "mainStatType": "def", - "mainStatValue": 275, - "mg": 1111, - "op": [ - [ - "def", - 55 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ] - ], - "s": "a26a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eap3b", - "ct": 1687411057, - "e": 82097, - "f": "set_max_hp", - "g": 5, - "id": 105136123, - "l": true, - "level": 75, - "mainStatBaseValue": 7, - "mainStatId": "ap3_boot_m1", - "mainStatType": "speed", - "mainStatValue": 35, - "mg": 1111, - "op": [ - [ - "speed", - 7 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ] - ], - "p": 40490456, - "s": "53b9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eap3r", - "ct": 1687411057, - "e": 82567, - "f": "set_max_hp", - "g": 5, - "id": 105136133, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "ap3_ring_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0.05 - ] - ], - "p": 604874070, - "s": "b42b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eap3n", - "ct": 1687411057, - "e": 99342, - "f": "set_max_hp", - "g": 5, - "id": 105136147, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "ap3_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.08 - ] - ], - "p": 40490456, - "s": "375c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw5b", - "ct": 1687433003, - "e": 70732, - "f": "set_acc", - "g": 5, - "id": 117654795, - "l": true, - "level": 70, - "mainStatBaseValue": 7, - "mainStatId": "cra5_boot_m", - "mainStatType": "speed", - "mainStatValue": 35, - "mg": 1111, - "op": [ - [ - "speed", - 7 - ], - [ - "att_rate", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.03 - ], - [ - "res", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "att_rate", - 0.06 - ] - ], - "p": 207190343, - "s": "f9c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eah10w", - "ct": 1687434847, - "e": 93930, - "f": "set_cri_dmg", - "g": 5, - "id": 118606243, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah10_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.05 - ] - ], - "p": 525461035, - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "exc107201", - "ct": 1687449601, - "g": 5, - "id": 127313641, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.14 - ], - [ - "ek_c107201", - 1 - ] - ], - "s": "be00" - }, - { - "code": "exc107201", - "ct": 1687449606, - "g": 5, - "id": 127316794, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "ek_c107201", - 2 - ] - ], - "p": 49161666, - "s": "5544" - }, - { - "code": "exc108701", - "ct": 1687449681, - "g": 5, - "id": 127360696, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "ek_c108701", - 1 - ] - ], - "s": "f6f" - }, - { - "code": "eum12b", - "ct": 1687483762, - "e": 82403, - "f": "set_cri", - "g": 5, - "id": 139345121, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "um12_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ] - ], - "s": "e921", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eah9b", - "ct": 1687484711, - "e": 94375, - "f": "set_acc", - "g": 5, - "id": 139824488, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah9_boot_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "p": 6911147, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "exc106201", - "ct": 1687529453, - "g": 5, - "id": 164285000, - "l": true, - "mg": 1111, - "op": [ - [ - "speed", - 10 - ], - [ - "ek_c106201", - 1 - ] - ], - "s": "2a37" - }, - { - "code": "ess9r", - "ct": 1687532467, - "e": 87723, - "f": "set_speed", - "g": 5, - "id": 166039501, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "ss9_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ] - ], - "p": 518421029, - "s": "bed0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eah10h", - "ct": 1687536332, - "e": 93957, - "f": "set_cri_dmg", - "g": 5, - "id": 168243437, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah10_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ere7w", - "ct": 1687568502, - "e": 83351, - "f": "set_max_hp", - "g": 5, - "id": 179100958, - "l": true, - "level": 75, - "mainStatBaseValue": 93, - "mainStatId": "re7_weap_m", - "mainStatType": "att", - "mainStatValue": 465, - "mg": 1111, - "op": [ - [ - "att", - 93 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ] - ], - "s": "18c", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ere7a", - "ct": 1687568502, - "e": 83277, - "f": "set_max_hp", - "g": 5, - "id": 179100989, - "l": true, - "level": 75, - "mainStatBaseValue": 55, - "mainStatId": "re7_armo_m", - "mainStatType": "def", - "mainStatValue": 275, - "mg": 1111, - "op": [ - [ - "def", - 55 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.04 - ] - ], - "p": 166490, - "s": "3c2a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ere7h", - "ct": 1687568502, - "e": 82482, - "f": "set_max_hp", - "g": 5, - "id": 179101000, - "level": 75, - "mainStatBaseValue": 499, - "mainStatId": "re7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2495, - "mg": 1111, - "op": [ - [ - "max_hp", - 499 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 2 - ] - ], - "s": "3752", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ere7b", - "ct": 1687568502, - "e": 88459, - "f": "set_max_hp", - "g": 5, - "id": 179101025, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "re7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ] - ], - "p": 830235768, - "s": "e6e0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ere7n", - "ct": 1687568502, - "e": 83274, - "f": "set_max_hp", - "g": 5, - "id": 179101041, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "re7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.07 - ] - ], - "p": 894623419, - "s": "1704", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ere7r", - "ct": 1687568502, - "e": 82071, - "f": "set_max_hp", - "g": 5, - "id": 179101055, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "re7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.04 - ] - ], - "s": "19cc", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eah10n", - "ct": 1687588986, - "e": 94377, - "f": "set_cri_dmg", - "g": 5, - "id": 190263278, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ah10_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "exc108701", - "ct": 1687607681, - "g": 5, - "id": 199838193, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.09 - ], - [ - "ek_c108701", - 2 - ] - ], - "p": 48982864, - "s": "6501" - }, - { - "code": "exc108701", - "ct": 1687607690, - "g": 5, - "id": 199842438, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.07 - ], - [ - "ek_c108701", - 3 - ] - ], - "s": "641c" - }, - { - "code": "eah10r", - "ct": 1687749981, - "e": 100322, - "f": "set_cri_dmg", - "g": 5, - "id": 256289663, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah10_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_1" - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eah13b", - "ct": 1687750046, - "e": 94384, - "f": "set_cri", - "g": 5, - "id": 256319465, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah13_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "att_rate", - 0.06 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6a_u", - "ct": 1687763657, - "e": 86755, - "f": "set_acc", - "g": 4, - "id": 262500744, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 162 - ], - [ - "max_hp", - 191 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "p": 649028156, - "s": "92b8", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a_u", - "ct": 1687763657, - "e": 99666, - "f": "set_speed", - "g": 5, - "id": 262500787, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 184 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 898971885, - "s": "a204", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a", - "ct": 1687763657, - "e": 82962, - "f": "set_speed", - "g": 5, - "id": 262500915, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp", - 189 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp", - 193 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.06 - ] - ], - "p": 48982864, - "s": "2060", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a_u", - "ct": 1687763735, - "e": 94169, - "f": "set_speed", - "g": 5, - "id": 262534238, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.04 - ], - [ - "max_hp_rate", - 0 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.09, - "c", - "change2_max_hp_rate_2_1" - ] - ], - "p": 31856726, - "s": "930a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eap3w", - "ct": 1687780503, - "e": 85589, - "f": "set_max_hp", - "g": 5, - "id": 269696885, - "l": true, - "level": 75, - "mainStatBaseValue": 93, - "mainStatId": "ap3_weap_m1", - "mainStatType": "att", - "mainStatValue": 465, - "mg": 1111, - "op": [ - [ - "att", - 93 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ] - ], - "p": 830235768, - "s": "9431", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eap3h", - "ct": 1687780503, - "e": 82348, - "f": "set_max_hp", - "g": 5, - "id": 269696916, - "l": true, - "level": 75, - "mainStatBaseValue": 499, - "mainStatId": "ap3_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2495, - "mg": 1111, - "op": [ - [ - "max_hp", - 499 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.08 - ] - ], - "p": 893757497, - "s": "3f84", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eap3a", - "ct": 1687780503, - "e": 84411, - "f": "set_max_hp", - "g": 5, - "id": 269696941, - "l": true, - "level": 75, - "mainStatBaseValue": 55, - "mainStatId": "ap3_armo_m1", - "mainStatType": "def", - "mainStatValue": 275, - "mg": 1111, - "op": [ - [ - "def", - 55 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 2 - ] - ], - "p": 830235768, - "s": "8fb0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eap3b", - "ct": 1687780503, - "e": 82305, - "f": "set_max_hp", - "g": 5, - "id": 269696969, - "l": true, - "level": 75, - "mainStatBaseValue": 7, - "mainStatId": "ap3_boot_m1", - "mainStatType": "speed", - "mainStatValue": 35, - "mg": 1111, - "op": [ - [ - "speed", - 7 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ] - ], - "p": 166490, - "s": "b520", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eap3r", - "ct": 1687780503, - "e": 82165, - "f": "set_max_hp", - "g": 5, - "id": 269696988, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "ap3_ring_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ] - ], - "p": 898971885, - "s": "ea23", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eap3n", - "ct": 1687780503, - "e": 84576, - "f": "set_max_hp", - "g": 5, - "id": 269697020, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "ap3_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.08 - ] - ], - "p": 412803674, - "s": "d982", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6a_u", - "ct": 1687832378, - "e": 94528, - "f": "set_acc", - "g": 5, - "id": 289119203, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 518782830, - "s": "e856", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6h", - "ct": 1687843166, - "e": 75864, - "f": "set_acc", - "g": 4, - "id": 294239285, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ] - ], - "s": "4ec", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6h_u", - "ct": 1687843166, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 294239392, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3, - "c" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "p": 518782830, - "s": "790b", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6h", - "ct": 1687843167, - "e": 82203, - "f": "set_acc", - "g": 5, - "id": 294239493, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "p": 319905485, - "s": "e28a", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6h_u", - "ct": 1687843261, - "e": 94048, - "f": "set_speed", - "g": 5, - "id": 294284791, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_2" - ] - ], - "s": "ebc6", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6h_u", - "ct": 1687843331, - "e": 93938, - "f": "set_cri", - "g": 5, - "id": 294318046, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.11, - "c" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 6844892, - "s": "62f7", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6h_u", - "ct": 1687843332, - "e": 85126, - "f": "set_speed", - "g": 4, - "id": 294318077, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "def_rate", - 0.06, - "c", - "change2_def_rate_1_1" - ] - ], - "p": 445022861, - "s": "262d", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6a", - "ct": 1687843428, - "e": 76806, - "f": "set_speed", - "g": 4, - "id": 294364408, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.06 - ] - ], - "p": 742543115, - "s": "b945", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a_u", - "ct": 1687843510, - "e": 94030, - "f": "set_speed", - "g": 5, - "id": 294402286, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "s": "87ef", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a_u", - "ct": 1687843510, - "e": 94145, - "f": "set_cri", - "g": 5, - "id": 294402395, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 518421029, - "s": "96e0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a_u", - "ct": 1687843510, - "e": 94339, - "f": "set_speed", - "g": 5, - "id": 294402419, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ] - ], - "p": 618609916, - "s": "ac3d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6w", - "ct": 1687843610, - "e": 87349, - "f": "set_speed", - "g": 5, - "id": 294448326, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "att_rate", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.06 - ] - ], - "s": "e41b", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6w_u", - "ct": 1687843611, - "e": 93835, - "f": "set_cri", - "g": 5, - "id": 294448584, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.03, - "c", - "change2_cri_2_1" - ] - ], - "s": "7a7d", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6w_u", - "ct": 1687843724, - "e": 85238, - "f": "set_speed", - "g": 4, - "id": 294501141, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.01, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 403476926, - "s": "855e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6w", - "ct": 1687843725, - "e": 82230, - "f": "set_speed", - "g": 5, - "id": 294501452, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 180 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp", - 164 - ], - [ - "acc", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp", - 185 - ] - ], - "p": 48982864, - "s": "2ee", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6h_u", - "ct": 1687854931, - "e": 94412, - "f": "set_speed", - "g": 5, - "id": 299456471, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def", - 32 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "def", - 32 - ], - [ - "res", - 0.04, - "u" - ], - [ - "speed", - 0, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "speed", - 3, - "c", - "change2_speed_1_1" - ] - ], - "p": 389494760, - "s": "ad12", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eah8n", - "ct": 1687856205, - "e": 94670, - "f": "set_speed", - "g": 5, - "id": 300013216, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah8_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.08 - ] - ], - "p": 279573776, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6n_u", - "ct": 1687858583, - "e": 98582, - "f": "set_speed", - "g": 5, - "id": 301032347, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 0 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5, - "c" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 566472035, - "s": "278", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eah9r", - "ct": 1687858643, - "e": 93970, - "f": "set_acc", - "g": 5, - "id": 301056541, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah9_ring_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "att_rate", - 0.04 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "esu5b", - "ct": 1687873809, - "e": 88781, - "f": "set_speed", - "g": 5, - "id": 308004347, - "l": true, - "level": 71, - "mainStatBaseValue": 7, - "mainStatId": "un5_boot_m1", - "mainStatType": "speed", - "mainStatValue": 35, - "mg": 1111, - "op": [ - [ - "speed", - 7 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.03 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "p": 48982864, - "s": "2e84", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecb6w_u", - "ct": 1687956016, - "e": 94338, - "f": "set_res", - "g": 5, - "id": 336928771, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "res", - 0.04, - "u" - ] - ], - "p": 893757497, - "s": "562c", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eah8h", - "ct": 1687961022, - "e": 112072, - "f": "set_speed", - "g": 5, - "id": 339227178, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah8_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ] - ], - "p": 226377978, - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eah13r", - "ct": 1688017793, - "e": 103784, - "f": "set_cri", - "g": 5, - "id": 355445654, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah13_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eap2w", - "ct": 1688017941, - "e": 82266, - "f": "set_att", - "g": 5, - "id": 355496057, - "l": true, - "level": 75, - "mainStatBaseValue": 93, - "mainStatId": "ap2_weap_m1", - "mainStatType": "att", - "mainStatValue": 465, - "mg": 1111, - "op": [ - [ - "att", - 93 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ] - ], - "p": 49161666, - "s": "7c69", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eap2h", - "ct": 1688017941, - "e": 82301, - "f": "set_att", - "g": 5, - "id": 355496114, - "l": true, - "level": 75, - "mainStatBaseValue": 499, - "mainStatId": "ap2_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2495, - "mg": 1111, - "op": [ - [ - "max_hp", - 499 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "p": 48982864, - "s": "dc41", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eap2a", - "ct": 1688017941, - "e": 88277, - "f": "set_att", - "g": 5, - "id": 355496155, - "l": true, - "level": 75, - "mainStatBaseValue": 55, - "mainStatId": "ap2_armo_m1", - "mainStatType": "def", - "mainStatValue": 275, - "mg": 1111, - "op": [ - [ - "def", - 55 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "4003", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eap2b", - "ct": 1688017942, - "e": 88827, - "f": "set_att", - "g": 5, - "id": 355496195, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "ap2_boot_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.07 - ] - ], - "p": 140659207, - "s": "6300", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eap2n", - "ct": 1688017942, - "e": 82552, - "f": "set_att", - "g": 5, - "id": 355496241, - "l": true, - "level": 75, - "mainStatBaseValue": 0.13, - "mainStatId": "ap2_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.05 - ] - ], - "s": "5951", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eie18w", - "ct": 1688115660, - "e": 82084, - "f": "set_rage", - "g": 5, - "id": 384442889, - "l": true, - "level": 80, - "mainStatBaseValue": 95, - "mainStatId": "inf_wepo_m1", - "mainStatType": "att", - "mainStatValue": 475, - "mg": 1111, - "op": [ - [ - "att", - 95 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "2162", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eih8n", - "ct": 1688128046, - "e": 97303, - "f": "set_immune", - "g": 5, - "id": 388326452, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ihf_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "att_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 3 - ] - ], - "s": "f47b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eih8w", - "ct": 1688440308, - "e": 93843, - "f": "set_acc", - "g": 5, - "id": 476567788, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ihf_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 5 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "8669", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eah20r", - "ct": 1688564159, - "e": 94860, - "f": "set_acc", - "g": 5, - "id": 505480826, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah20_ring_m1", - "mainStatType": "acc", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "acc", - 0.13 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "p": 4647526, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eah17b", - "ct": 1688564752, - "e": 94860, - "f": "set_max_hp", - "g": 5, - "id": 505655177, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah17_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "p": 829105288, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "exc108801", - "ct": 1688569072, - "g": 5, - "id": 506952000, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "ek_c108801", - 2 - ] - ], - "p": 115835449, - "s": "3f0f" - }, - { - "code": "exc108801", - "ct": 1688569077, - "g": 5, - "id": 506953726, - "l": true, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.11 - ], - [ - "ek_c108801", - 3 - ] - ], - "s": "8343" - }, - { - "code": "exc107201", - "ct": 1688572703, - "g": 5, - "id": 508010364, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.14 - ], - [ - "ek_c107201", - 1 - ] - ], - "s": "c1eb" - }, - { - "code": "exc107201", - "ct": 1688572707, - "g": 5, - "id": 508011271, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.08 - ], - [ - "ek_c107201", - 3 - ] - ], - "s": "deec" - }, - { - "code": "eus6a", - "ct": 1688739974, - "e": 19484, - "f": "set_vampire", - "g": 5, - "id": 543925421, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "un6_armo_m1", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.08 - ] - ], - "s": "fdc1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eus6n", - "ct": 1688858564, - "e": 82510, - "f": "set_vampire", - "g": 5, - "id": 567279111, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "un6_neck_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.03 - ] - ], - "s": "e214", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6r", - "ct": 1688888630, - "e": 73828, - "f": "set_speed", - "g": 4, - "id": 576858023, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "acc", - 0.12 - ], - [ - "max_hp", - 188 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 177 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "max_hp", - 190 - ] - ], - "s": "85a3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6r", - "ct": 1688888715, - "e": 73886, - "f": "set_speed", - "g": 4, - "id": 576888702, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ] - ], - "s": "f8a5", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eal85b_u", - "ct": 1688889520, - "e": 98929, - "f": "set_speed", - "g": 5, - "id": 577173482, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp", - 159 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp", - 182 - ], - [ - "acc", - 0.05 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "p": 6885517, - "s": "2236", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6r_u", - "ct": 1688890156, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 577397598, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "p": 713631381, - "s": "d67f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6w_u", - "ct": 1688890817, - "e": 98626, - "f": "set_speed", - "g": 5, - "id": 577631529, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "p": 166490, - "s": "1ca8", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eus6r", - "ct": 1688998892, - "e": 85244, - "f": "set_vampire", - "g": 5, - "id": 604863261, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "un6_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.05, - "c", - "change2_def_rate_1_1" - ] - ], - "s": "4b3f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6b_u", - "ct": 1689039382, - "e": 85289, - "f": "set_cri", - "g": 4, - "id": 611475932, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.04, - "c" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "s": "251e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eal85b_u", - "ct": 1689130450, - "e": 94183, - "f": "set_speed", - "g": 5, - "id": 629160765, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri_dmg", - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.11, - "c" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "p": 490684210, - "s": "e6c4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecs7r", - "ct": 1689236282, - "e": 94079, - "f": "set_cri", - "g": 5, - "id": 648330212, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "cs7_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "p": 360878989, - "s": "4075", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eah13a", - "ct": 1689437921, - "e": 98209, - "f": "set_cri", - "g": 5, - "id": 691030506, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah13_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ] - ], - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eus7w", - "ct": 1689441497, - "e": 93851, - "f": "set_vampire", - "g": 5, - "id": 691587898, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "un7_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "1987", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6w_u", - "ct": 1689503650, - "e": 94594, - "f": "set_speed", - "g": 5, - "id": 704893645, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "p": 117268286, - "s": "731d", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6a", - "ct": 1689503666, - "e": 80752, - "f": "set_speed", - "g": 4, - "id": 704897964, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 166 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 2 - ] - ], - "s": "fc1a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a_u", - "ct": 1689512515, - "e": 94270, - "f": "set_speed", - "g": 5, - "id": 707434259, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "max_hp", - 166 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp", - 56, - "u" - ] - ], - "s": "a4c4", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6h", - "ct": 1689514913, - "e": 8161, - "f": "set_speed", - "g": 5, - "id": 708193041, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "def", - 29 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "def", - 28 - ] - ], - "s": "a24b", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eih9n", - "ct": 1689601803, - "e": 94148, - "f": "set_penetrate", - "g": 5, - "id": 724488481, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "6b39", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecg6w_u", - "ct": 1689608997, - "e": 88270, - "f": "set_max_hp", - "g": 4, - "id": 726114158, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 40490456, - "s": "392e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecb6h_u", - "ct": 1689865820, - "e": 94287, - "f": "set_res", - "g": 5, - "id": 764162132, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def", - 32 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "def", - 31 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "p": 218403497, - "s": "f83b", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eus7h", - "ct": 1689865963, - "e": 94122, - "f": "set_vampire", - "g": 5, - "id": 764197884, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "un7_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ] - ], - "s": "588a", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6a_u", - "ct": 1689870973, - "e": 94589, - "f": "set_counter", - "g": 5, - "id": 765293871, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 360878989, - "s": "bb1b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eus7a", - "ct": 1689955462, - "e": 94137, - "f": "set_vampire", - "g": 5, - "id": 787867181, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "un7_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "acc", - 0.09 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ] - ], - "p": 313179896, - "s": "ffa5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecd6h_u", - "ct": 1690021934, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 797246691, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "p": 49161666, - "s": "161", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecd6n", - "ct": 1690031207, - "f": "set_penetrate", - "g": 5, - "id": 798673712, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "att_rate", - 0.08 - ], - [ - "att", - 34 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.06 - ] - ], - "p": 440334191, - "s": "73a8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecd6h_u", - "ct": 1690035492, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 799418097, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri_dmg", - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05, - "c" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.05, - "u" - ] - ], - "s": "da89", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eeu1h", - "ct": 1690035701, - "e": 82475, - "f": "set_max_hp", - "g": 5, - "id": 799455981, - "l": true, - "level": 80, - "mainStatBaseValue": 513, - "mainStatId": "eu1_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2565, - "mg": 1111, - "op": [ - [ - "max_hp", - 513 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "p": 830235768, - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eot2n_u4", - "ct": 1690040029, - "e": 82726, - "f": "set_speed", - "g": 5, - "id": 800225597, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "ot2u_neck_m4", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.07 - ] - ], - "p": 31856726, - "s": "ca94", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecb6a_u", - "ct": 1690040362, - "e": 93943, - "f": "set_res", - "g": 5, - "id": 800283637, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.07 - ], - [ - "max_hp", - 177 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "p": 90857803, - "s": "d14d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6h", - "ct": 1690080024, - "e": 73895, - "f": "set_speed", - "g": 4, - "id": 805454737, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def", - 27 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "9473", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6w_u", - "ct": 1690109043, - "e": 87795, - "f": "set_speed", - "g": 4, - "id": 813012872, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 31856726, - "s": "6658", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6w", - "ct": 1690109103, - "e": 82418, - "f": "set_cri", - "g": 5, - "id": 813027691, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ] - ], - "s": "399a", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6w_u", - "ct": 1690109104, - "e": 94995, - "f": "set_speed", - "g": 5, - "id": 813027749, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "p": 6844892, - "s": "7fa3", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6h", - "ct": 1690109210, - "e": 73845, - "f": "set_cri", - "g": 4, - "id": 813054588, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "def_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "p": 140659207, - "s": "d6b9", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6a_u", - "ct": 1690109361, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 813092363, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.07, - "c", - "change2_max_hp_rate_1_2" - ] - ], - "p": 99507012, - "s": "8ac1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6h_u", - "ct": 1690109435, - "e": 95882, - "f": "set_speed", - "g": 5, - "id": 813111415, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "p": 21884461, - "s": "a122", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecd6r", - "ct": 1690111779, - "e": 4125, - "f": "set_revenge", - "g": 5, - "id": 813696804, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "att", - 40 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ] - ], - "s": "429f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6h_u", - "ct": 1690116357, - "e": 84759, - "f": "set_speed", - "g": 4, - "id": 814879215, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "att_rate", - 0.06, - "c", - "change2_att_rate_1_1" - ] - ], - "s": "d21d", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eus7n", - "ct": 1690124564, - "e": 95178, - "f": "set_vampire", - "g": 5, - "id": 817316274, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "un7_neck_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ] - ], - "s": "37e0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "exc106201", - "ct": 1690125190, - "g": 5, - "id": 817511469, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "ek_c106201", - 2 - ] - ], - "s": "972" - }, - { - "code": "exc106201", - "ct": 1690125197, - "g": 5, - "id": 817513776, - "l": true, - "mg": 1111, - "op": [ - [ - "speed", - 10 - ], - [ - "ek_c106201", - 3 - ] - ], - "p": 40490456, - "s": "b1c6" - }, - { - "code": "eus7r", - "ct": 1690128943, - "e": 94118, - "f": "set_vampire", - "g": 5, - "id": 818592178, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "un7_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0 - ], - [ - "cri_dmg", - 0.08, - "c", - "change2_cri_dmg_3_1" - ] - ], - "s": "e210", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecd6a_u", - "ct": 1690206102, - "e": 94099, - "f": "set_penetrate", - "g": 5, - "id": 830173356, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_2_1" - ] - ], - "p": 777666204, - "s": "981a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eeu1n", - "ct": 1690207788, - "e": 82909, - "f": "set_max_hp", - "g": 5, - "id": 830527704, - "l": true, - "level": 80, - "mainStatBaseValue": 0.12, - "mainStatId": "eu1_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eeu1b", - "ct": 1690209317, - "e": 82480, - "f": "set_max_hp", - "g": 5, - "id": 830852536, - "l": true, - "level": 80, - "mainStatBaseValue": 0.12, - "mainStatId": "eu1_boot_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.05 - ] - ], - "p": 412803674, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eum13r", - "ct": 1690210222, - "e": 101761, - "f": "set_speed", - "g": 5, - "id": 831044760, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "um13_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ] - ], - "p": 549294853, - "s": "77d7", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecd6a_u", - "ct": 1690347105, - "e": 94029, - "f": "set_penetrate", - "g": 5, - "id": 847818635, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "s": "dc1d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6r", - "ct": 1690462574, - "e": 74030, - "f": "set_acc", - "g": 4, - "id": 862719491, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "acc", - 0.12 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "att", - 38 - ], - [ - "att", - 38 - ] - ], - "p": 313109293, - "s": "c71b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6r", - "ct": 1690462627, - "f": "set_speed", - "g": 5, - "id": 862728582, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def", - 34 - ], - [ - "acc", - 0.07 - ] - ], - "p": 522853044, - "s": "e06e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "exc111901", - "ct": 1690475088, - "g": 5, - "id": 864858624, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.08 - ], - [ - "ek_c111901", - 2 - ] - ], - "s": "e6bc" - }, - { - "code": "exc111901", - "ct": 1690475119, - "g": 5, - "id": 864862856, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.11 - ], - [ - "ek_c111901", - 3 - ] - ], - "s": "2fab" - }, - { - "code": "exc111901", - "ct": 1690475122, - "g": 5, - "id": 864863306, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.08 - ], - [ - "ek_c111901", - 1 - ] - ], - "s": "1a7f" - }, - { - "code": "exc111901", - "ct": 1690475133, - "g": 5, - "id": 864864698, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "ek_c111901", - 1 - ] - ], - "s": "e969" - }, - { - "code": "ecd6h_u", - "ct": 1690518746, - "e": 93808, - "f": "set_penetrate", - "g": 5, - "id": 868975656, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.07, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "def_rate", - 0.06, - "c", - "change2_def_rate_1_1" - ] - ], - "p": 48988518, - "s": "775", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eah13n", - "ct": 1690540168, - "e": 95627, - "f": "set_cri", - "g": 5, - "id": 871856531, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ah13_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.04 - ] - ], - "p": 6844892, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecd6n", - "ct": 1690605473, - "e": 1982, - "f": "set_penetrate", - "g": 5, - "id": 879500420, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ] - ], - "s": "46ef", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecq6a_u", - "ct": 1690643568, - "e": 84464, - "f": "set_rage", - "g": 4, - "id": 884845052, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 690904230, - "s": "cb0a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecd6h_u", - "ct": 1690798820, - "e": 93945, - "f": "set_penetrate", - "g": 5, - "id": 901246333, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "2866", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eah15a", - "ct": 1690801483, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 901529896, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah15_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 2 - ] - ], - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eal85r_u", - "ct": 1690902137, - "e": 94687, - "f": "set_penetrate", - "g": 5, - "id": 911737411, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.06, - "c", - "change2_cri_dmg_1_1" - ] - ], - "p": 99507012, - "s": "5e57", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eal85b_u", - "ct": 1690902290, - "e": 94146, - "f": "set_speed", - "g": 5, - "id": 911758443, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "u" - ] - ], - "s": "c342", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6h_u", - "ct": 1691074089, - "e": 94099, - "f": "set_speed", - "g": 5, - "id": 950034425, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "s": "35fd", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eie18h", - "ct": 1691075357, - "e": 83405, - "f": "set_speed", - "g": 5, - "id": 950493439, - "l": true, - "level": 80, - "mainStatBaseValue": 513, - "mainStatId": "inf_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2565, - "mg": 1111, - "op": [ - [ - "max_hp", - 513 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.08 - ] - ], - "p": 403476926, - "s": "d401", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6w_u", - "ct": 1691121365, - "e": 101111, - "f": "set_speed", - "g": 5, - "id": 958807250, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 150271128, - "s": "19bf", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eah20b", - "ct": 1691142135, - "e": 101483, - "f": "set_acc", - "g": 5, - "id": 964534414, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah20_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.09 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.09 - ] - ], - "p": 4647526, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecb6h_u", - "ct": 1691410155, - "e": 93862, - "f": "set_counter", - "g": 5, - "id": 1017122992, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "8568", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6a_u", - "ct": 1691411464, - "e": 101090, - "f": "set_speed", - "g": 5, - "id": 1017307432, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "acc", - 0.05, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "s": "5a81", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecd6h_u", - "ct": 1691461375, - "e": 93769, - "f": "set_penetrate", - "g": 5, - "id": 1022018663, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "c", - "change1_cri_1_1" - ] - ], - "s": "d711", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eih1w", - "ct": 1691487886, - "e": 97260, - "f": "set_max_hp", - "g": 5, - "id": 1024950442, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "imh_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "max_hp", - 179 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.04 - ] - ], - "s": "bdba", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6b_u", - "ct": 1691503294, - "e": 97785, - "f": "set_speed", - "g": 5, - "id": 1026796743, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ] - ], - "p": 559859822, - "s": "f0b4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecb6b_u", - "ct": 1691678257, - "e": 97121, - "f": "set_counter", - "g": 5, - "id": 1042548473, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 360878989, - "s": "1127", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eih3w", - "ct": 1691814405, - "e": 115173, - "f": "set_rage", - "g": 5, - "id": 1052966260, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "imh_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ] - ], - "s": "1bce", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eeu1r", - "ct": 1691839543, - "e": 86277, - "f": "set_max_hp", - "g": 5, - "id": 1055351414, - "l": true, - "level": 80, - "mainStatBaseValue": 0.12, - "mainStatId": "eu1_ring_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.06 - ] - ], - "p": 40490456, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eeu1w", - "ct": 1691852287, - "e": 82834, - "f": "set_max_hp", - "g": 5, - "id": 1056709008, - "l": true, - "level": 80, - "mainStatBaseValue": 95, - "mainStatId": "eu1_weap_m1", - "mainStatType": "att", - "mainStatValue": 475, - "mg": 1111, - "op": [ - [ - "att", - 95 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecb6w", - "ct": 1691907811, - "e": 39254, - "f": "set_counter", - "g": 5, - "id": 1061010023, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.04 - ] - ], - "s": "b698", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6h_u", - "ct": 1692026269, - "e": 93778, - "f": "set_speed", - "g": 5, - "id": 1071327894, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "p": 620426700, - "s": "f961", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eih2a", - "ct": 1692101668, - "e": 93913, - "f": "set_res", - "g": 5, - "id": 1076985972, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "imh_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.09 - ], - [ - "max_hp", - 198 - ], - [ - "res", - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0 - ], - [ - "res", - 0.11, - "c", - "change2_res_2_2" - ] - ], - "p": 412803674, - "s": "fbda", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6b_u", - "ct": 1692512618, - "e": 84392, - "f": "set_speed", - "g": 4, - "id": 1129638392, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.07, - "c" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "p": 590699704, - "s": "d2de", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6a", - "ct": 1692513162, - "e": 75600, - "f": "set_cri", - "g": 4, - "id": 1129744885, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "c18a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6h_u", - "ct": 1692548207, - "e": 93998, - "f": "set_speed", - "g": 5, - "id": 1136872192, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0 - ], - [ - "att_rate", - 0.1, - "c" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 490684210, - "s": "7de5", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6n", - "ct": 1692548230, - "e": 86455, - "f": "set_acc", - "g": 5, - "id": 1136876675, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.05 - ] - ], - "p": 473350938, - "s": "8ef9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6a_u", - "ct": 1692548556, - "e": 94048, - "f": "set_acc", - "g": 5, - "id": 1136939234, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.07, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "p": 899011010, - "s": "e06c", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a", - "ct": 1692548556, - "e": 82031, - "f": "set_acc", - "g": 5, - "id": 1136939258, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.05 - ] - ], - "p": 117268286, - "s": "ff1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6h_u", - "ct": 1692548594, - "e": 84411, - "f": "set_speed", - "g": 4, - "id": 1136946286, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 90857803, - "s": "7d8a", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6r_u", - "ct": 1692585967, - "e": 115039, - "f": "set_cri", - "g": 5, - "id": 1142175659, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 1 - ], - [ - "max_hp_rate", - 0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.08, - "c", - "change2_max_hp_rate_1_1" - ] - ], - "p": 434015426, - "s": "9df7", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6r_u", - "ct": 1692617283, - "e": 94457, - "f": "set_speed", - "g": 5, - "id": 1149229209, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 187 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp", - 165 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp", - 188 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp", - 168, - "u" - ] - ], - "s": "d043", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6r_u", - "ct": 1692617308, - "e": 94210, - "f": "set_speed", - "g": 5, - "id": 1149235477, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.04 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "def_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3, - "c" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ] - ], - "p": 166490, - "s": "63cb", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eeu1a", - "ct": 1692630947, - "e": 82571, - "f": "set_max_hp", - "g": 5, - "id": 1152848167, - "l": true, - "level": 80, - "mainStatBaseValue": 57, - "mainStatId": "eu1_armo_m1", - "mainStatType": "def", - "mainStatValue": 285, - "mg": 1111, - "op": [ - [ - "def", - 57 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp", - 163, - "c", - "change2_max_hp_1_1" - ] - ], - "p": 739641017, - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eah12n", - "ct": 1692713222, - "e": 94759, - "f": "set_counter", - "g": 5, - "id": 1163632047, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ah12_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.08, - "c", - "change2_att_rate_1_2" - ] - ], - "p": 360878989, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eah12w", - "ct": 1692713251, - "e": 94355, - "f": "set_counter", - "g": 5, - "id": 1163636420, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah12_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eah13h", - "ct": 1692968841, - "e": 94287, - "f": "set_cri", - "g": 5, - "id": 1196927356, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah13_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eie18b", - "ct": 1693233259, - "e": 85966, - "f": "set_max_hp", - "g": 5, - "id": 1229545416, - "l": true, - "level": 80, - "mainStatBaseValue": 0.12, - "mainStatId": "inf_boot_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ] - ], - "p": 799495489, - "s": "167d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eih9n", - "ct": 1693236680, - "e": 94093, - "f": "set_penetrate", - "g": 5, - "id": 1230124571, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.06 - ] - ], - "p": 158971995, - "s": "253c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eal85b_u", - "ct": 1693398788, - "e": 98672, - "f": "set_speed", - "g": 5, - "id": 1246408859, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.04 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "acc", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 618609916, - "s": "b18e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecs2h", - "ct": 1693468332, - "e": 82031, - "f": "set_immune", - "g": 5, - "id": 1254071924, - "l": true, - "level": 78, - "mainStatBaseValue": 513, - "mainStatId": "cs2_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2565, - "mg": 1111, - "op": [ - [ - "max_hp", - 513 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06, - "c", - "change2_cri_dmg_1_1" - ] - ], - "p": 559859824, - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecs2r", - "ct": 1693468337, - "e": 84712, - "f": "set_cri", - "g": 5, - "id": 1254072762, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "cs2_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ] - ], - "p": 313179896, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecs2n", - "ct": 1693468341, - "e": 82921, - "f": "set_cri", - "g": 5, - "id": 1254073561, - "l": true, - "level": 78, - "mainStatBaseValue": 0.13, - "mainStatId": "cs2_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ] - ], - "p": 518421029, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eih2a", - "ct": 1693575313, - "e": 20628, - "f": "set_res", - "g": 5, - "id": 1266214181, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "imh_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.06 - ], - [ - "acc", - 0.09 - ], - [ - "cri", - 0.06 - ] - ], - "s": "1b63", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ewb1h", - "ct": 1693836462, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1292938356, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "wb1_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ] - ], - "p": 583954927, - "s": "5175", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eah19n", - "ct": 1693840670, - "e": 94357, - "f": "set_speed", - "g": 5, - "id": 1293509714, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah19_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.04 - ] - ], - "p": 777666204, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ela7b", - "ct": 1693874163, - "e": 94080, - "f": "set_vampire", - "g": 5, - "id": 1295540409, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "la7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ] - ], - "p": 326831592, - "s": "d3cb", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eal85b_u", - "ct": 1693892577, - "e": 94039, - "f": "set_speed", - "g": 5, - "id": 1297578046, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.11, - "c" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 323638178, - "s": "46a4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eih9n", - "ct": 1693921011, - "e": 95760, - "f": "set_penetrate", - "g": 5, - "id": 1300670242, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.09 - ] - ], - "p": 461351155, - "s": "bdac", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ela7r", - "ct": 1694051288, - "e": 95760, - "f": "set_immune", - "g": 5, - "id": 1311832421, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "att_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ] - ], - "s": "c359", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ela7a", - "ct": 1694182220, - "e": 95760, - "f": "set_vampire", - "g": 5, - "id": 1319942405, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "la7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ] - ], - "p": 48988520, - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eiu51r", - "ct": 1694268912, - "e": 95592, - "f": "set_res", - "g": 5, - "id": 1327616181, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu51_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 0 - ], - [ - "speed", - 5, - "c", - "change2_speed_2_3" - ] - ], - "p": 90857803, - "s": "d99b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ela7w", - "ct": 1694312566, - "e": 96383, - "f": "set_vampire", - "g": 5, - "id": 1330713921, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "la7_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06, - "c", - "change2_cri_dmg_1_1" - ] - ], - "p": 48988520, - "s": "4942", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ela7h", - "ct": 1694399170, - "e": 93856, - "f": "set_vampire", - "g": 5, - "id": 1339029649, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "la7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ] - ], - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eah19b", - "ct": 1694610303, - "e": 94920, - "f": "set_speed", - "g": 5, - "id": 1354490436, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah19_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.08 - ] - ], - "p": 96079748, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ela7n", - "ct": 1694693378, - "e": 93855, - "f": "set_immune", - "g": 5, - "id": 1360281980, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "la7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.06 - ] - ], - "p": 640588979, - "s": "bf97", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eah17r", - "ct": 1694710948, - "e": 94136, - "f": "set_max_hp", - "g": 5, - "id": 1362828555, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah17_ring_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ] - ], - "p": 620426700, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ess10n", - "ct": 1694785665, - "e": 82320, - "f": "set_speed", - "g": 5, - "id": 1368533909, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "ss10_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.06 - ] - ], - "p": 21884461, - "s": "d849", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eah10b", - "ct": 1694915637, - "e": 93800, - "f": "set_cri_dmg", - "g": 5, - "id": 1388427710, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah10_boot_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eot2r_u1", - "ct": 1694917485, - "e": 83255, - "f": "set_rage", - "g": 5, - "id": 1388720566, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "ot2u_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "speed", - 3 - ], - [ - "def", - 32 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "p": 690904230, - "s": "1a22", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecb6h_u", - "ct": 1694941950, - "e": 93771, - "f": "set_cri_dmg", - "g": 5, - "id": 1393005362, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ] - ], - "s": "32fe", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6w", - "ct": 1694950763, - "e": 76440, - "f": "set_counter", - "g": 4, - "id": 1394544142, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 164 - ], - [ - "cri", - 0.05 - ] - ], - "s": "886d", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecb6w_u", - "ct": 1694950763, - "e": 84464, - "f": "set_res", - "g": 4, - "id": 1394544157, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.08, - "c", - "change1_att_rate_1_1" - ] - ], - "p": 306770592, - "s": "69ad", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecb6w_u", - "ct": 1694950763, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1394544167, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "f88", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecb6w_u", - "ct": 1694950851, - "e": 84375, - "f": "set_vampire", - "g": 4, - "id": 1394560081, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "75cf", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecb6w_u", - "ct": 1694950876, - "e": 84467, - "f": "set_cri_dmg", - "g": 4, - "id": 1394564468, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0 - ], - [ - "speed", - 2 - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.07, - "c", - "change2_att_rate_1_2" - ] - ], - "s": "97fa", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecb6h_u", - "ct": 1694951172, - "e": 98815, - "f": "set_res", - "g": 5, - "id": 1394616557, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 28398305, - "s": "7d62", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6h_u", - "ct": 1694951273, - "e": 84419, - "f": "set_res", - "g": 4, - "id": 1394634189, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "res", - 0.07, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.05, - "c", - "change1_max_hp_rate_1_2" - ] - ], - "p": 566472035, - "s": "dec5", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6h_u", - "ct": 1694951558, - "e": 86259, - "f": "set_cri_dmg", - "g": 4, - "id": 1394686000, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.06, - "c", - "change2_cri_dmg_1_1" - ] - ], - "s": "8a1f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6a_u", - "ct": 1694956922, - "e": 95318, - "f": "set_res", - "g": 5, - "id": 1395712527, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 194 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07, - "c" - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "def_rate", - 0.07, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "f321", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecb6a_u", - "ct": 1694959631, - "e": 98528, - "f": "set_vampire", - "g": 5, - "id": 1396264718, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 3 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "bab7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecb6h_u", - "ct": 1695010279, - "e": 93772, - "f": "set_cri_dmg", - "g": 5, - "id": 1402663039, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.07, - "c" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "p": 158971995, - "s": "e913", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6h_u", - "ct": 1695010338, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 1402672680, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.06, - "c" - ], - [ - "acc", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 6885517, - "s": "f4d", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6h_u", - "ct": 1695010338, - "e": 84467, - "f": "set_counter", - "g": 4, - "id": 1402672686, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.06, - "c", - "change2_def_rate_1_1" - ] - ], - "p": 568689715, - "s": "a272", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6h", - "ct": 1695010338, - "e": 9797, - "f": "set_vampire", - "g": 5, - "id": 1402672720, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ] - ], - "s": "4ff", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6b_u", - "ct": 1695011147, - "e": 93799, - "f": "set_res", - "g": 5, - "id": 1402810067, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp", - 183 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp", - 162 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp", - 112, - "u" - ], - [ - "res", - 0.03, - "c", - "change1_res_1_1" - ] - ], - "p": 31856726, - "s": "8cb0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecb6h_u", - "ct": 1695011648, - "e": 97399, - "f": "set_cri_dmg", - "g": 5, - "id": 1402898503, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.06, - "c", - "change1_cri_dmg_2_2" - ] - ], - "p": 591089796, - "s": "2058", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eah21n", - "ct": 1695109838, - "e": 93968, - "f": "set_cri_dmg", - "g": 5, - "id": 1415487105, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ah21_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 3 - ] - ], - "p": 738614105, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecd6a_u", - "ct": 1695118195, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 1416222058, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.06, - "c" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 890790459, - "s": "aab2", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eah21a", - "ct": 1695218947, - "e": 94024, - "f": "set_cri_dmg", - "g": 5, - "id": 1424165891, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah21_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.09 - ] - ], - "p": 434015426, - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "exc109001", - "ct": 1695482031, - "g": 5, - "id": 1444525856, - "l": true, - "mg": 1111, - "op": [ - [ - "res", - 0.11 - ], - [ - "ek_c109001", - 1 - ] - ], - "s": "f75a" - }, - { - "code": "eih4a", - "ct": 1695484860, - "e": 93750, - "f": "set_att", - "g": 5, - "id": 1444890132, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "imh_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ] - ], - "s": "9e2e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eum13n", - "ct": 1695702216, - "e": 92232, - "f": "set_speed", - "g": 5, - "id": 1462923960, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "um13_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.04 - ] - ], - "p": 48982864, - "s": "5de", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6a", - "ct": 1695869369, - "e": 73864, - "f": "set_speed", - "g": 4, - "id": 1476441427, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.03 - ] - ], - "p": 403357976, - "s": "88df", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecb6h_u", - "ct": 1695874459, - "e": 93815, - "f": "set_counter", - "g": 5, - "id": 1477587046, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "972d", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6a_u", - "ct": 1695874459, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1477587057, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4.0 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "s": "97e7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecb6b_u", - "ct": 1695874459, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1477587080, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "s": "c502", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecb6n", - "ct": 1695874459, - "e": 82128, - "f": "set_counter", - "g": 5, - "id": 1477587102, - "l": true, - "level": 85, - "mainStatBaseValue": 0.13, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4.0 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "6f0c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecb6r_u", - "ct": 1695874460, - "e": 95090, - "f": "set_counter", - "g": 5, - "id": 1477587124, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ] - ], - "p": 96079743, - "s": "e14", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6n", - "ct": 1695877024, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 1478142240, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp", - 180 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 0 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 0 - ], - [ - "speed", - 4, - "c", - "change2_speed_3_1" - ] - ], - "p": 590699704, - "s": "af7b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6n", - "ct": 1695911806, - "e": 86688, - "f": "set_speed", - "g": 4, - "id": 1485375946, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "p": 659243748, - "s": "404f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6a", - "ct": 1695914040, - "e": 87438, - "f": "set_acc", - "g": 4, - "id": 1485898799, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.05 - ] - ], - "s": "74df", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a", - "ct": 1695947410, - "e": 8161, - "f": "set_cri", - "g": 5, - "id": 1490172520, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.08 - ] - ], - "s": "a22c", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a_u", - "ct": 1695948957, - "e": 98074, - "f": "set_speed", - "g": 5, - "id": 1490428702, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 1 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "p": 669363338, - "s": "4727", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ess11r", - "ct": 1695980630, - "e": 89880, - "f": "set_speed", - "g": 5, - "id": 1496409944, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "ss11_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.04 - ] - ], - "p": 218403497, - "s": "72a6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6h_u", - "ct": 1695981528, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 1496567808, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def", - 29 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.05 - ], - [ - "att", - 40 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "def", - 29 - ], - [ - "speed", - 4 - ], - [ - "def", - 30 - ], - [ - "def", - 27, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "att", - 11, - "u" - ] - ], - "s": "e768", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6h", - "ct": 1695981528, - "e": 74082, - "f": "set_speed", - "g": 4, - "id": 1496567838, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "att_rate", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.06 - ], - [ - "def", - 27 - ], - [ - "def_rate", - 0.05 - ] - ], - "p": 659243748, - "s": "33e7", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6w_u", - "ct": 1695981604, - "e": 93759, - "f": "set_speed", - "g": 5, - "id": 1496581052, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ] - ], - "p": 21884461, - "s": "15e8", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6w", - "ct": 1695981634, - "e": 74592, - "f": "set_speed", - "g": 4, - "id": 1496586296, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "max_hp", - 187 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.07 - ] - ], - "s": "e914", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6a_u", - "ct": 1695981662, - "e": 84632, - "f": "set_speed", - "g": 4, - "id": 1496590728, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 795195383, - "s": "6b1e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a", - "ct": 1695981662, - "e": 8569, - "f": "set_acc", - "g": 5, - "id": 1496590816, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.06 - ] - ], - "s": "54e5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6n", - "ct": 1695981790, - "e": 90384, - "f": "set_speed", - "g": 5, - "id": 1496612742, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def", - 29 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def", - 28 - ], - [ - "speed", - 4 - ], - [ - "def", - 33 - ] - ], - "s": "4f67", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6r_u", - "ct": 1695984156, - "e": 94654, - "f": "set_speed", - "g": 5, - "id": 1497008762, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 0 - ], - [ - "speed", - 2, - "c" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "p": 389494760, - "s": "2d10", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6n", - "ct": 1695984169, - "e": 17752, - "f": "set_speed", - "g": 5, - "id": 1497010955, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def", - 29 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def", - 34 - ] - ], - "p": 545449824, - "s": "4c76", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6r_u", - "ct": 1696000182, - "e": 93815, - "f": "set_speed", - "g": 5, - "id": 1500062217, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 1 - ], - [ - "speed", - 4 - ], - [ - "att", - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 1, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "att", - 46, - "c", - "change2_att_1_2" - ] - ], - "p": 494187001, - "s": "1124", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6h_u", - "ct": 1696352505, - "e": 86259, - "f": "set_speed", - "g": 4, - "id": 1541258505, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 1 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "p": 326831592, - "s": "4fff", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6a", - "ct": 1696352545, - "e": 74652, - "f": "set_speed", - "g": 4, - "id": 1541262139, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "921f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eiu51w", - "ct": 1696429922, - "e": 3498, - "f": "set_rage", - "g": 5, - "id": 1550003470, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu51_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.07 - ] - ], - "s": "faa4", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eiu31w", - "ct": 1696439752, - "e": 2352, - "f": "set_revenge", - "g": 5, - "id": 1551254123, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu31_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "dd48", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eih7a", - "ct": 1696440299, - "e": 96600, - "f": "set_immune", - "g": 5, - "id": 1551301611, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "imh_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.09 - ], - [ - "cri", - 0.05 - ] - ], - "p": 110853212, - "s": "69dc", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6w_u", - "ct": 1696693249, - "e": 103397, - "f": "set_speed", - "g": 5, - "id": 1570812246, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp", - 199 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp", - 56, - "u" - ] - ], - "p": 96079748, - "s": "92c7", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6w_u", - "ct": 1696693259, - "e": 93815, - "f": "set_speed", - "g": 5, - "id": 1570813561, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 90857803, - "s": "8950", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eah21w", - "ct": 1696693632, - "e": 93823, - "f": "set_cri_dmg", - "g": 5, - "id": 1570859068, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah21_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "att_rate", - 0.09 - ], - [ - "att_rate", - 0.06 - ] - ], - "p": 591089796, - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "exc101701", - "ct": 1696770186, - "g": 5, - "id": 1574475925, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "ek_c101701", - 2 - ] - ], - "s": "1a9e" - }, - { - "code": "exc101701", - "ct": 1696770190, - "g": 5, - "id": 1574476142, - "l": true, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "ek_c101701", - 3 - ] - ], - "p": 306770592, - "s": "1f15" - }, - { - "code": "ecs13w", - "ct": 1697089651, - "e": 82137, - "f": "set_speed", - "g": 5, - "id": 1587144632, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "cs13_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 3 - ] - ], - "s": "2eaf", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecq6h", - "ct": 1697249128, - "e": 3094, - "f": "set_coop", - "g": 5, - "id": 1595378390, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "905a", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eah19h", - "ct": 1697809217, - "e": 118324, - "f": "set_speed", - "g": 5, - "id": 1624804788, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah19_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ] - ], - "p": 897188455, - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecl23r", - "ct": 1698325785, - "e": 93856, - "f": "set_speed", - "g": 5, - "id": 1653826956, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "wc2023_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 1 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.03 - ] - ], - "p": 618609916, - "s": "f0e3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eiu12a", - "ct": 1698594482, - "f": "set_scar", - "g": 5, - "id": 1674412887, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu12_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "6e62", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eah14b", - "ct": 1698757844, - "e": 95404, - "f": "set_res", - "g": 5, - "id": 1680890938, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah14_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.05 - ] - ], - "p": 226377978, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eiu11h", - "ct": 1698812238, - "e": 95060, - "f": "set_speed", - "g": 5, - "id": 1682787417, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu11_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ] - ], - "p": 739641017, - "s": "d736", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eda15h", - "ct": 1698812238, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 1682787418, - "l": true, - "level": 80, - "mainStatBaseValue": 513, - "mainStatId": "duna6_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2565, - "mg": 1111, - "op": [ - [ - "max_hp", - 513 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 2, - "c", - "change2_speed_1_1" - ] - ], - "p": 306859366, - "s": "6f70", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eih9n", - "ct": 1698812369, - "e": 97409, - "f": "set_penetrate", - "g": 5, - "id": 1682793427, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.06 - ] - ], - "p": 306859366, - "s": "4db8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eah14r", - "ct": 1698934036, - "e": 95060, - "f": "set_res", - "g": 5, - "id": 1687751055, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah14_ring_m1", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 2 - ] - ], - "p": 279573776, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecb6n_u", - "ct": 1699197498, - "e": 84463, - "f": "set_res", - "g": 4, - "id": 1702201074, - "l": true, - "level": 90, - "mainStatBaseValue": 0.12, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "cri", - 0.12, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "3372", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecb6n_u", - "ct": 1699197520, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 1702203221, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp", - 186 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp", - 198 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "max_hp", - 112, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_1" - ] - ], - "p": 434015426, - "s": "859a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecb6n_u", - "ct": 1699236439, - "e": 94231, - "f": "set_res", - "g": 5, - "id": 1703676098, - "l": true, - "level": 90, - "mainStatBaseValue": 0.12, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "cri", - 0.12, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "p": 461989175, - "s": "aba0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecb6w_u", - "ct": 1699322044, - "e": 93770, - "f": "set_vampire", - "g": 5, - "id": 1707619478, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07, - "c" - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 798777729, - "s": "1b07", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecb6h_u", - "ct": 1699322469, - "e": 93770, - "f": "set_cri_dmg", - "g": 5, - "id": 1707635213, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_2" - ] - ], - "s": "bd8f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6w_u", - "ct": 1699322993, - "e": 86067, - "f": "set_vampire", - "g": 4, - "id": 1707653977, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 313179896, - "s": "b375", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6b", - "ct": 1699524396, - "e": 75692, - "f": "set_cri", - "g": 4, - "id": 1715726620, - "l": true, - "level": 85, - "mainStatBaseValue": 8, - "mainStatId": "cra6_boot_m", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att", - 35 - ], - [ - "def_rate", - 0.08 - ] - ], - "s": "dc71", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eiu31w", - "ct": 1699706143, - "e": 2292, - "f": "set_revenge", - "g": 5, - "id": 1728014892, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu31_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "eaed", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eiu51w", - "ct": 1700455409, - "e": 4664, - "f": "set_rage", - "g": 5, - "id": 1770631627, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu51_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.06 - ] - ], - "s": "a0a5", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecq6n_u", - "ct": 1700532021, - "e": 93772, - "f": "set_rage", - "g": 5, - "id": 1773767234, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "def", - 30 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "def", - 9, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 690904230, - "s": "6105", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eal85b_u", - "ct": 1700635875, - "e": 103685, - "f": "set_vampire", - "g": 5, - "id": 1777828559, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.05, - "c", - "change2_cri_dmg_1_1" - ] - ], - "s": "98b6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eal85n_u", - "ct": 1700641764, - "e": 93829, - "f": "set_vampire", - "g": 5, - "id": 1778028869, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.07, - "c" - ], - [ - "acc", - 0.05, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "e7d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eah14a", - "ct": 1700803284, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 1783540481, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah14_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ] - ], - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eiu21r", - "ct": 1700988861, - "e": 93856, - "f": "set_speed", - "g": 5, - "id": 1795607593, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu21_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ] - ], - "p": 559859822, - "s": "67f2", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eih4a", - "ct": 1700994850, - "f": "set_att", - "g": 5, - "id": 1796151091, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "imh_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "acc", - 0.09 - ] - ], - "s": "ee25", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eih9n", - "ct": 1700994909, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 1796156402, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ] - ], - "s": "e6cb", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eal85b_u", - "ct": 1701103523, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1804369966, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0 - ], - [ - "res", - 0.08 - ], - [ - "att", - 42 - ], - [ - "att_rate", - 0.08 - ], - [ - "att", - 45 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "att", - 43 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.08, - "c" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "att", - 33, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "s": "d825", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "exc202201", - "ct": 1701232533, - "g": 5, - "id": 1809058744, - "l": true, - "mg": 1111, - "op": [ - [ - "res", - 0.15 - ], - [ - "ek_c202201", - 2 - ] - ], - "s": "bbfc" - }, - { - "code": "exc202201", - "ct": 1701232540, - "g": 5, - "id": 1809059097, - "l": true, - "mg": 1111, - "op": [ - [ - "res", - 0.16 - ], - [ - "ek_c202201", - 3 - ] - ], - "p": 389494760, - "s": "68f7" - }, - { - "code": "eah17h", - "ct": 1701235250, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 1809176155, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah17_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ] - ], - "p": 326928979, - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eum13a", - "ct": 1701274041, - "e": 82032, - "f": "set_speed", - "g": 5, - "id": 1810869248, - "l": true, - "level": 78, - "mainStatBaseValue": 57, - "mainStatId": "um13_armo_m", - "mainStatType": "def", - "mainStatValue": 285, - "mg": 1111, - "op": [ - [ - "def", - 57 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "cri", - 0.05 - ] - ], - "p": 150271128, - "s": "68d9", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eiu12w", - "ct": 1701490284, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 1818219857, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu12_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.06 - ] - ], - "p": 795195383, - "s": "fcc0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eiu31n", - "ct": 1701506336, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 1818872512, - "l": true, - "level": 88, - "mainStatBaseValue": 0.12, - "mainStatId": "iu31_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "a31", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eal85b_u", - "ct": 1701508150, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1818940282, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "acc", - 0.07 - ], - [ - "att", - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att", - 0 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "att", - 22, - "u" - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "att", - 64, - "c", - "change2_att_2_1" - ] - ], - "s": "9ee3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eal85b_u", - "ct": 1701508620, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1818957037, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp", - 171 - ], - [ - "res", - 0.04 - ], - [ - "max_hp", - 160 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp", - 161 - ], - [ - "max_hp", - 191 - ], - [ - "acc", - 0.07, - "c" - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "max_hp", - 224, - "u" - ] - ], - "p": 389494760, - "s": "794b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eal85b_u", - "ct": 1701508668, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1818958688, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "p": 241191727, - "s": "b2fc", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eot3r_u2", - "ct": 1701839954, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1830795504, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_ring_m2", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 180 - ], - [ - "def", - 38 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "def", - 38 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ] - ], - "p": 6885517, - "s": "165c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ewb1r", - "ct": 1701935651, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1834878032, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "wb1_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "acc", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "s": "a2b8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecs12w", - "ct": 1701953800, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 1836149988, - "l": true, - "level": 78, - "mainStatBaseValue": 95, - "mainStatId": "cs12_weap_m1", - "mainStatType": "att", - "mainStatValue": 475, - "mg": 1111, - "op": [ - [ - "att", - 95 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ] - ], - "p": 549294853, - "s": "35fc", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "exc112301", - "ct": 1701953816, - "g": 5, - "id": 1836151170, - "l": true, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.14 - ], - [ - "ek_c112301", - 1 - ] - ], - "s": "e6a9" - }, - { - "code": "ere_sp_w", - "ct": 1701996691, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1838332519, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ere_sp_w_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_2" - ] - ], - "s": "c260", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ere_sp_h", - "ct": 1701996691, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1838332524, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ere_sp_h_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.05 - ] - ], - "p": 99507012, - "s": "cc6c", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ere_sp_a", - "ct": 1701996691, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1838332525, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ere_sp_a_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.06 - ] - ], - "p": 4647526, - "s": "89b4", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ere_sp_n", - "ct": 1701996691, - "e": 93856, - "f": "set_speed", - "g": 5, - "id": 1838332526, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ere_sp_n_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "max_hp", - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp", - 0 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp", - 305, - "c", - "change2_max_hp_2_1" - ] - ], - "p": 226377978, - "s": "1a8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ere_sp_r", - "ct": 1701996691, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1838332527, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ere_sp_r_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "att_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.09 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ] - ], - "p": 225876663, - "s": "3949", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ere_sp_b", - "ct": 1701996691, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1838332528, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ere_sp_b_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.09 - ], - [ - "att_rate", - 0.07 - ] - ], - "p": 518421029, - "s": "d516", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eiu51r", - "ct": 1702020029, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 1839826439, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu51_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "cri_dmg", - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0 - ], - [ - "res", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.09, - "c", - "change2_cri_dmg_2_2" - ] - ], - "s": "652a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "exc101601", - "ct": 1702025934, - "g": 5, - "id": 1840127454, - "l": true, - "mg": 1111, - "op": [ - [ - "acc", - 0.12 - ], - [ - "ek_c101601", - 1 - ] - ], - "p": 525461035, - "s": "52c0" - }, - { - "code": "exc208501", - "ct": 1702026000, - "g": 5, - "id": 1840130722, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.08 - ], - [ - "ek_c208501", - 3 - ] - ], - "s": "f8ea" - }, - { - "code": "exc208501", - "ct": 1702026013, - "g": 5, - "id": 1840131324, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "ek_c208501", - 3 - ] - ], - "s": "8899" - }, - { - "code": "exc111901", - "ct": 1702026413, - "g": 5, - "id": 1840150222, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.14 - ], - [ - "ek_c111901", - 1 - ] - ], - "p": 306859366, - "s": "9742" - }, - { - "code": "eah19r", - "ct": 1702355451, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1858123965, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah19_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att", - 0 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "att", - 0 - ], - [ - "att", - 0 - ], - [ - "att", - 101, - "c", - "change2_att_3_1" - ] - ], - "p": 518782830, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecd6w_u", - "ct": 1702434780, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 1862090546, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.07, - "c" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "p": 158971995, - "s": "3ff2", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecd6h_u", - "ct": 1702434780, - "e": 84462, - "f": "set_torrent", - "g": 4, - "id": 1862090550, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att", - 34 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att", - 11, - "u" - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 0, - "u" - ], - [ - "speed", - 4, - "c", - "change2_speed_1_2" - ] - ], - "p": 890790459, - "s": "4e10", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ere_co_w", - "ct": 1702596384, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1870371729, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ere_co_w_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.06 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ] - ], - "s": "6a15", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ere_co_h", - "ct": 1702596384, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1870371734, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ere_co_h_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ] - ], - "p": 180232242, - "s": "b556", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ere_co_a", - "ct": 1702596384, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1870371735, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ere_co_a_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.06 - ] - ], - "s": "123b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ere_co_n", - "ct": 1702596384, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1870371737, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ere_co_n_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ] - ], - "p": 96079743, - "s": "4446", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ere_co_r", - "ct": 1702596384, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1870371742, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ere_co_r_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri_dmg", - 0.08 - ] - ], - "p": 568689715, - "s": "afdf", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ere_co_b", - "ct": 1702596384, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1870371743, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ere_co_b_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.05 - ] - ], - "p": 568689715, - "s": "ec07", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6w_u", - "ct": 1702707180, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 1876168756, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "p": 360878989, - "s": "642d", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "exc112202", - "ct": 1702827763, - "g": 5, - "id": 1890516830, - "l": true, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "ek_c112202", - 2 - ] - ], - "s": "a775" - }, - { - "code": "ecw6a", - "ct": 1702876091, - "e": 73828, - "f": "set_speed", - "g": 4, - "id": 1893825637, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ] - ], - "s": "57e3", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6n", - "ct": 1702893818, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 1895726655, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0 - ], - [ - "res", - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.06, - "c", - "change1_res_2_1" - ] - ], - "s": "ec5c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6w_u", - "ct": 1702894050, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1895749753, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0 - ], - [ - "att_rate", - 0.14, - "c" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "p": 99507012, - "s": "bb8b", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6n_u", - "ct": 1702894119, - "e": 84375, - "f": "set_cri", - "g": 4, - "id": 1895756907, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0 - ], - [ - "def_rate", - 0.05 - ], - [ - "att_rate", - 0.05, - "c" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "p": 583954927, - "s": "61e5", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6w_u", - "ct": 1702894144, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1895759346, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "res", - 0.06 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.04 - ], - [ - "res", - 0.03, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 306859366, - "s": "57a5", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6n", - "ct": 1702894249, - "f": "set_speed", - "g": 5, - "id": 1895770976, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_neck_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.07 - ] - ], - "p": 522853044, - "s": "c819", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6n", - "ct": 1702894286, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 1895774983, - "level": 85, - "mainStatBaseValue": 0.13, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "def", - 32 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ] - ], - "p": 323638178, - "s": "b780", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6a_u", - "ct": 1702894352, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1895781680, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 0 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "speed", - 0, - "u" - ], - [ - "speed", - 4, - "c", - "change2_speed_1_3" - ] - ], - "p": 241191727, - "s": "de72", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6h_u", - "ct": 1702895147, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 1895864631, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.06, - "c", - "change2_cri_dmg_1_1" - ] - ], - "p": 434015426, - "s": "6338", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6w", - "ct": 1702895239, - "e": 73828, - "f": "set_cri", - "g": 4, - "id": 1895874138, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 164 - ], - [ - "speed", - 2 - ] - ], - "s": "b84a", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "exc112302", - "ct": 1702948244, - "g": 5, - "id": 1899778700, - "l": true, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.14 - ], - [ - "ek_c112302", - 2 - ] - ], - "s": "6390" - }, - { - "code": "exc112303", - "ct": 1702966727, - "g": 5, - "id": 1900700611, - "l": true, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.14 - ], - [ - "ek_c112303", - 3 - ] - ], - "s": "6cb0" - }, - { - "code": "euq7h", - "ct": 1703040014, - "e": 82031, - "f": "set_cri_dmg", - "g": 5, - "id": 1903537842, - "l": true, - "level": 78, - "mainStatBaseValue": 513, - "mainStatId": "uq7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2565, - "mg": 1111, - "op": [ - [ - "max_hp", - 513 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ] - ], - "s": "fb7c", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "euq7a", - "ct": 1703041994, - "e": 82031, - "f": "set_cri_dmg", - "g": 5, - "id": 1903619236, - "l": true, - "level": 78, - "mainStatBaseValue": 57, - "mainStatId": "uq7_armo_m", - "mainStatType": "def", - "mainStatValue": 285, - "mg": 1111, - "op": [ - [ - "def", - 57 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "p": 784315107, - "s": "9d73", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "euq7n", - "ct": 1703047131, - "e": 82031, - "f": "set_cri", - "g": 5, - "id": 1903827158, - "level": 78, - "mainStatBaseValue": 0.13, - "mainStatId": "uq7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.06 - ] - ], - "s": "e681", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "euq7w", - "ct": 1703047131, - "e": 82086, - "f": "set_cri_dmg", - "g": 5, - "id": 1903827162, - "l": true, - "level": 78, - "mainStatBaseValue": 95, - "mainStatId": "uq7_weap_m", - "mainStatType": "att", - "mainStatValue": 475, - "mg": 1111, - "op": [ - [ - "att", - 95 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "a483", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "euq7b", - "ct": 1703047132, - "e": 82086, - "f": "set_cri_dmg", - "g": 5, - "id": 1903827192, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "uq7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "p": 525461035, - "s": "e498", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "euq7r", - "ct": 1703047132, - "e": 82031, - "f": "set_cri", - "g": 5, - "id": 1903827211, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "uq7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ] - ], - "p": 659243748, - "s": "8afb", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6h_u", - "ct": 1703141661, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1906756378, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0 - ], - [ - "acc", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "att_rate", - 0.08, - "c", - "change2_att_rate_1_2" - ] - ], - "p": 494187001, - "s": "757a", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6h", - "ct": 1703141678, - "e": 82031, - "f": "set_acc", - "g": 5, - "id": 1906757106, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.03 - ] - ], - "p": 117268286, - "s": "bd7", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6a", - "ct": 1703175377, - "e": 73828, - "f": "set_speed", - "g": 4, - "id": 1908105131, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "s": "50e7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a_u", - "ct": 1703175377, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1908105139, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "def_rate", - 0.07, - "c", - "change2_def_rate_1_2" - ] - ], - "p": 894623419, - "s": "ac7c", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a_u", - "ct": 1703175406, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1908106285, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 218403497, - "s": "6abd", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eum13b", - "ct": 1703213230, - "e": 82080, - "f": "set_speed", - "g": 5, - "id": 1908937718, - "l": true, - "level": 78, - "mainStatBaseValue": 8, - "mainStatId": "um13_boot_m", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.04, - "c", - "change2_cri_dmg_1_1" - ] - ], - "p": 279573776, - "s": "13cd", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecs12a", - "ct": 1703308864, - "e": 82031, - "f": "set_cri", - "g": 5, - "id": 1913449308, - "l": true, - "level": 78, - "mainStatBaseValue": 57, - "mainStatId": "cs12_armo_m1", - "mainStatType": "def", - "mainStatValue": 285, - "mg": 1111, - "op": [ - [ - "def", - 57 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "p": 480028811, - "s": "9e29", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "exc112203", - "ct": 1703315091, - "g": 5, - "id": 1914229424, - "l": true, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "ek_c112203", - 3 - ] - ], - "s": "1da2" - }, - { - "code": "eiu21r", - "ct": 1703345070, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1918328237, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu21_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.06 - ] - ], - "s": "c163", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "exc112201", - "ct": 1703377846, - "g": 5, - "id": 1920730843, - "l": true, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "ek_c112201", - 1 - ] - ], - "s": "250a" - }, - { - "code": "ecw6a", - "ct": 1703431685, - "e": 73828, - "f": "set_speed", - "g": 4, - "id": 1927057511, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "p": 545449824, - "s": "4f20", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eah19a", - "ct": 1703484568, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1931044545, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah19_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ] - ], - "p": 207190343, - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "exc103901", - "ct": 1703485979, - "g": 5, - "id": 1931179435, - "mg": 1111, - "op": [ - [ - "cri", - 0.09 - ], - [ - "ek_c103901", - 3 - ] - ], - "s": "c296" - }, - { - "code": "exc103901", - "ct": 1703485985, - "g": 5, - "id": 1931180015, - "l": true, - "mg": 1111, - "op": [ - [ - "cri", - 0.06 - ], - [ - "ek_c103901", - 2 - ] - ], - "s": "6948" - }, - { - "code": "eih9n", - "ct": 1703486429, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 1931224415, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.08 - ] - ], - "p": 490684210, - "s": "8b0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6w", - "ct": 1703502922, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 1932781906, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 2, - "c", - "change1_speed_1_1" - ] - ], - "p": 894623419, - "s": "ca47", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6w", - "ct": 1703502922, - "e": 82143, - "f": "set_acc", - "g": 5, - "id": 1932781920, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "res", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "p": 6911147, - "s": "d27", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6h", - "ct": 1703646613, - "f": "set_cri", - "g": 5, - "id": 1940430552, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.06 - ] - ], - "s": "dd76", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6w_u", - "ct": 1703646688, - "e": 84375, - "f": "set_cri", - "g": 4, - "id": 1940434100, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "182f", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6w_u", - "ct": 1703646688, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1940434101, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "1ff2", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eah22n", - "ct": 1704069210, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 1957909968, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah22_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eal85b_u", - "ct": 1704095124, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1959203877, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08, - "c" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 150271128, - "s": "a559", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eal85r_u", - "ct": 1704177759, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1962235405, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04, - "c" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "7550", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6w_u", - "ct": 1704252274, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1964804569, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "p": 279573776, - "s": "68e3", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6w_u", - "ct": 1704254341, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1964886762, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "s": "b875", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6h_u", - "ct": 1704379061, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 1968811157, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 894623419, - "s": "943f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecd6n_u", - "ct": 1704609216, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 1982634674, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 2 - ], - [ - "speed", - 3 - ], - [ - "att", - 42 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.06 - ], - [ - "att", - 43 - ], - [ - "att_rate", - 0.04 - ], - [ - "att", - 39 - ], - [ - "speed", - 1, - "u" - ], - [ - "att", - 33, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "s": "ad05", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eiu32h", - "ct": 1704611861, - "e": 93802, - "f": "set_cri", - "g": 5, - "id": 1982871811, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu32_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "p": 549294853, - "s": "3de6", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eiu52r", - "ct": 1704616985, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1983314284, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu52_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ] - ], - "s": "bf4f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eiu11h", - "ct": 1704619286, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1983504651, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu11_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ] - ], - "p": 518421029, - "s": "cac", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eiu41a", - "ct": 1704631506, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1984528251, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu41_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.09 - ] - ], - "s": "8a4e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eih9r", - "ct": 1704631650, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 1984540949, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "imh_ring_m11", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.09 - ] - ], - "p": 28398305, - "s": "2be4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eah19w", - "ct": 1704633388, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1984695828, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah19_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.07 - ] - ], - "p": 518782830, - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eal85b_u", - "ct": 1704636015, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1984935372, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def", - 34 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "def", - 28 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "s": "9f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eal85b_u", - "ct": 1704856091, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 1992544299, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0 - ], - [ - "max_hp", - 160 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp", - 190 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.07, - "c" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "max_hp", - 112, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "2c0c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecd6a", - "ct": 1704948019, - "e": 82085, - "f": "set_torrent", - "g": 5, - "id": 1996773798, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "max_hp", - 199 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 191 - ] - ], - "s": "2b31", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6h_u", - "ct": 1704949315, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1996948269, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "res", - 0.05, - "u" - ] - ], - "p": 636577158, - "s": "cae", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecd6a", - "ct": 1705030549, - "f": "set_torrent", - "g": 5, - "id": 2002995558, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp", - 193 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ] - ], - "s": "2a5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecd6h_u", - "ct": 1705030559, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2002996261, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "49b0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6a_u", - "ct": 1705035322, - "e": 84411, - "f": "set_cri_dmg", - "g": 4, - "id": 2003362268, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "p": 48988518, - "s": "c6e3", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecb6a", - "ct": 1705038404, - "e": 9560, - "f": "set_counter", - "g": 5, - "id": 2003602517, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.05 - ] - ], - "s": "45", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecb6h_u", - "ct": 1705041755, - "e": 93804, - "f": "set_cri_dmg", - "g": 5, - "id": 2003857003, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att", - 46 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att", - 35 - ], - [ - "att", - 22, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "p": 847822619, - "s": "fc3a", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6w_u", - "ct": 1705050363, - "e": 84375, - "f": "set_res", - "g": 4, - "id": 2004501127, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "s": "1352", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecb6a_u", - "ct": 1705053072, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 2004697268, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "s": "629", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecb6w_u", - "ct": 1705071097, - "e": 93863, - "f": "set_res", - "g": 5, - "id": 2006249124, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "p": 218403497, - "s": "892c", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecb6h", - "ct": 1705071109, - "e": 82031, - "f": "set_counter", - "g": 5, - "id": 2006250341, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ] - ], - "p": 717223364, - "s": "e804", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6h", - "ct": 1705071109, - "e": 27342, - "f": "set_counter", - "g": 5, - "id": 2006250342, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.04 - ] - ], - "s": "23c1", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6w", - "ct": 1705114558, - "e": 82086, - "f": "set_cri_dmg", - "g": 5, - "id": 2008384390, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ] - ], - "s": "4a80", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eus8w", - "ct": 1705126396, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2009335986, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "un8_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.09 - ] - ], - "s": "7f6b", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eal85b_u", - "ct": 1705152618, - "e": 93750, - "f": "set_rage", - "g": 5, - "id": 2011430764, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0 - ], - [ - "cri", - 0.06, - "c" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "s": "a58b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eus8h", - "ct": 1705161253, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 2012198829, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "un8_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.09 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ] - ], - "s": "e7c2", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eus8a", - "ct": 1705213851, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2014873252, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "un8_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "res", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.09 - ] - ], - "p": 620426700, - "s": "4782", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eus8b", - "ct": 1705240177, - "e": 93861, - "f": "set_speed", - "g": 5, - "id": 2016902853, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "un8_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "cri", - 0.06 - ], - [ - "acc", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.05 - ] - ], - "p": 649028156, - "s": "1e29", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eal85r", - "ct": 1705243174, - "e": 82031, - "f": "set_penetrate", - "g": 5, - "id": 2017167572, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "al85_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "def", - 29 - ], - [ - "max_hp", - 196 - ], - [ - "max_hp", - 174 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.06 - ] - ], - "p": 48982864, - "s": "c570", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecb6r", - "ct": 1705244277, - "e": 82031, - "f": "set_res", - "g": 5, - "id": 2017265718, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "res", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "res", - 0.12 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 176 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.07 - ] - ], - "p": 403357976, - "s": "7ee0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eal85r_u", - "ct": 1705245285, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 2017356019, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "p": 798777729, - "s": "361d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecb6w_u", - "ct": 1705304460, - "e": 93804, - "f": "set_counter", - "g": 5, - "id": 2019544740, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0 - ], - [ - "max_hp_rate", - 0 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.11, - "c", - "change2_max_hp_rate_3_1" - ] - ], - "p": 717223364, - "s": "f8a2", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecb6a_u", - "ct": 1705304473, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2019545099, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "c", - "change1_cri_1_1" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 736028830, - "s": "1ea2", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eah22r", - "ct": 1705390872, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2022267621, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah22_ring_m1", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.08 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eal85n_u", - "ct": 1705391355, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2022281446, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp", - 163 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.05, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp", - 56, - "u" - ] - ], - "p": 893757497, - "s": "1287", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6h", - "ct": 1705478614, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2024850782, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "p": 306770592, - "s": "a694", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6w_u", - "ct": 1705478628, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2024851183, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 157 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 150 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp", - 112, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_2" - ] - ], - "p": 115835449, - "s": "406a", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6w", - "ct": 1705478653, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2024851848, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp", - 158 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp", - 181 - ] - ], - "s": "adb6", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecn23r", - "ct": 1705551897, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2026412395, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "wc2023_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "c683", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecs14n", - "ct": 1705552327, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2026424962, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "cs14_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ] - ], - "p": 90857803, - "s": "4705", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecb6h_u", - "ct": 1705570726, - "e": 93863, - "f": "set_vampire", - "g": 5, - "id": 2027220836, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def", - 34 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "def", - 9, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "p": 313179896, - "s": "57e5", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6h", - "ct": 1705570759, - "e": 73828, - "f": "set_vampire", - "g": 4, - "id": 2027221801, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "speed", - 4 - ], - [ - "def", - 28 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "def", - 30 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ] - ], - "s": "edf3", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6h_u", - "ct": 1705570782, - "e": 93863, - "f": "set_counter", - "g": 5, - "id": 2027222422, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "p": 360878989, - "s": "fc4a", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6r", - "ct": 1705893640, - "e": 19239, - "f": "set_speed", - "g": 5, - "id": 2038111401, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "att", - 39 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.08 - ] - ], - "s": "f1a1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6b_u", - "ct": 1705903493, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 2038874253, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "b090", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6h", - "ct": 1706000509, - "e": 3964, - "f": "set_speed", - "g": 5, - "id": 2043861084, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "att", - 44 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "att", - 38 - ] - ], - "p": 360502881, - "s": "5e9d", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6w_u", - "ct": 1706001487, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 2043892879, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att_rate", - 0.05, - "u" - ] - ], - "s": "37cf", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eal85b_u", - "ct": 1706162050, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 2048932715, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp", - 166 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp", - 192 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "p": 549294853, - "s": "3a88", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eah22b", - "ct": 1706235521, - "e": 93803, - "f": "set_immune", - "g": 5, - "id": 2051113296, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah22_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ] - ], - "p": 713583798, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6b_u", - "ct": 1706353874, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2055869382, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "res", - 0.08, - "c", - "change2_res_1_2" - ] - ], - "p": 110838566, - "s": "62af", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eal85b_u", - "ct": 1706378560, - "e": 93803, - "f": "set_speed", - "g": 5, - "id": 2057530391, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ] - ], - "s": "53c2", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6a", - "ct": 1706414991, - "e": 82031, - "f": "set_cri", - "g": 5, - "id": 2058772361, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.04 - ] - ], - "s": "4f6a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eal85b_u", - "ct": 1706415536, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 2058805133, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05, - "c" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "f3dc", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6w", - "ct": 1706441913, - "f": "set_acc", - "g": 4, - "id": 2060434624, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "p": 522853044, - "s": "be10", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6a_u", - "ct": 1706541353, - "e": 93802, - "f": "set_cri", - "g": 5, - "id": 2064216941, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "10e6", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6w", - "ct": 1706541435, - "e": 82144, - "f": "set_speed", - "g": 5, - "id": 2064220982, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "p": 403357976, - "s": "f782", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6h", - "ct": 1706620357, - "f": "set_cri", - "g": 5, - "id": 2066291963, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "d519", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6h", - "ct": 1706620525, - "e": 82085, - "f": "set_cri", - "g": 5, - "id": 2066298537, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04 - ] - ], - "s": "6589", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6w_u", - "ct": 1706620599, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2066301482, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "p": 389494760, - "s": "b666", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecb6b", - "ct": 1706657162, - "e": 82031, - "f": "set_vampire", - "g": 5, - "id": 2067112315, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "cri", - 0.05 - ], - [ - "def", - 33 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "def", - 31 - ], - [ - "def", - 32 - ] - ], - "p": 313179896, - "s": "74e9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eiu21a", - "ct": 1706684102, - "e": 2332, - "f": "set_vampire", - "g": 5, - "id": 2067869313, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu21_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.08 - ] - ], - "s": "55f6", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eiu21n", - "ct": 1706778716, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2071394636, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "iu21_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ] - ], - "p": 591089796, - "s": "1f1f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ess13n", - "ct": 1706780572, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2071559998, - "l": true, - "level": 78, - "mainStatBaseValue": 0.13, - "mainStatId": "ss13_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ] - ], - "s": "7337", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eus8n", - "ct": 1706889460, - "e": 93860, - "f": "set_speed", - "g": 5, - "id": 2078298748, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "un8_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 3 - ] - ], - "s": "fc05", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eus8r", - "ct": 1706892248, - "e": 93861, - "f": "set_speed", - "g": 5, - "id": 2078474272, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "un8_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 3 - ] - ], - "p": 596366779, - "s": "ad26", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eiu12b", - "ct": 1706925455, - "f": "set_shield", - "g": 5, - "id": 2079299987, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "iu12_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ] - ], - "s": "e3a1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eal85b_u", - "ct": 1707100081, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2084745648, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "def_rate", - 0 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.07, - "u" - ], - [ - "def_rate", - 0.07, - "c", - "change2_def_rate_1_1" - ] - ], - "s": "2ccb", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eah22a", - "ct": 1707290467, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2089731577, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah22_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.05 - ] - ], - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eot3n_u3", - "ct": 1707293465, - "e": 93750, - "f": "set_att", - "g": 5, - "id": 2089861086, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ot3u_neck_m3", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "def", - 35 - ], - [ - "cri", - 0.06 - ], - [ - "def", - 32 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "def", - 36 - ], - [ - "att_rate", - 0.08 - ] - ], - "s": "990e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eot3r_u1", - "ct": 1707293472, - "f": "set_att", - "g": 5, - "id": 2089861315, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def", - 36 - ] - ], - "s": "eab", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "exc206201", - "ct": 1707467590, - "g": 5, - "id": 2095902029, - "l": true, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "ek_c206201", - 2 - ] - ], - "s": "caa2" - }, - { - "code": "exc206201", - "ct": 1707467595, - "g": 5, - "id": 2095902430, - "l": true, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "ek_c206201", - 3 - ] - ], - "p": 566472035, - "s": "6728" - }, - { - "code": "ecw6a_u", - "ct": 1707487214, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2097373980, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "s": "bac1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a", - "ct": 1707493083, - "f": "set_speed", - "g": 5, - "id": 2097839766, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp", - 188 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "p": 568417281, - "s": "a73f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6h_u", - "ct": 1707493091, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2097840413, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "def", - 29 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "def", - 32 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 559859822, - "s": "c2a1", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6a_u", - "ct": 1707570325, - "e": 93862, - "f": "set_cri", - "g": 5, - "id": 2102818293, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "s": "91f3", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a_u", - "ct": 1707579459, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2103561103, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 3, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "dc70", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a", - "ct": 1707582380, - "f": "set_acc", - "g": 5, - "id": 2103767124, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp", - 164 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.03 - ] - ], - "p": 323638178, - "s": "2ec1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6r", - "ct": 1707585479, - "f": "set_acc", - "g": 4, - "id": 2103945239, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "acc", - 0.12 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp", - 179 - ] - ], - "p": 360502881, - "s": "edff", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6w", - "ct": 1707595052, - "e": 1865, - "f": "set_speed", - "g": 4, - "id": 2104279288, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.05 - ] - ], - "p": 545449824, - "s": "d700", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6a", - "ct": 1707634837, - "e": 12476, - "f": "set_speed", - "g": 5, - "id": 2106228453, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.05 - ] - ], - "s": "9df3", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecd6w_u", - "ct": 1707730599, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2110924322, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 326831592, - "s": "35f3", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecd6b", - "ct": 1707831482, - "f": "set_scar", - "g": 4, - "id": 2114759155, - "level": 85, - "mainStatBaseValue": 8, - "mainStatId": "cra6_boot_m", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att", - 41 - ], - [ - "def_rate", - 0.07 - ] - ], - "p": 545449824, - "s": "2be3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6w_u", - "ct": 1707984836, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2121257472, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 793619248, - "s": "ef9c", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6b_u", - "ct": 1707986961, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2121373185, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.09, - "c", - "change2_cri_dmg_2_2" - ] - ], - "p": 583954927, - "s": "ad1e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eot3r_u1", - "ct": 1707988277, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2121441876, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "att", - 38 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "p": 96079748, - "s": "be42", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6h", - "ct": 1708148701, - "f": "set_speed", - "g": 4, - "id": 2126739471, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.08 - ] - ], - "p": 627243561, - "s": "6d3a", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6w", - "ct": 1708148770, - "e": 1982, - "f": "set_acc", - "g": 5, - "id": 2126741481, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ] - ], - "p": 360502881, - "s": "3b96", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6a", - "ct": 1708148803, - "f": "set_speed", - "g": 5, - "id": 2126742492, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.05 - ] - ], - "p": 360502881, - "s": "a309", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6h_u", - "ct": 1708148813, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2126742800, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 590699704, - "s": "3a6", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ela8n", - "ct": 1708488110, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2135372005, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la8_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.08 - ] - ], - "p": 899011010, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ela8b", - "ct": 1708594531, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 2139237574, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "la8_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ] - ], - "p": 218403497, - "s": "c625", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ela8a", - "ct": 1708699865, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2142093452, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "la8_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.09 - ], - [ - "res", - 0.07 - ] - ], - "p": 389494760, - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eah22h", - "ct": 1708700141, - "e": 93863, - "f": "set_immune", - "g": 5, - "id": 2142102830, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah22_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.09 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.06 - ] - ], - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6w_u", - "ct": 1708835823, - "e": 84471, - "f": "set_speed", - "g": 4, - "id": 2149094317, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 2, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "77d8", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6w", - "ct": 1708836357, - "e": 73828, - "f": "set_cri", - "g": 4, - "id": 2149133295, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ] - ], - "s": "1a8", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6r", - "ct": 1708836571, - "e": 82031, - "f": "set_acc", - "g": 5, - "id": 2149149204, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "res", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "res", - 0.12 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.03 - ] - ], - "s": "b2bf", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6w_u", - "ct": 1708849487, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2150114260, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "6983", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6a", - "ct": 1708854407, - "e": 73982, - "f": "set_speed", - "g": 4, - "id": 2150481857, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp", - 181 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 172 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "15bc", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ela8w", - "ct": 1708858417, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2150775127, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "la8_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "max_hp", - 0 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 183, - "c", - "change2_max_hp_1_2" - ] - ], - "p": 739641017, - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6w_u", - "ct": 1708858507, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2150781870, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 518421029, - "s": "2e53", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eiu32w", - "ct": 1708869824, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2151692442, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu32_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "2197", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6a", - "ct": 1708870404, - "e": 82031, - "f": "set_acc", - "g": 5, - "id": 2151743407, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "b5bb", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6w", - "ct": 1708872038, - "e": 39993, - "f": "set_acc", - "g": 5, - "id": 2151884103, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "6e87", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6w_u", - "ct": 1708872272, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 2151903486, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "s": "ba01", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6b_u", - "ct": 1708873580, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2152014884, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.11, - "c" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ] - ], - "p": 21884461, - "s": "dcc0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eal85b_u", - "ct": 1708918581, - "e": 93863, - "f": "set_speed", - "g": 5, - "id": 2153414067, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp", - 0 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp", - 0 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "max_hp", - 112, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp", - 309, - "c", - "change2_max_hp_2_2" - ] - ], - "p": 899011010, - "s": "baf4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6n", - "ct": 1708935431, - "e": 73922, - "f": "set_speed", - "g": 4, - "id": 2154045784, - "l": true, - "level": 85, - "mainStatBaseValue": 0.11, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.55, - "mg": 1111, - "op": [ - [ - "cri", - 0.11 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 2 - ] - ], - "s": "da64", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6w_u", - "ct": 1709015810, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2156211616, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 0, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 3, - "c", - "change2_speed_1_2" - ] - ], - "s": "6566", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eih9n", - "ct": 1709016391, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2156226369, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ] - ], - "p": 618609916, - "s": "2f74", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ela8r", - "ct": 1709021074, - "e": 93862, - "f": "set_max_hp", - "g": 5, - "id": 2156341348, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la8_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.07 - ] - ], - "p": 893757497, - "s": "35eb", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecs15w", - "ct": 1709198551, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2159926269, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "cs15_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.06 - ] - ], - "p": 110838566, - "s": "aea6", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eih4h", - "ct": 1709214188, - "e": 3498, - "f": "set_def", - "g": 5, - "id": 2160337152, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "imh_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.05 - ] - ], - "s": "3efb", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eal85n_u", - "ct": 1709274459, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2161464314, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "3f41", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ela8h", - "ct": 1709366505, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 2163380815, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "la8_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.09 - ] - ], - "p": 713631381, - "s": "82d1", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "exc202001", - "ct": 1709712739, - "g": 5, - "id": 2171220621, - "mg": 1111, - "op": [ - [ - "speed", - 10 - ], - [ - "ek_c202001", - 3 - ] - ], - "s": "a480" - }, - { - "code": "exc202001", - "ct": 1709712752, - "g": 5, - "id": 2171220939, - "mg": 1111, - "op": [ - [ - "speed", - 10 - ], - [ - "ek_c202001", - 1 - ] - ], - "s": "2094" - }, - { - "code": "exc202001", - "ct": 1709712936, - "g": 5, - "id": 2171224959, - "l": true, - "mg": 1111, - "op": [ - [ - "speed", - 10 - ], - [ - "ek_c202001", - 2 - ] - ], - "p": 562155721, - "s": "290a" - }, - { - "code": "ecw6a", - "ct": 1709889907, - "e": 73922, - "f": "set_speed", - "g": 4, - "id": 2176808434, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 1 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "dec7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6w_u", - "ct": 1709890142, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2176821438, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "p": 713631381, - "s": "7840", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecq6b", - "ct": 1709952472, - "f": "set_coop", - "g": 5, - "id": 2179311086, - "l": true, - "level": 85, - "mainStatBaseValue": 8, - "mainStatId": "cra6_boot_m", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "att_rate", - 0.06 - ] - ], - "s": "8c35", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eiu32h", - "ct": 1709988234, - "e": 93862, - "f": "set_cri", - "g": 5, - "id": 2180478765, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu32_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.04 - ] - ], - "p": 115835449, - "s": "7e2c", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6r_u", - "ct": 1710049208, - "e": 93863, - "f": "set_acc", - "g": 5, - "id": 2182640389, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "acc", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 590699704, - "s": "247", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6h", - "ct": 1710054409, - "e": 73828, - "f": "set_acc", - "g": 4, - "id": 2183027208, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "s": "8d48", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6w_u", - "ct": 1710056355, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2183176619, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "p": 225876663, - "s": "4bc9", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6h", - "ct": 1710072742, - "e": 73924, - "f": "set_acc", - "g": 4, - "id": 2184381870, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "speed", - 3 - ], - [ - "att", - 35 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "att", - 39 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.04 - ], - [ - "att", - 42 - ] - ], - "p": 323638178, - "s": "c78", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6h", - "ct": 1710081673, - "f": "set_speed", - "g": 4, - "id": 2185097428, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.08 - ] - ], - "p": 440334191, - "s": "3662", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6r_u", - "ct": 1710082271, - "e": 84375, - "f": "set_acc", - "g": 4, - "id": 2185148258, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "acc", - 0.13, - null, - null, - 0 - ], - [ - "def", - 30 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0 - ], - [ - "def", - 9, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.11, - "c", - "change2_max_hp_rate_2_2" - ] - ], - "p": 403476926, - "s": "52a4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6h_u", - "ct": 1710125285, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2186430690, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ] - ], - "p": 769932771, - "s": "cb87", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6h_u", - "ct": 1710125326, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2186431865, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "p": 899011010, - "s": "55c3", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6w", - "ct": 1710126616, - "e": 18655, - "f": "set_speed", - "g": 5, - "id": 2186466517, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.05 - ] - ], - "p": 440334191, - "s": "3a5", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecs11r", - "ct": 1710463521, - "e": 93861, - "f": "set_max_hp", - "g": 5, - "id": 2194259314, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "cs11_ring_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.07 - ] - ], - "p": 226377978, - "s": "5794", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eot3r_u4", - "ct": 1710507219, - "e": 91773, - "f": "set_vampire", - "g": 5, - "id": 2196695880, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_ring_m4", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def", - 33 - ], - [ - "def", - 35 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.07 - ] - ], - "s": "22e8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecb6a", - "ct": 1710765143, - "e": 3964, - "f": "set_counter", - "g": 5, - "id": 2208228998, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.03 - ] - ], - "s": "28f8", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecb6b_u", - "ct": 1710768062, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2208462837, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp", - 0 - ], - [ - "def", - 29 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "def", - 28 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp", - 160, - "c", - "change2_max_hp_1_1" - ] - ], - "p": 893757497, - "s": "d4a2", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecb6h", - "ct": 1710812221, - "e": 1982, - "f": "set_cri_dmg", - "g": 5, - "id": 2210102316, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "75b9", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6w_u", - "ct": 1710812279, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2210103803, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_1" - ] - ], - "p": 11185757, - "s": "3b71", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecb6a_u", - "ct": 1710812307, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 2210104511, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "p": 568689715, - "s": "9e27", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecb6a", - "ct": 1710812307, - "e": 73828, - "f": "set_vampire", - "g": 4, - "id": 2210104515, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 159 - ], - [ - "cri", - 0.04 - ] - ], - "s": "32f0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecb6w", - "ct": 1710812698, - "e": 73828, - "f": "set_res", - "g": 4, - "id": 2210115802, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.03 - ] - ], - "s": "696b", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecb6h", - "ct": 1710897942, - "e": 6704, - "f": "set_vampire", - "g": 5, - "id": 2212150491, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def", - 33 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.03 - ] - ], - "s": "ef25", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eal85n_u", - "ct": 1711087559, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2216419210, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "res", - 0 - ], - [ - "def", - 31 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "res", - 0 - ], - [ - "def", - 32 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "res", - 0.1, - "c", - "change2_res_2_2" - ] - ], - "s": "99e1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eal85n", - "ct": 1711088204, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2216442796, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "al85_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "att_rate", - 0.05 - ], - [ - "att", - 34 - ], - [ - "max_hp", - 163 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "att", - 33 - ], - [ - "max_hp", - 196 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp", - 189 - ] - ], - "p": 166490, - "s": "e1b7", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecb6a", - "ct": 1711340064, - "e": 73828, - "f": "set_counter", - "g": 4, - "id": 2224920636, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.06 - ] - ], - "s": "6003", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecb6a", - "ct": 1711356508, - "e": 2973, - "f": "set_vampire", - "g": 5, - "id": 2225731924, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "s": "5f92", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecb6w", - "ct": 1711368370, - "e": 73923, - "f": "set_vampire", - "g": 4, - "id": 2226334464, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.08 - ] - ], - "s": "811e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecb6a", - "ct": 1711425671, - "e": 82031, - "f": "set_vampire", - "g": 5, - "id": 2228126615, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.07 - ] - ], - "s": "60b4", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecb6a_u", - "ct": 1711425706, - "e": 84375, - "f": "set_res", - "g": 4, - "id": 2228127402, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 713631381, - "s": "4541", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eiu12b", - "ct": 1711460956, - "f": "set_shield", - "g": 5, - "id": 2228948935, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "iu12_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ] - ], - "s": "d956", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eih6r", - "ct": 1711524757, - "e": 93862, - "f": "set_immune", - "g": 5, - "id": 2230045201, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "imh_ring_m3", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.05 - ] - ], - "s": "8c17", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eiu51b", - "ct": 1711524757, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2230045203, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "iu51_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.09 - ], - [ - "acc", - 0.06 - ] - ], - "s": "2f25", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eiu22a", - "ct": 1711631354, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2232095205, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu22_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.06 - ] - ], - "p": 847822619, - "s": "fddd", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eih9r", - "ct": 1711631477, - "e": 93920, - "f": "set_res", - "g": 5, - "id": 2232099646, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "imh_ring_m11", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.09 - ], - [ - "speed", - 4 - ] - ], - "p": 636577158, - "s": "a953", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecb6a_u", - "ct": 1711681401, - "e": 93862, - "f": "set_counter", - "g": 5, - "id": 2233107404, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "d6ee", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecb6a_u", - "ct": 1711681457, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 2233108959, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "s": "b2c1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecb6a_u", - "ct": 1711681520, - "e": 84375, - "f": "set_res", - "g": 4, - "id": 2233110737, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "p": 28398305, - "s": "6e31", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "exc109101", - "ct": 1711857997, - "g": 5, - "id": 2237102003, - "l": true, - "mg": 1111, - "op": [ - [ - "res", - 0.09 - ], - [ - "ek_c109101", - 2 - ] - ], - "p": 636577158, - "s": "6340" - }, - { - "code": "eal85n_u", - "ct": 1711858473, - "e": 93863, - "f": "set_counter", - "g": 5, - "id": 2237115399, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "5465", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "exc110101", - "ct": 1711859192, - "g": 5, - "id": 2237136940, - "l": true, - "mg": 1111, - "op": [ - [ - "speed", - 7 - ], - [ - "ek_c110101", - 1 - ] - ], - "p": 568689715, - "s": "a6cf" - }, - { - "code": "exc110101", - "ct": 1711859199, - "g": 5, - "id": 2237137145, - "l": true, - "mg": 1111, - "op": [ - [ - "speed", - 10 - ], - [ - "ek_c110101", - 3 - ] - ], - "s": "f9bf" - }, - { - "code": "ecb6w_u", - "ct": 1711934480, - "e": 93862, - "f": "set_res", - "g": 5, - "id": 2238763993, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.04, - "u" - ] - ], - "p": 6885517, - "s": "1c49", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecb6h", - "ct": 1711934480, - "e": 3964, - "f": "set_vampire", - "g": 5, - "id": 2238763994, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "att", - 43 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ] - ], - "s": "cd1", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eal85n_u", - "ct": 1711943062, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2238992507, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "att_rate", - 0.07, - "u" - ] - ], - "s": "8141", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eiu41a", - "ct": 1711961614, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 2239472709, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu41_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.09 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "p": 559859824, - "s": "f7c", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eah22w", - "ct": 1712021329, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2240779763, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah22_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.09 - ] - ], - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eal85b_u", - "ct": 1712314770, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2249488507, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.04, - "c" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "p": 704271358, - "s": "bb5d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecg6a", - "ct": 1712451845, - "e": 9852, - "f": "set_shield", - "g": 5, - "id": 2253346580, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "a51", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eal85r_u", - "ct": 1712542817, - "e": 93862, - "f": "set_cri_dmg", - "g": 5, - "id": 2257469979, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0 - ], - [ - "cri_dmg", - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.12, - "c", - "change2_cri_dmg_3_2" - ] - ], - "p": 591089796, - "s": "2c24", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "exc109101", - "ct": 1712548564, - "g": 5, - "id": 2257774540, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "ek_c109101", - 3 - ] - ], - "s": "5220" - }, - { - "code": "exc109101", - "ct": 1712548644, - "g": 5, - "id": 2257778861, - "l": true, - "mg": 1111, - "op": [ - [ - "res", - 0.16 - ], - [ - "ek_c109101", - 1 - ] - ], - "s": "8f1f" - }, - { - "code": "eal85b_u", - "ct": 1712736647, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2263136846, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "def", - 32 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "def", - 9, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "4378", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6b_u", - "ct": 1712892905, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 2265984311, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att", - 38 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "s": "44b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eah21r", - "ct": 1713025254, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2268832536, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah21_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ] - ], - "p": 899521626, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eal85n_u", - "ct": 1713147840, - "e": 93803, - "f": "set_vampire", - "g": 5, - "id": 2271281400, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri", - 0.06, - "c", - "change2_cri_2_1" - ] - ], - "s": "707a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eah23n", - "ct": 1713776806, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 2284288170, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ah23_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.05 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "exc112901", - "ct": 1714034144, - "g": 5, - "id": 2289973254, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "ek_c112901", - 3 - ] - ], - "s": "a6c4" - }, - { - "code": "exc112901", - "ct": 1714034148, - "g": 5, - "id": 2289973428, - "mg": 1111, - "op": [ - [ - "res", - 0.14 - ], - [ - "ek_c112901", - 3 - ] - ], - "s": "7c80" - }, - { - "code": "exc112901", - "ct": 1714034151, - "g": 5, - "id": 2289973579, - "mg": 1111, - "op": [ - [ - "res", - 0.12 - ], - [ - "ek_c112901", - 1 - ] - ], - "s": "3cad" - }, - { - "code": "exc112901", - "ct": 1714034156, - "g": 5, - "id": 2289973699, - "mg": 1111, - "op": [ - [ - "res", - 0.15 - ], - [ - "ek_c112901", - 3 - ] - ], - "p": 48988520, - "s": "51c4" - }, - { - "code": "exc112901", - "ct": 1714034168, - "g": 5, - "id": 2289974253, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "ek_c112901", - 2 - ] - ], - "s": "8191" - }, - { - "code": "ecs5w", - "ct": 1714049426, - "f": "set_scar", - "g": 5, - "id": 2290581263, - "l": true, - "level": 78, - "mainStatBaseValue": 95, - "mainStatId": "cs5_weap_m1", - "mainStatType": "att", - "mainStatValue": 475, - "mg": 1111, - "op": [ - [ - "att", - 95 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.07 - ] - ], - "s": "c0ca", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eiu21r", - "ct": 1714122430, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2292196268, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu21_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.06 - ] - ], - "p": 350226992, - "s": "3b64", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecb6n_u", - "ct": 1714231161, - "e": 84375, - "f": "set_res", - "g": 4, - "id": 2296597756, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.06, - "c", - "change2_max_hp_rate_1_1" - ] - ], - "s": "e075", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eep_w", - "ct": 1714284409, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2298865302, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ep_weapon_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp", - 188 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp", - 196 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp", - 178 - ], - [ - "max_hp", - 202 - ] - ], - "s": "2add", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eep_a", - "ct": 1714284422, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 2298866017, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ep_armor_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 3 - ] - ], - "p": 279573776, - "s": "6db7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eep_n", - "ct": 1714284436, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2298866778, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ep_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "att", - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "att", - 43, - "c", - "change2_att_1_2" - ] - ], - "p": 518782830, - "s": "b7b8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eal85n_u", - "ct": 1714284692, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2298881181, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "p": 6885517, - "s": "aa0f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eiu52r", - "ct": 1714293950, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 2299390917, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu52_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "edab", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eih9n", - "ct": 1714294051, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2299396303, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ] - ], - "p": 568689715, - "s": "b570", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eal85n_u", - "ct": 1714295058, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2299448611, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "res", - 0 - ], - [ - "speed", - 2 - ], - [ - "att", - 34 - ], - [ - "att_rate", - 0.07 - ], - [ - "att", - 37 - ], - [ - "att", - 41 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "res", - 0 - ], - [ - "res", - 0.1, - "c" - ], - [ - "res", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "att", - 33, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "p": 49161666, - "s": "e0c1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eiu31n", - "ct": 1714357889, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 2302140953, - "l": true, - "level": 88, - "mainStatBaseValue": 0.12, - "mainStatId": "iu31_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "s": "ba6c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6a_u", - "ct": 1714372187, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2302877324, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ] - ], - "s": "25b2", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a", - "ct": 1714372449, - "f": "set_acc", - "g": 5, - "id": 2302890195, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0.07 - ] - ], - "s": "f6eb", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a_u", - "ct": 1714372535, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2302894522, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.07, - "c", - "change2_max_hp_rate_1_2" - ] - ], - "p": 403476926, - "s": "9a31", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a", - "ct": 1714372736, - "e": 73828, - "f": "set_speed", - "g": 4, - "id": 2302903744, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.04 - ] - ], - "s": "f38b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a", - "ct": 1714372736, - "e": 73863, - "f": "set_cri", - "g": 4, - "id": 2302903748, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.08 - ] - ], - "s": "a5d7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a", - "ct": 1714372767, - "f": "set_speed", - "g": 5, - "id": 2302905160, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp", - 165 - ], - [ - "max_hp_rate", - 0.04 - ] - ], - "p": 440334191, - "s": "a10b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a_u", - "ct": 1714372767, - "e": 84375, - "f": "set_acc", - "g": 4, - "id": 2302905165, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 184 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 559859822, - "s": "9502", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a", - "ct": 1714372794, - "e": 82031, - "f": "set_acc", - "g": 5, - "id": 2302906497, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ] - ], - "s": "be91", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a_u", - "ct": 1714372845, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 2302908784, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "p": 350226992, - "s": "ac27", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a_u", - "ct": 1714372977, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 2302915221, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 1, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "38c2", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eal85b_u", - "ct": 1714654886, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2313852169, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "def", - 30 - ], - [ - "max_hp", - 191 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp", - 166 - ], - [ - "max_hp", - 187 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp", - 196 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "def", - 9, - "u" - ], - [ - "max_hp", - 224, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 739641017, - "s": "ea97", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eal85b_u", - "ct": 1714654912, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 2313853560, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att", - 38 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp", - 193 - ], - [ - "max_hp", - 201 - ], - [ - "att", - 39 - ], - [ - "att", - 46 - ], - [ - "max_hp", - 200 - ], - [ - "max_hp", - 161 - ], - [ - "att", - 33, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp", - 224, - "u" - ] - ], - "p": 898971885, - "s": "bd02", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecb6a", - "ct": 1714656508, - "e": 1982, - "f": "set_cri_dmg", - "g": 5, - "id": 2313936220, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "p": 28393107, - "s": "2ec5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6h", - "ct": 1714795035, - "e": 73828, - "f": "set_acc", - "g": 4, - "id": 2319231336, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "6835", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6h_u", - "ct": 1714795035, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2319231341, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 166490, - "s": "78f9", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6h_u", - "ct": 1714795252, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2319240618, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.05, - "c", - "change2_cri_2_1" - ] - ], - "s": "15d9", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eiu41a", - "ct": 1714803060, - "e": 93862, - "f": "set_counter", - "g": 5, - "id": 2319570044, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu41_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.07 - ] - ], - "s": "9091", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6h_u", - "ct": 1714869304, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 2321814545, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 3, - "c" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "1b53", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eah23r", - "ct": 1715070139, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 2327785535, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah23_ring_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.09 - ], - [ - "att_rate", - 0.05 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "exc101401", - "ct": 1715132984, - "g": 5, - "id": 2329599513, - "mg": 1111, - "op": [ - [ - "acc", - 0.13 - ], - [ - "ek_c101401", - 1 - ] - ], - "s": "4567" - }, - { - "code": "exc101401", - "ct": 1715132991, - "g": 5, - "id": 2329599688, - "mg": 1111, - "op": [ - [ - "acc", - 0.15 - ], - [ - "ek_c101401", - 1 - ] - ], - "s": "ee39" - }, - { - "code": "exc101401", - "ct": 1715132995, - "g": 5, - "id": 2329599856, - "mg": 1111, - "op": [ - [ - "acc", - 0.14 - ], - [ - "ek_c101401", - 1 - ] - ], - "s": "f8e7" - }, - { - "code": "exc101401", - "ct": 1715133007, - "g": 5, - "id": 2329600327, - "mg": 1111, - "op": [ - [ - "acc", - 0.11 - ], - [ - "ek_c101401", - 2 - ] - ], - "s": "6cb0" - }, - { - "code": "exc101401", - "ct": 1715133011, - "g": 5, - "id": 2329600465, - "mg": 1111, - "op": [ - [ - "acc", - 0.15 - ], - [ - "ek_c101401", - 3 - ] - ], - "p": 440334191, - "s": "7461" - }, - { - "code": "ecs16n", - "ct": 1715325668, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 2335875526, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "cs16_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.09 - ] - ], - "p": 110853212, - "s": "23e3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecd6b", - "ct": 1715333083, - "e": 1982, - "f": "set_penetrate", - "g": 5, - "id": 2336073694, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_boot_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ] - ], - "s": "8fb7", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecd6w_u", - "ct": 1715349307, - "e": 93805, - "f": "set_penetrate", - "g": 5, - "id": 2336602419, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 736028830, - "s": "f6b2", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6a", - "ct": 1715351899, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2336706788, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ] - ], - "s": "fe32", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a_u", - "ct": 1715351924, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2336707733, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 0 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 0 - ], - [ - "speed", - 4, - "c" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "p": 306770592, - "s": "ffba", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6r", - "ct": 1715396094, - "e": 9852, - "f": "set_speed", - "g": 5, - "id": 2338046039, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "def", - 28 - ], - [ - "acc", - 0.06 - ], - [ - "att_rate", - 0.04 - ], - [ - "def", - 29 - ] - ], - "s": "6216", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eiu52w", - "ct": 1715409594, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2338606438, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu52_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ] - ], - "p": 354206748, - "s": "1f9e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eiu21h", - "ct": 1715413306, - "e": 3498, - "f": "set_res", - "g": 5, - "id": 2338748442, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu21_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "15fd", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eiu11b", - "ct": 1715416248, - "e": 35679, - "f": "set_def", - "g": 5, - "id": 2338856716, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu11_boot_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.03 - ] - ], - "s": "b8b0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecd6r", - "ct": 1715435678, - "f": "set_penetrate", - "g": 5, - "id": 2339655257, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "acc", - 0.12 - ], - [ - "att", - 42 - ], - [ - "res", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "p": 440334191, - "s": "5278", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecd6a", - "ct": 1715440165, - "e": 6996, - "f": "set_penetrate", - "g": 5, - "id": 2339877851, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.06 - ] - ], - "s": "9572", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6n", - "ct": 1715613061, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2345668837, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ] - ], - "s": "c071", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6a_u", - "ct": 1715615453, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2345753123, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "fdfe", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6b_u", - "ct": 1715697730, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2347798000, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "att", - 39 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "p": 892353109, - "s": "249b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eal85b_u", - "ct": 1715740101, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2348733488, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "p": 897188455, - "s": "7a14", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecs16h", - "ct": 1715935840, - "e": 82143, - "f": "set_cri", - "g": 5, - "id": 2353346116, - "l": true, - "level": 78, - "mainStatBaseValue": 513, - "mainStatId": "cs16_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2565, - "mg": 1111, - "op": [ - [ - "max_hp", - 513 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.05 - ] - ], - "s": "3939", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "exc203501", - "ct": 1715936014, - "g": 5, - "id": 2353349957, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "ek_c203501", - 1 - ] - ], - "p": 604874070, - "s": "af06" - }, - { - "code": "exc203501", - "ct": 1715936017, - "g": 5, - "id": 2353350030, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.1 - ], - [ - "ek_c203501", - 3 - ] - ], - "s": "41e6" - }, - { - "code": "exc203501", - "ct": 1715936023, - "g": 5, - "id": 2353350162, - "l": true, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.11 - ], - [ - "ek_c203501", - 2 - ] - ], - "s": "5291" - }, - { - "code": "ecw6r", - "ct": 1716017682, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2355528955, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "def", - 32 - ], - [ - "res", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.04 - ] - ], - "s": "f079", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6b_u", - "ct": 1716017699, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 2355529586, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "p": 225876663, - "s": "4302", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eih9n", - "ct": 1716102374, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2358228066, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 4 - ] - ], - "p": 350226992, - "s": "2207", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eih6w", - "ct": 1716102377, - "e": 93861, - "f": "set_speed", - "g": 5, - "id": 2358228155, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "imh_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "p": 241191727, - "s": "86b5", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6a", - "ct": 1716176034, - "e": 2973, - "f": "set_speed", - "g": 5, - "id": 2360180905, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp", - 186 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.04 - ] - ], - "p": 627243561, - "s": "8acc", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6r", - "ct": 1716791646, - "f": "set_speed", - "g": 5, - "id": 2374695794, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp", - 194 - ] - ], - "p": 627243561, - "s": "9b0e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6n_u", - "ct": 1716823981, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2375949179, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "def", - 32 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.05 - ], - [ - "def", - 34 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ] - ], - "p": 559859822, - "s": "d8f4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6w_u", - "ct": 1716963954, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 2379388704, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.1, - "c" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 583954927, - "s": "25b3", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6h", - "ct": 1716982540, - "e": 73922, - "f": "set_speed", - "g": 4, - "id": 2379804268, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "def", - 28 - ], - [ - "acc", - 0.07 - ] - ], - "s": "c39e", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ela9b", - "ct": 1717033015, - "e": 93863, - "f": "set_acc", - "g": 5, - "id": 2381087442, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "la9_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "att_rate", - 0.06 - ] - ], - "p": 313109293, - "s": "bf1f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ela9n", - "ct": 1717033038, - "e": 93804, - "f": "set_torrent", - "g": 5, - "id": 2381088269, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "la9_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.07 - ] - ], - "p": 11185757, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ela9w", - "ct": 1717126810, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2384321147, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "la9_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ] - ], - "p": 897188455, - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eal85b_u", - "ct": 1717292946, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 2389222320, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.04 - ], - [ - "cri", - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_1" - ] - ], - "p": 110853212, - "s": "df4a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eot3r_u4", - "ct": 1717293099, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2389227867, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_ring_m4", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ] - ], - "s": "1ce9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eot3n_u1", - "ct": 1717313918, - "e": 26118, - "f": "set_rage", - "g": 5, - "id": 2389962315, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_neck_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "s": "443a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ela9r", - "ct": 1717381132, - "e": 93862, - "f": "set_penetrate", - "g": 5, - "id": 2391749502, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la9_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ] - ], - "p": 736028830, - "s": "980b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ela9a", - "ct": 1717465891, - "e": 93804, - "f": "set_acc", - "g": 5, - "id": 2393491274, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "la9_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.09 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.08 - ] - ], - "p": 21884461, - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ewb1a", - "ct": 1717580352, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2395265189, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "wb1_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "p": 793619248, - "s": "e096", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6w_u", - "ct": 1717645802, - "e": 93863, - "f": "set_speed", - "g": 5, - "id": 2397005545, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "p": 713583798, - "s": "9f03", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ela9h", - "ct": 1717651578, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2397281783, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "la9_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_2" - ] - ], - "s": "8739", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eiu32w", - "ct": 1717741955, - "e": 10727, - "f": "set_acc", - "g": 5, - "id": 2399461241, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu32_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "att_rate", - 0.06 - ] - ], - "s": "a351", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6a_u", - "ct": 1717814960, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2401205762, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "p": 590699704, - "s": "bb94", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a_u", - "ct": 1717817895, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2401323560, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "p": 326831592, - "s": "257a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eiu21h", - "ct": 1717824156, - "e": 46173, - "f": "set_res", - "g": 5, - "id": 2401581262, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu21_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ] - ], - "s": "7828", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecd6a_u", - "ct": 1717833500, - "e": 93804, - "f": "set_torrent", - "g": 5, - "id": 2401942133, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "7d95", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6w_u", - "ct": 1717835283, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2402010097, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "s": "e35e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6w_u", - "ct": 1717835294, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 2402010455, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "acc", - 0.06 - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "p": 494187001, - "s": "7b6c", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6a", - "ct": 1717835315, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2402011272, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp", - 201 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 192 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "7ff6", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6n", - "ct": 1717835322, - "e": 1982, - "f": "set_speed", - "g": 5, - "id": 2402011498, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.08 - ] - ], - "s": "6109", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6h_u", - "ct": 1718024331, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2408627998, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ] - ], - "s": "2fc1", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eot3r_u1", - "ct": 1718371449, - "e": 20287, - "f": "set_rage", - "g": 5, - "id": 2416330492, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def", - 37 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.09 - ], - [ - "def", - 32 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def", - 33 - ] - ], - "p": 28393107, - "s": "d93a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eot3r_u4", - "ct": 1718371474, - "e": 93861, - "f": "set_vampire", - "g": 5, - "id": 2416331183, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_ring_m4", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.08 - ] - ], - "s": "444d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6a", - "ct": 1718371501, - "e": 82031, - "f": "set_cri", - "g": 5, - "id": 2416331971, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.04 - ] - ], - "s": "a87e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a", - "ct": 1718371626, - "e": 73828, - "f": "set_speed", - "g": 4, - "id": 2416335396, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "22c6", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a", - "ct": 1718371626, - "e": 73828, - "f": "set_acc", - "g": 4, - "id": 2416335401, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 161 - ], - [ - "max_hp", - 167 - ] - ], - "s": "c5ad", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6n", - "ct": 1718510279, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2420182942, - "l": true, - "level": 85, - "mainStatBaseValue": 0.11, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.55, - "mg": 1111, - "op": [ - [ - "cri", - 0.11 - ], - [ - "def_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ] - ], - "s": "5e3b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6n_u", - "ct": 1718510288, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 2420183248, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "att", - 35 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "def", - 31 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "att", - 11, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "def", - 9, - "u" - ] - ], - "p": 713583798, - "s": "d60", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6r", - "ct": 1718587586, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2422195744, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ] - ], - "s": "dc48", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecd6w_u", - "ct": 1718758772, - "e": 84469, - "f": "set_revenge", - "g": 4, - "id": 2425807121, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "a9ef", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6r_u", - "ct": 1718810780, - "e": 93802, - "f": "set_speed", - "g": 5, - "id": 2426959799, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 769932771, - "s": "21da", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6w_u", - "ct": 1718811420, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 2426978551, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.04 - ], - [ - "acc", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 2, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 480028811, - "s": "ada9", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ezl1_w", - "ct": 1718876359, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2430463987, - "l": true, - "level": 88, - "mainStatBaseValue": 103.0, - "mainStatId": "ezl1_weapon_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103.0 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5.0 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.09 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.05 - ] - ], - "p": 738614105, - "s": "f111", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "exc107101", - "ct": 1718891872, - "g": 5, - "id": 2432162276, - "mg": 1111, - "op": [ - [ - "acc", - 0.16 - ], - [ - "ek_c107101", - 1 - ] - ], - "s": "565e" - }, - { - "code": "exc107101", - "ct": 1718891874, - "g": 5, - "id": 2432162593, - "mg": 1111, - "op": [ - [ - "acc", - 0.12 - ], - [ - "ek_c107101", - 1 - ] - ], - "s": "be75" - }, - { - "code": "exc107101", - "ct": 1718891877, - "g": 5, - "id": 2432162913, - "mg": 1111, - "op": [ - [ - "acc", - 0.11 - ], - [ - "ek_c107101", - 3 - ] - ], - "s": "253d" - }, - { - "code": "exc107101", - "ct": 1718891880, - "g": 5, - "id": 2432163317, - "mg": 1111, - "op": [ - [ - "acc", - 0.16 - ], - [ - "ek_c107101", - 2 - ] - ], - "s": "955a" - }, - { - "code": "exc109001", - "ct": 1718892174, - "g": 5, - "id": 2432197676, - "mg": 1111, - "op": [ - [ - "res", - 0.14 - ], - [ - "ek_c109001", - 2 - ] - ], - "s": "f1f" - }, - { - "code": "exc109001", - "ct": 1718892178, - "g": 5, - "id": 2432198038, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "ek_c109001", - 1 - ] - ], - "s": "67e3" - }, - { - "code": "exc109001", - "ct": 1718892180, - "g": 5, - "id": 2432198312, - "mg": 1111, - "op": [ - [ - "res", - 0.15 - ], - [ - "ek_c109001", - 1 - ] - ], - "p": 326831592, - "s": "c6b2" - }, - { - "code": "ecq6b", - "ct": 1718936983, - "e": 82086, - "f": "set_rage", - "g": 5, - "id": 2434660966, - "level": 85, - "mainStatBaseValue": 8, - "mainStatId": "cra6_boot_m", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.06 - ] - ], - "s": "9173", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ezl1_h", - "ct": 1718957082, - "e": 93863, - "f": "set_cri_dmg", - "g": 5, - "id": 2436387238, - "l": true, - "level": 88, - "mainStatBaseValue": 553.0, - "mainStatId": "ezl1_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553.0 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5.0 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ] - ], - "s": "93e3", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eal85b_u", - "ct": 1718960067, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2436630810, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp", - 181 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "cri", - 0.06, - "c", - "change2_cri_2_2" - ] - ], - "p": 99507012, - "s": "d74c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ezl1_r", - "ct": 1719022481, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2440984992, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ezl1_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5.0 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ] - ], - "p": 613630545, - "s": "74c8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6h_u", - "ct": 1719038304, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2442445949, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 0 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 0, - "u" - ], - [ - "speed", - 4, - "c", - "change2_speed_1_3" - ] - ], - "s": "e0de", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ezl1_b", - "ct": 1719049059, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2443370535, - "l": true, - "level": 88, - "mainStatBaseValue": 9.0, - "mainStatId": "ezl1_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9.0 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.06 - ] - ], - "s": "ccee", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ezl1_a", - "ct": 1719049065, - "e": 93862, - "f": "set_cri_dmg", - "g": 5, - "id": 2443370994, - "l": true, - "level": 88, - "mainStatBaseValue": 62.0, - "mainStatId": "ezl1_armor_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62.0 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5.0 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ] - ], - "s": "68dd", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecd6w_u", - "ct": 1719150364, - "e": 84375, - "f": "set_torrent", - "g": 4, - "id": 2450639997, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ] - ], - "p": 890790459, - "s": "355f", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ezl1_n", - "ct": 1719186343, - "e": 93863, - "f": "set_cri_dmg", - "g": 5, - "id": 2452477065, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ezl1_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5.0 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ] - ], - "p": 613630545, - "s": "efe1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecd6w_u", - "ct": 1719193962, - "e": 93803, - "f": "set_penetrate", - "g": 5, - "id": 2452995627, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "96b9", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecq6h_u", - "ct": 1719199545, - "e": 93750, - "f": "set_rage", - "g": 5, - "id": 2453405847, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0 - ], - [ - "cri", - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.06, - "c" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 690904230, - "s": "8e33", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecq6w_u", - "ct": 1719232739, - "e": 93862, - "f": "set_rage", - "g": 5, - "id": 2455851429, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.08, - "c", - "change2_att_rate_1_2" - ] - ], - "s": "6243", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecd6h_u", - "ct": 1719234897, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2456052972, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.04 - ], - [ - "acc", - 0.01, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "a217", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecd6w_u", - "ct": 1719239271, - "e": 84469, - "f": "set_torrent", - "g": 4, - "id": 2456477299, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "s": "6885", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecd6w_u", - "ct": 1719280987, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2458542739, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "c28b", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6w_u", - "ct": 1719372442, - "e": 84375, - "f": "set_acc", - "g": 4, - "id": 2462401078, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp", - 170 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp", - 182 - ], - [ - "max_hp", - 112, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "acc", - 0.07, - "c", - "change2_acc_1_2" - ] - ], - "s": "4343", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ewb1n", - "ct": 1719373040, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2462429274, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "wb1_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "att", - 53 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ] - ], - "p": 494187001, - "s": "72b5", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecd6a_u", - "ct": 1719545658, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2469310601, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_2" - ] - ], - "s": "e4ef", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eah23a", - "ct": 1719553415, - "e": 93862, - "f": "set_counter", - "g": 5, - "id": 2469796401, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah23_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "p": 96079743, - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eiu11h", - "ct": 1719565819, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2470498110, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu11_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ] - ], - "p": 795195383, - "s": "d9e8", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eiu51b", - "ct": 1719567555, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 2470583605, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "iu51_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.07 - ] - ], - "p": 90857803, - "s": "7648", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6h_u", - "ct": 1719752713, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2480610051, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.08, - "c" - ], - [ - "speed", - 1, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "p": 31856726, - "s": "f4c8", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6a", - "ct": 1719902979, - "e": 73828, - "f": "set_vampire", - "g": 4, - "id": 2485637611, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 2 - ] - ], - "s": "a136", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eiu32h", - "ct": 1719935096, - "f": "set_cri", - "g": 5, - "id": 2486622720, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu32_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "e072", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6a_u", - "ct": 1720061020, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 2489697243, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "s": "e4b7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6h_u", - "ct": 1720061268, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2489711284, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 713583798, - "s": "562f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6n", - "ct": 1720227089, - "e": 73923, - "f": "set_speed", - "g": 4, - "id": 2496081670, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.04 - ] - ], - "s": "1c2f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6a_u", - "ct": 1720272643, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2497717407, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 2, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.06, - "c", - "change2_max_hp_rate_1_1" - ] - ], - "s": "8082", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eal85b_u", - "ct": 1720273081, - "e": 93861, - "f": "set_speed", - "g": 5, - "id": 2497736090, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0 - ], - [ - "cri_dmg", - 0 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.11, - "c", - "change2_cri_dmg_3_1" - ] - ], - "p": 115835449, - "s": "9c58", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eah20n", - "ct": 1720502478, - "e": 93863, - "f": "set_acc", - "g": 5, - "id": 2506099821, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah20_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "acc", - 0.06 - ] - ], - "p": 403476926, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eah24w", - "ct": 1720767971, - "e": 93860, - "f": "set_cri", - "g": 5, - "id": 2512093832, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah24_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "s": "3cad", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecb6h_u", - "ct": 1721292681, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 2523943597, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def", - 33 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def", - 9, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.06, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "s": "1b3f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eah24h", - "ct": 1721306197, - "e": 93861, - "f": "set_cri", - "g": 5, - "id": 2524849777, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah24_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "att_rate", - 0.07, - "c", - "change2_att_rate_2_1" - ] - ], - "p": 480028811, - "s": "b4c0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eal85n_u", - "ct": 1721353543, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 2526689173, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 0 - ], - [ - "res", - 0.08 - ], - [ - "max_hp", - 187 - ], - [ - "res", - 0.04 - ], - [ - "max_hp", - 159 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp", - 201 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 0, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp", - 168, - "u" - ], - [ - "speed", - 3, - "c", - "change2_speed_1_2" - ] - ], - "p": 636577158, - "s": "bf49", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eah20w", - "ct": 1721451814, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2531573716, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah20_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.09 - ], - [ - "acc", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.09 - ] - ], - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6a_u", - "ct": 1721653192, - "e": 84375, - "f": "set_acc", - "g": 4, - "id": 2542210000, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.07, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "p": 225876663, - "s": "de0f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a_u", - "ct": 1721653344, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2542225851, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "a47e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eah24a", - "ct": 1721696924, - "e": 93860, - "f": "set_cri", - "g": 5, - "id": 2544307147, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah24_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ] - ], - "p": 115835449, - "s": "aa0a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6r_u", - "ct": 1721721230, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2545118660, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0 - ], - [ - "max_hp", - 166 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0 - ], - [ - "def_rate", - 0.14, - "c" - ], - [ - "speed", - 2, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 110838566, - "s": "3c3e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6a_u", - "ct": 1721722484, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2545154009, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ] - ], - "p": 829105288, - "s": "8336", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a_u", - "ct": 1721722510, - "e": 84375, - "f": "set_cri", - "g": 4, - "id": 2545154611, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.03, - "c", - "change2_cri_1_1" - ] - ], - "s": "7f0a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eal85b", - "ct": 1721724441, - "e": 82085, - "f": "set_speed", - "g": 5, - "id": 2545205227, - "l": true, - "level": 85, - "mainStatBaseValue": 8, - "mainStatId": "al85_boot_m", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "def", - 30 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.04 - ] - ], - "p": 659243748, - "s": "1bfa", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eot3r_u1", - "ct": 1721749061, - "e": 93861, - "f": "set_att", - "g": 5, - "id": 2546038921, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ] - ], - "p": 140659207, - "s": "5b88", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eot3r_u4", - "ct": 1721749094, - "f": "set_revenge", - "g": 5, - "id": 2546040131, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_ring_m4", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.05 - ] - ], - "s": "8d34", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eot3n_u3", - "ct": 1721749108, - "e": 7695, - "f": "set_att", - "g": 5, - "id": 2546040595, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ot3u_neck_m3", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "att", - 43 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ] - ], - "s": "77fe", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "exc601101", - "ct": 1721962529, - "g": 5, - "id": 2551914842, - "l": true, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "ek_c601101", - 3 - ] - ], - "p": 360551102, - "s": "7462" - }, - { - "code": "ess14n", - "ct": 1721985072, - "e": 82144, - "f": "set_cri", - "g": 5, - "id": 2552544383, - "l": true, - "level": 78, - "mainStatBaseValue": 0.13, - "mainStatId": "ss14_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ] - ], - "s": "9258", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eiu12w", - "ct": 1722088742, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2555333537, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu12_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.08 - ] - ], - "p": 96079743, - "s": "c4b0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eal85b_u", - "ct": 1722227834, - "e": 93863, - "f": "set_res", - "g": 5, - "id": 2558797681, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att", - 37 - ], - [ - "res", - 0 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0 - ], - [ - "att", - 42 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "att", - 22, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "res", - 0.1, - "c", - "change2_res_3_1" - ] - ], - "p": 713631381, - "s": "c15a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6n_u", - "ct": 1722349812, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 2561932090, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_2_1" - ] - ], - "s": "583b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6n", - "ct": 1722349848, - "e": 6704, - "f": "set_speed", - "g": 5, - "id": 2561933357, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "def_rate", - 0.07 - ], - [ - "att", - 41 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.07 - ] - ], - "s": "6a5d", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6h_u", - "ct": 1722406686, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 2563269116, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ] - ], - "s": "4939", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eih9r", - "ct": 1722577894, - "e": 93804, - "f": "set_res", - "g": 5, - "id": 2567721286, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "imh_ring_m11", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.05 - ] - ], - "p": 31856726, - "s": "7df0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eih6w", - "ct": 1722577901, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2567721609, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "imh_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "cri_dmg", - 0 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_2" - ] - ], - "p": 669363338, - "s": "8590", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eah24b", - "ct": 1722581009, - "e": 93861, - "f": "set_cri", - "g": 5, - "id": 2567885380, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah24_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.09 - ], - [ - "cri", - 0.05 - ] - ], - "s": "2596", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6w", - "ct": 1722643907, - "e": 73828, - "f": "set_cri", - "g": 4, - "id": 2570293611, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.08 - ] - ], - "s": "e531", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6w_u", - "ct": 1722659748, - "e": 93805, - "f": "set_acc", - "g": 5, - "id": 2571078711, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 590699704, - "s": "88b3", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6r_u", - "ct": 1722690036, - "e": 93862, - "f": "set_cri", - "g": 5, - "id": 2572775896, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "att", - 40 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "att", - 38 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "att", - 22, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "f349", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6a_u", - "ct": 1722818820, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 2578315782, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "bce9", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "exc114401", - "ct": 1722843452, - "g": 5, - "id": 2579892759, - "mg": 1111, - "op": [ - [ - "acc", - 0.15 - ], - [ - "ek_c114401", - 2 - ] - ], - "p": 620426700, - "s": "d307" - }, - { - "code": "exc114401", - "ct": 1722843455, - "g": 5, - "id": 2579892935, - "mg": 1111, - "op": [ - [ - "acc", - 0.15 - ], - [ - "ek_c114401", - 1 - ] - ], - "s": "8787" - }, - { - "code": "exc114401", - "ct": 1722843458, - "g": 5, - "id": 2579893108, - "mg": 1111, - "op": [ - [ - "acc", - 0.1 - ], - [ - "ek_c114401", - 3 - ] - ], - "s": "8f03" - }, - { - "code": "eal85r_u", - "ct": 1722843929, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2579922070, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ] - ], - "p": 829105288, - "s": "b79", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eal85n_u", - "ct": 1722844022, - "e": 93803, - "f": "set_speed", - "g": 5, - "id": 2579927769, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp", - 189 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 4, - "c", - "change2_speed_1_3" - ] - ], - "p": 829105288, - "s": "6344", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eal85b_u", - "ct": 1722844552, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2579962083, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "att_rate", - 0.08, - "c", - "change2_att_rate_2_1" - ] - ], - "p": 777666204, - "s": "5b4d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eal85b_u", - "ct": 1722845028, - "e": 93805, - "f": "set_res", - "g": 5, - "id": 2579992439, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0 - ], - [ - "res", - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "res", - 0.11, - "c", - "change2_res_2_2" - ] - ], - "p": 48988520, - "s": "f7a4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eiu12b", - "ct": 1722929538, - "e": 93750, - "f": "set_shield", - "g": 5, - "id": 2583468205, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "iu12_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.06 - ] - ], - "s": "4bc2", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6w_u", - "ct": 1723011712, - "e": 93861, - "f": "set_cri", - "g": 5, - "id": 2585297243, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "s": "90b3", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecq6b_u", - "ct": 1723081251, - "e": 84470, - "f": "set_immune", - "g": 4, - "id": 2586884783, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.05, - "c", - "change2_cri_dmg_1_1" - ] - ], - "s": "ab5c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6n", - "ct": 1723081376, - "e": 73828, - "f": "set_speed", - "g": 4, - "id": 2586889573, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.04 - ] - ], - "p": 4647526, - "s": "c8b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecq6a_u", - "ct": 1723081562, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2586896646, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp", - 178 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "p": 798777729, - "s": "f4bc", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6n", - "ct": 1723083271, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2586962259, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "p": 326831592, - "s": "9d5a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eah24r", - "ct": 1723100901, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 2587779548, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah24_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.08 - ] - ], - "s": "2006", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eah21h", - "ct": 1723106139, - "e": 93802, - "f": "set_cri_dmg", - "g": 5, - "id": 2587958401, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah21_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "speed", - 5 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ] - ], - "p": 784315107, - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eah24n", - "ct": 1723213899, - "e": 93861, - "f": "set_cri", - "g": 5, - "id": 2591378030, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ah24_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 5 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.05, - "c", - "change2_att_rate_1_1" - ] - ], - "p": 96079748, - "s": "8b5b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecq6a_u", - "ct": 1723725342, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2605318044, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp", - 187 - ], - [ - "max_hp_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 171 - ], - [ - "max_hp", - 177 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp", - 166 - ], - [ - "speed", - 1, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp", - 224, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.05, - "c", - "change2_max_hp_rate_1_1" - ] - ], - "s": "932f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "exc514901", - "ct": 1723798779, - "g": 5, - "id": 2607176526, - "l": true, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "ek_c514901", - 3 - ] - ], - "p": 326707479, - "s": "53e8" - }, - { - "code": "exc514901", - "ct": 1723798784, - "g": 5, - "id": 2607176664, - "l": true, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.14 - ], - [ - "ek_c514901", - 1 - ] - ], - "s": "d9d9" - }, - { - "code": "ecw6a", - "ct": 1723963404, - "e": 73828, - "f": "set_speed", - "g": 4, - "id": 2612661692, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 3 - ] - ], - "s": "3b04", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6h_u", - "ct": 1723972747, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 2613190111, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "s": "b90e", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecq6h_u", - "ct": 1724030071, - "e": 93750, - "f": "set_rage", - "g": 5, - "id": 2615160698, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.07, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 28393107, - "s": "aa77", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6w_u", - "ct": 1724219835, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2618702426, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 559859822, - "s": "15fc", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6a_u", - "ct": 1724219865, - "e": 84470, - "f": "set_speed", - "g": 4, - "id": 2618702984, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 166 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "s": "f394", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6r_u", - "ct": 1724219888, - "e": 93803, - "f": "set_speed", - "g": 5, - "id": 2618703315, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.07, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ] - ], - "s": "b104", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6h_u", - "ct": 1724221408, - "e": 84470, - "f": "set_speed", - "g": 4, - "id": 2618727007, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "p": 96079748, - "s": "e4b7", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecd6a", - "ct": 1724290138, - "f": "set_penetrate", - "g": 5, - "id": 2619906285, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.05 - ] - ], - "s": "e69c", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6n", - "ct": 1724291185, - "e": 2973, - "f": "set_speed", - "g": 5, - "id": 2619935254, - "l": true, - "level": 85, - "mainStatBaseValue": 0.13, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "max_hp", - 185 - ], - [ - "acc", - 0.07 - ] - ], - "s": "544c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6h_u", - "ct": 1724291488, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2619943639, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "acc", - 0.07, - "c", - "change2_acc_1_2" - ] - ], - "p": 225876663, - "s": "8f37", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eal85b_u", - "ct": 1724415131, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2624623095, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_1" - ] - ], - "p": 434015426, - "s": "f74a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eal85b_u", - "ct": 1724418596, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2624757745, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "att", - 41 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "att", - 43 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "att", - 22, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "p": 494187001, - "s": "a736", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6a_u", - "ct": 1724418796, - "e": 84375, - "f": "set_cri", - "g": 4, - "id": 2624766450, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "p": 96079748, - "s": "fb11", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eal85r_u", - "ct": 1724419767, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2624806455, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 0 - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 5, - "c", - "change2_speed_3_2" - ] - ], - "p": 669363338, - "s": "dd4b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecg6a_u", - "ct": 1724634647, - "e": 93804, - "f": "set_max_hp", - "g": 5, - "id": 2632932257, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp", - 180 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp", - 198 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "s": "e5a0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eiu51w", - "ct": 1724678510, - "f": "set_rage", - "g": 5, - "id": 2633919631, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu51_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ] - ], - "s": "9dfe", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6r_u", - "ct": 1724678657, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2633923246, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "acc", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 195 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 171 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 163 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp", - 168, - "u" - ] - ], - "s": "5bb1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6r_u", - "ct": 1724678676, - "e": 84468, - "f": "set_speed", - "g": 4, - "id": 2633923676, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 156 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp", - 56, - "u" - ] - ], - "p": 566472035, - "s": "e1af", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6h", - "ct": 1724678708, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2633924624, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 2 - ] - ], - "p": 742543115, - "s": "8c0b", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eih7a", - "ct": 1724679037, - "e": 93862, - "f": "set_immune", - "g": 5, - "id": 2633932344, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "imh_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ] - ], - "s": "f519", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6n_u", - "ct": 1724679701, - "e": 84410, - "f": "set_cri", - "g": 4, - "id": 2633949204, - "l": true, - "level": 90, - "mainStatBaseValue": 0.12, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "cri", - 0.12, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "s": "a331", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eot3n_u4", - "ct": 1724681007, - "e": 93803, - "f": "set_vampire", - "g": 5, - "id": 2633982774, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_neck_m4", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0 - ], - [ - "res", - 0.09 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0 - ], - [ - "def_rate", - 0.08, - "c", - "change2_def_rate_2_1" - ] - ], - "s": "a9c3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6w_u", - "ct": 1724726609, - "e": 93863, - "f": "set_speed", - "g": 5, - "id": 2634795450, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "acc", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "p": 4647526, - "s": "cc4e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6n_u", - "ct": 1724727095, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2634807446, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 0 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "max_hp", - 177, - "c", - "change2_max_hp_1_1" - ] - ], - "p": 620426700, - "s": "9c62", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eal85b_u", - "ct": 1724728260, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2634834095, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "def", - 29 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp", - 0 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp", - 0 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "def", - 9, - "u" - ], - [ - "acc", - 0.07, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp", - 112, - "u" - ], - [ - "max_hp", - 323, - "c", - "change2_max_hp_2_2" - ] - ], - "p": 403476926, - "s": "43e9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eiu32n", - "ct": 1724730510, - "e": 93862, - "f": "set_torrent", - "g": 5, - "id": 2634885294, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu32_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.03 - ] - ], - "s": "d140", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eal85r_u", - "ct": 1724736483, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2635023678, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ] - ], - "s": "780c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eal85r_u", - "ct": 1724737524, - "e": 93863, - "f": "set_speed", - "g": 5, - "id": 2635045827, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 6844892, - "s": "b380", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eiu21a", - "ct": 1724749883, - "e": 12359, - "f": "set_vampire", - "g": 5, - "id": 2635285328, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu21_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.05 - ] - ], - "s": "fb88", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eih6w", - "ct": 1724749927, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2635286170, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "imh_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.05 - ] - ], - "p": 445022861, - "s": "f0ec", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eah17w", - "ct": 1724812999, - "e": 93861, - "f": "set_max_hp", - "g": 5, - "id": 2636470290, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah17_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ] - ], - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "exc110301", - "ct": 1724815720, - "g": 5, - "id": 2636530703, - "l": true, - "mg": 1111, - "op": [ - [ - "cri", - 0.07 - ], - [ - "ek_c110301", - 2 - ] - ], - "s": "4495" - }, - { - "code": "exc110301", - "ct": 1724815725, - "g": 5, - "id": 2636530788, - "l": true, - "mg": 1111, - "op": [ - [ - "cri", - 0.1 - ], - [ - "ek_c110301", - 3 - ] - ], - "s": "5cbb" - }, - { - "code": "exc110301", - "ct": 1724815729, - "g": 5, - "id": 2636530872, - "l": true, - "mg": 1111, - "op": [ - [ - "cri", - 0.11 - ], - [ - "ek_c110301", - 2 - ] - ], - "p": 704271358, - "s": "924" - }, - { - "code": "ecq6a_u", - "ct": 1724836561, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2636942538, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "max_hp", - 202 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "s": "60a9", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "exc110301", - "ct": 1724851819, - "g": 5, - "id": 2637292181, - "l": true, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "ek_c110301", - 1 - ] - ], - "s": "b881" - }, - { - "code": "eiu42h", - "ct": 1725005436, - "e": 7695, - "f": "set_coop", - "g": 5, - "id": 2640767308, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu42_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.09 - ] - ], - "s": "4932", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "exc201101", - "ct": 1725351993, - "g": 5, - "id": 2649103949, - "mg": 1111, - "op": [ - [ - "cri", - 0.1 - ], - [ - "ek_c201101", - 2 - ] - ], - "s": "698f" - }, - { - "code": "exc201101", - "ct": 1725351997, - "g": 5, - "id": 2649104055, - "mg": 1111, - "op": [ - [ - "cri", - 0.1 - ], - [ - "ek_c201101", - 2 - ] - ], - "s": "a8e9" - }, - { - "code": "exc201101", - "ct": 1725352007, - "g": 5, - "id": 2649104340, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "ek_c201101", - 3 - ] - ], - "s": "e4aa" - }, - { - "code": "exc201101", - "ct": 1725352143, - "g": 5, - "id": 2649107724, - "mg": 1111, - "op": [ - [ - "cri", - 0.11 - ], - [ - "ek_c201101", - 3 - ] - ], - "s": "bd86" - }, - { - "code": "exc201101", - "ct": 1725352148, - "g": 5, - "id": 2649107842, - "mg": 1111, - "op": [ - [ - "cri", - 0.08 - ], - [ - "ek_c201101", - 1 - ] - ], - "s": "7f14" - }, - { - "code": "exc201101", - "ct": 1725352151, - "g": 5, - "id": 2649107916, - "mg": 1111, - "op": [ - [ - "cri", - 0.09 - ], - [ - "ek_c201101", - 2 - ] - ], - "s": "5b30" - }, - { - "code": "exc201101", - "ct": 1725352154, - "g": 5, - "id": 2649108011, - "mg": 1111, - "op": [ - [ - "cri", - 0.09 - ], - [ - "ek_c201101", - 2 - ] - ], - "s": "2d07" - }, - { - "code": "exc201101", - "ct": 1725352157, - "g": 5, - "id": 2649108099, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "ek_c201101", - 2 - ] - ], - "s": "9ee3" - }, - { - "code": "exc201101", - "ct": 1725352159, - "g": 5, - "id": 2649108171, - "l": true, - "mg": 1111, - "op": [ - [ - "cri", - 0.09 - ], - [ - "ek_c201101", - 1 - ] - ], - "s": "85be" - }, - { - "code": "exc201101", - "ct": 1725352164, - "g": 5, - "id": 2649108343, - "mg": 1111, - "op": [ - [ - "cri", - 0.07 - ], - [ - "ek_c201101", - 2 - ] - ], - "s": "9624" - }, - { - "code": "exc201101", - "ct": 1725352169, - "g": 5, - "id": 2649108506, - "mg": 1111, - "op": [ - [ - "cri", - 0.09 - ], - [ - "ek_c201101", - 3 - ] - ], - "s": "532b" - }, - { - "code": "exc201101", - "ct": 1725352172, - "g": 5, - "id": 2649108554, - "mg": 1111, - "op": [ - [ - "cri", - 0.1 - ], - [ - "ek_c201101", - 3 - ] - ], - "s": "89ed" - }, - { - "code": "ela10n", - "ct": 1725439613, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2651059268, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "la10_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.09 - ] - ], - "p": 736028830, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ela10b", - "ct": 1725507245, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2652931540, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "la10_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ] - ], - "p": 306770592, - "s": "a67e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6n_u", - "ct": 1725603875, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2656306221, - "l": true, - "level": 90, - "mainStatBaseValue": 0.12, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "cri", - 0.12, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "def", - 31 - ], - [ - "def", - 29 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "def", - 18, - "u" - ] - ], - "s": "7906", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecd6w_u", - "ct": 1725605008, - "e": 93805, - "f": "set_penetrate", - "g": 5, - "id": 2656357198, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "p": 568417281, - "s": "e5ea", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ela10a", - "ct": 1725636483, - "e": 93862, - "f": "set_cri_dmg", - "g": 5, - "id": 2657825562, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "la10_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ela10w", - "ct": 1725695323, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2659693589, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "la10_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ] - ], - "p": 28398305, - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ela10r", - "ct": 1725848392, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2666109978, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la10_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ] - ], - "p": 640588979, - "s": "fc3e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "esh2_w", - "ct": 1726127600, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2675663243, - "l": true, - "level": 88, - "mainStatBaseValue": 103.0, - "mainStatId": "esh2_weapon_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103.0 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 4.0 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4.0 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.05 - ] - ], - "p": 434015426, - "s": "c897", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "esh2_h", - "ct": 1726127614, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2675665113, - "l": true, - "level": 88, - "mainStatBaseValue": 553.0, - "mainStatId": "esh2_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553.0 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 4.0 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4.0 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.05 - ] - ], - "p": 461351155, - "s": "60f5", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecq6a_u", - "ct": 1726129494, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2675911892, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "426e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ela10h", - "ct": 1726146915, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2677739007, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "la10_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "s": "cdc8", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecd6a", - "ct": 1726184072, - "f": "set_torrent", - "g": 5, - "id": 2679949564, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp", - 162 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "4750", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6r_u", - "ct": 1726194389, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2680882753, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp", - 198 - ], - [ - "res", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "max_hp", - 199 - ], - [ - "max_hp", - 202 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "max_hp", - 168, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "p": 490684210, - "s": "bb82", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecd6b_u", - "ct": 1726194514, - "e": 93862, - "f": "set_penetrate", - "g": 5, - "id": 2680893341, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp", - 175 - ], - [ - "att_rate", - 0 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp", - 178 - ], - [ - "max_hp", - 179 - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp", - 168, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.07, - "c", - "change2_att_rate_2_1" - ] - ], - "p": 591089796, - "s": "d017", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecb6h_u", - "ct": 1726194873, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2680923640, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "res", - 0.08, - "c" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "s": "90a4", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6b_u", - "ct": 1726196318, - "e": 93803, - "f": "set_speed", - "g": 5, - "id": 2681045515, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 568417281, - "s": "c218", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecs17h", - "ct": 1726214399, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2682312400, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "cs17_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ] - ], - "p": 279573776, - "s": "4008", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecd6w_u", - "ct": 1726283282, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2686636878, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "res", - 0.07, - "u" - ] - ], - "s": "de89", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6r", - "ct": 1726313462, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2688489404, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "def_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "p": 323638178, - "s": "f2e6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6r_u", - "ct": 1726313474, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2688490204, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "att", - 38 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "att", - 43 - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "att", - 22, - "u" - ] - ], - "p": 326831592, - "s": "c95b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6a", - "ct": 1726313506, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2688491984, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp", - 195 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp", - 169 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp", - 158 - ], - [ - "acc", - 0.05 - ] - ], - "s": "32c5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ess15r", - "ct": 1726314517, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2688553281, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "ss15_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.05 - ] - ], - "s": "67c1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecb6b_u", - "ct": 1726319020, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2688850767, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.08, - "c", - "change2_max_hp_rate_1_2" - ] - ], - "p": 566472035, - "s": "a1d8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "edd6b", - "ct": 1726329177, - "f": "set_torrent", - "g": 5, - "id": 2689550756, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "edw6_boot_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ] - ], - "s": "6b31", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "esh2_a", - "ct": 1726367875, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2692206689, - "level": 88, - "mainStatBaseValue": 62.0, - "mainStatId": "esh2_armor_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62.0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 3.0 - ], - [ - "speed", - 3.0 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "p": 704271358, - "s": "6257", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6n", - "ct": 1726378990, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2693476479, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.03 - ] - ], - "s": "3843", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "edb6h", - "ct": 1726386511, - "e": 82086, - "f": "set_res", - "g": 5, - "id": 2694238022, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "edw6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ] - ], - "s": "98bf", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6h_u", - "ct": 1726389383, - "e": 93803, - "f": "set_res", - "g": 5, - "id": 2694514807, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "5daf", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6a", - "ct": 1726390271, - "e": 82085, - "f": "set_res", - "g": 5, - "id": 2694599816, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp", - 186 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp", - 201 - ], - [ - "max_hp", - 176 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "s": "adac", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecd6h_u", - "ct": 1726391583, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2694723564, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "att", - 45 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att", - 41 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att", - 22, - "u" - ] - ], - "s": "6cf", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecd6n", - "ct": 1726393242, - "e": 3964, - "f": "set_penetrate", - "g": 5, - "id": 2694880757, - "l": true, - "level": 85, - "mainStatBaseValue": 0.11, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.55, - "mg": 1111, - "op": [ - [ - "cri", - 0.11 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "aa3c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "esh2_b", - "ct": 1726456289, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2699991803, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "esh2_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3.0 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4.0 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.08 - ] - ], - "p": 738614105, - "s": "a7b3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6w", - "ct": 1726480262, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2702530260, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "att_rate", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.05 - ], - [ - "res", - 0.06 - ] - ], - "s": "bbbc", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "esh2_r", - "ct": 1726709847, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2718024954, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "esh2_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4.0 - ], - [ - "speed", - 3.0 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "p": 738614105, - "s": "850", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6w_u", - "ct": 1726710104, - "e": 84469, - "f": "set_speed", - "g": 4, - "id": 2718044032, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "p": 649028156, - "s": "9d4d", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "esh2_n", - "ct": 1726710107, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2718044295, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "esh2_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4.0 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5.0 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ] - ], - "s": "3b5", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecb6a", - "ct": 1726710492, - "e": 73828, - "f": "set_res", - "g": 4, - "id": 2718072924, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.05 - ] - ], - "s": "dda", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "edw6b_u", - "ct": 1726714321, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2718350089, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "65de", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6w_u", - "ct": 1726716294, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2718495589, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_2" - ] - ], - "s": "b180", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6a_u", - "ct": 1726718102, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2718616445, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ] - ], - "s": "25c6", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecd6h_u", - "ct": 1726718102, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2718616448, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "att_rate", - 0.07, - "c", - "change2_att_rate_1_2" - ] - ], - "p": 11185757, - "s": "2f4b", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eiu41w", - "ct": 1726731113, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2719411286, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu41_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.09 - ] - ], - "p": 559859824, - "s": "a293", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eiu32h", - "ct": 1726736225, - "f": "set_cri", - "g": 5, - "id": 2719666637, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu32_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "1e45", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecq6h_u", - "ct": 1726736489, - "e": 93862, - "f": "set_immune", - "g": 5, - "id": 2719679101, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "s": "8891", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6h", - "ct": 1726737959, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2719749549, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "79a9", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "edd6a", - "ct": 1726795423, - "e": 6704, - "f": "set_torrent", - "g": 5, - "id": 2722631365, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "edw6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.04 - ] - ], - "s": "f796", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "esh2_w", - "ct": 1727019785, - "e": 93803, - "f": "set_penetrate", - "g": 5, - "id": 2740001755, - "l": true, - "level": 88, - "mainStatBaseValue": 103.0, - "mainStatId": "esh2_weapon_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103.0 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 5.0 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.09 - ], - [ - "att_rate", - 0.06 - ] - ], - "p": 704271358, - "s": "47cc", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6a_u", - "ct": 1727053282, - "e": 93803, - "f": "set_speed", - "g": 5, - "id": 2742107825, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "acc", - 0.07, - "u" - ] - ], - "s": "61b7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a_u", - "ct": 1727056905, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2742433564, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 4, - "u" - ] - ], - "p": 713583798, - "s": "b3f8", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecd6w", - "ct": 1727061158, - "e": 73828, - "f": "set_torrent", - "g": 4, - "id": 2742813770, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.08 - ] - ], - "s": "dd1e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecq6h", - "ct": 1727061399, - "f": "set_immune", - "g": 5, - "id": 2742835320, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "att", - 41 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.05 - ] - ], - "s": "120f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecq6n_u", - "ct": 1727062000, - "e": 84411, - "f": "set_immune", - "g": 4, - "id": 2742885924, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "att", - 38 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "def", - 27 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "def", - 9, - "u" - ] - ], - "s": "71a8", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecd6a_u", - "ct": 1727064990, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2743133933, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "p": 525461035, - "s": "d0c1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "exc205001", - "ct": 1727065175, - "g": 5, - "id": 2743149764, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.11 - ], - [ - "ek_c205001", - 1 - ] - ], - "p": 99507012, - "s": "2adc" - }, - { - "code": "esh2_h", - "ct": 1727135902, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2747790086, - "l": true, - "level": 88, - "mainStatBaseValue": 553.0, - "mainStatId": "esh2_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553.0 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 5.0 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ] - ], - "s": "c762", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecq6r_u", - "ct": 1727234411, - "e": 84375, - "f": "set_immune", - "g": 4, - "id": 2753718178, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 713583798, - "s": "5b61", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecd6w_u", - "ct": 1727328848, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2757717606, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "417e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "esh2_a", - "ct": 1727354610, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2759299905, - "l": true, - "level": 88, - "mainStatBaseValue": 62.0, - "mainStatId": "esh2_armor_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62.0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 5.0 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "s": "19cb", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "edw6h_u", - "ct": 1727449335, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2763713599, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "p": 829105288, - "s": "5003", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "esh2_b", - "ct": 1727484946, - "e": 93861, - "f": "set_penetrate", - "g": 5, - "id": 2765283125, - "l": true, - "level": 88, - "mainStatBaseValue": 9.0, - "mainStatId": "esh2_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9.0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.06 - ] - ], - "s": "2b01", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecb6w_u", - "ct": 1727490726, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2765718636, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ] - ], - "p": 784315107, - "s": "4f9e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6a_u", - "ct": 1727514575, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2767325455, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp", - 0 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp", - 0 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "max_hp", - 112, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "max_hp", - 323, - "c", - "change2_max_hp_2_2" - ] - ], - "p": 566472035, - "s": "7e2a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eiu12a", - "ct": 1727580903, - "f": "set_scar", - "g": 5, - "id": 2770828016, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu12_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "e32a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "esh2_r", - "ct": 1727701394, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2776372648, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "esh2_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 5.0 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "p": 704271358, - "s": "8a98", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eiu51r", - "ct": 1727704201, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2776521515, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu51_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "acc", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ] - ], - "p": 412803674, - "s": "6d13", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "edd6n", - "ct": 1727705256, - "e": 8161, - "f": "set_torrent", - "g": 5, - "id": 2776578064, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "edw6_neck_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ] - ], - "s": "e98f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecd6h", - "ct": 1727705422, - "e": 17723, - "f": "set_penetrate", - "g": 5, - "id": 2776586425, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "def_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ] - ], - "s": "629c", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eih9n", - "ct": 1727749318, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2779416145, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "8a38", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6a", - "ct": 1727755249, - "f": "set_speed", - "g": 5, - "id": 2780143769, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.04 - ] - ], - "s": "4e0d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a_u", - "ct": 1727765164, - "e": 84469, - "f": "set_cri", - "g": 4, - "id": 2781271794, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 583954927, - "s": "c0d2", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6n", - "ct": 1727839580, - "e": 7229, - "f": "set_speed", - "g": 5, - "id": 2787291270, - "level": 85, - "mainStatBaseValue": 0.13, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "def", - 34 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "def", - 32 - ] - ], - "p": 313109293, - "s": "524a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "edq6a_u", - "ct": 1727846797, - "e": 93861, - "f": "set_immune", - "g": 5, - "id": 2787922297, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "fc64", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecq6w_u", - "ct": 1727847366, - "e": 93804, - "f": "set_immune", - "g": 5, - "id": 2787971093, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "93ef", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecq6n_u", - "ct": 1727847764, - "e": 84375, - "f": "set_immune", - "g": 4, - "id": 2788003768, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "s": "eb0e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6b_u", - "ct": 1727848096, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2788030981, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "p": 769932771, - "s": "2b08", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6w", - "ct": 1727848846, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2788092014, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 180 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp", - 200 - ] - ], - "s": "b701", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecq6h_u", - "ct": 1727849475, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2788143526, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_1" - ] - ], - "p": 738614105, - "s": "f661", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "esh2_n", - "ct": 1727850630, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2788238042, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "esh2_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 5.0 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "p": 704271358, - "s": "e2cb", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecd6n_u", - "ct": 1727868519, - "e": 93862, - "f": "set_penetrate", - "g": 5, - "id": 2789534797, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp", - 189 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp", - 181 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp", - 169 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "max_hp", - 168, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 784315107, - "s": "b536", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecq6a", - "ct": 1727873979, - "e": 82086, - "f": "set_immune", - "g": 5, - "id": 2789937479, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "s": "b93", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6n_u", - "ct": 1727875446, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2790054639, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_neck_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp", - 151 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 56, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "p": 649028156, - "s": "4cd6", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecq6w_u", - "ct": 1727875720, - "e": 93805, - "f": "set_immune", - "g": 5, - "id": 2790077347, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 690904230, - "s": "25b0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6w_u", - "ct": 1728032289, - "e": 93863, - "f": "set_acc", - "g": 5, - "id": 2800092852, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "93fd", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "esh2_w", - "ct": 1728044263, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2800777188, - "l": true, - "level": 88, - "mainStatBaseValue": 103.0, - "mainStatId": "esh2_weapon_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103.0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4.0 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3.0 - ], - [ - "speed", - 3.0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "p": 892353109, - "s": "bfb7", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "esh2_h", - "ct": 1728045162, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2800834495, - "l": true, - "level": 88, - "mainStatBaseValue": 553.0, - "mainStatId": "esh2_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553.0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4.0 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4.0 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "p": 412803674, - "s": "19d8", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eah21b", - "ct": 1728216109, - "e": 93862, - "f": "set_cri_dmg", - "g": 5, - "id": 2808918406, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah21_boot_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ] - ], - "p": 640588979, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "edq6a_u", - "ct": 1728218342, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2809025952, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "s": "6011", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a_u", - "ct": 1728281646, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2811860719, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 6885517, - "s": "5256", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "esh2_a", - "ct": 1728430729, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2818037837, - "l": true, - "level": 88, - "mainStatBaseValue": 62.0, - "mainStatId": "esh2_armor_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62.0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4.0 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 4.0 - ] - ], - "p": 354206748, - "s": "2c6b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecg6r_u", - "ct": 1728437115, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2818365284, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "p": 326928979, - "s": "9667", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "esh2_b", - "ct": 1728516165, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2821437906, - "l": true, - "level": 88, - "mainStatBaseValue": 9.0, - "mainStatId": "esh2_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9.0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ] - ], - "p": 781837305, - "s": "c034", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecd6h_u", - "ct": 1728565154, - "e": 93862, - "f": "set_penetrate", - "g": 5, - "id": 2824899877, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "4bfa", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecd6n", - "ct": 1728565775, - "e": 82031, - "f": "set_torrent", - "g": 5, - "id": 2824952545, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.06 - ] - ], - "s": "4598", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecd6a_u", - "ct": 1728565890, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2824962390, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "2cb5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecq6a_u", - "ct": 1728566307, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2824998894, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.07, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.08, - "c", - "change2_max_hp_rate_1_2" - ] - ], - "p": 893757497, - "s": "79dd", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "edg6n_u", - "ct": 1728609377, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2827188730, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "acc", - 0.05, - "u" - ] - ], - "s": "359e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecl24r", - "ct": 1728609529, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2827197935, - "l": true, - "level": 0, - "mg": 1111, - "name": "Unknown", - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 1 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "p": 795195383, - "s": "7f65" - }, - { - "code": "ecg6r_u", - "ct": 1728610221, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2827241316, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp", - 193 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp", - 195 - ], - [ - "acc", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "p": 894623419, - "s": "e6a3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "edw6r_u", - "ct": 1728610816, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 2827277223, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 306770592, - "s": "51df", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "exc110001", - "ct": 1728624141, - "g": 5, - "id": 2828056207, - "l": true, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "ek_c110001", - 2 - ] - ], - "p": 784315107, - "s": "736" - }, - { - "code": "ecw6a_u", - "ct": 1728635548, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2828581943, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 6844892, - "s": "3524", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "esh2_r", - "ct": 1728637605, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2828680058, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "esh2_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4.0 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4.0 - ], - [ - "speed", - 4.0 - ] - ], - "p": 781837305, - "s": "30ec", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "esh2_n", - "ct": 1728637606, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2828680059, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "esh2_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4.0 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4.0 - ], - [ - "speed", - 4.0 - ] - ], - "p": 326928979, - "s": "5466", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6a_u", - "ct": 1728703904, - "e": 84411, - "f": "set_speed", - "g": 4, - "id": 2832195210, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "p": 897188455, - "s": "4f03", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecg6r_u", - "ct": 1728738185, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2834678494, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "p": 830235768, - "s": "710a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecd6w", - "ct": 1728738295, - "e": 12476, - "f": "set_penetrate", - "g": 5, - "id": 2834687413, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ] - ], - "s": "61a1", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecg6n_u", - "ct": 1728790459, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2837773180, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "p": 354206748, - "s": "5e77", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "edd6h", - "ct": 1728792784, - "f": "set_penetrate", - "g": 5, - "id": 2837962220, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "edw6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.08 - ] - ], - "s": "ee19", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecg6a", - "ct": 1728794401, - "e": 56142, - "f": "set_max_hp", - "g": 5, - "id": 2838096063, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp", - 182 - ], - [ - "max_hp", - 199 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp", - 168 - ], - [ - "speed", - 4 - ] - ], - "s": "aea4", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "edq6a_u", - "ct": 1728800631, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2838573453, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "e057", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "esh2_w", - "ct": 1729003675, - "e": 93861, - "f": "set_speed", - "g": 5, - "id": 2847469456, - "l": true, - "level": 88, - "mainStatBaseValue": 103.0, - "mainStatId": "esh2_weapon_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103.0 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 5.0 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 3 - ] - ], - "s": "2df0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "edw6h_u", - "ct": 1729065540, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2849715538, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "s": "ccbf", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecq6w_u", - "ct": 1729066577, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2849753468, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "8db9", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "esh2_h", - "ct": 1729081917, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2850363854, - "l": true, - "level": 88, - "mainStatBaseValue": 553.0, - "mainStatId": "esh2_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553.0 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 5.0 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ] - ], - "p": 793619248, - "s": "9522", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eal85b_u", - "ct": 1729085889, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 2850566307, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "d5f4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6r", - "ct": 1729178994, - "f": "set_acc", - "g": 5, - "id": 2854743652, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_ring_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "p": 207190343, - "s": "2044", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecs13w", - "ct": 1729249784, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2857373510, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "cs13_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ] - ], - "p": 490684210, - "s": "438f", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eal85r_u", - "ct": 1729252222, - "e": 93803, - "f": "set_cri_dmg", - "g": 5, - "id": 2857485116, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri", - 0.06, - "c", - "change2_cri_2_2" - ] - ], - "s": "2aa0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eal85b_u", - "ct": 1729253068, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2857525900, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0 - ], - [ - "cri", - 0 - ], - [ - "cri", - 0 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri", - 0.09, - "c", - "change2_cri_4_1" - ] - ], - "p": 784315107, - "s": "189b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecq6a_u", - "ct": 1729259791, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2857870806, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "s": "5ef8", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "esh2_a", - "ct": 1729267806, - "e": 93861, - "f": "set_speed", - "g": 5, - "id": 2858331716, - "l": true, - "level": 88, - "mainStatBaseValue": 62.0, - "mainStatId": "esh2_armor_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62.0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 5.0 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.09 - ] - ], - "s": "d552", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "esh2_b", - "ct": 1729267806, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2858331717, - "l": true, - "level": 88, - "mainStatBaseValue": 9.0, - "mainStatId": "esh2_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9.0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.07 - ] - ], - "p": 350226992, - "s": "eea9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "edq6r_u", - "ct": 1729314695, - "e": 93862, - "f": "set_immune", - "g": 5, - "id": 2860741627, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ] - ], - "s": "711d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ezl2_b", - "ct": 1729325449, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2861546987, - "l": true, - "level": 88, - "mainStatBaseValue": 9.0, - "mainStatId": "ezl2_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9.0, - null, - null, - 1 - ], - [ - "att_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ] - ], - "p": 596366779, - "s": "38b3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecq6a_u", - "ct": 1729401683, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2866159055, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 738614105, - "s": "66f1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ezl2_n", - "ct": 1729414176, - "e": 93804, - "f": "set_torrent", - "g": 5, - "id": 2867089835, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ezl2_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 5.0 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.07 - ] - ], - "p": 890790459, - "s": "a7d7", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "edg6w_u", - "ct": 1729512730, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2872134014, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 769932771, - "s": "d47d", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "esh2_r", - "ct": 1729612059, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2876701657, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "esh2_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 5.0 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ] - ], - "p": 583954927, - "s": "67e3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "esh2_n", - "ct": 1729687213, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 2879432772, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "esh2_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 5.0 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ] - ], - "s": "d227", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecg6n_u", - "ct": 1729688054, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2879477753, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "def", - 32 - ], - [ - "def", - 34 - ], - [ - "def", - 30 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "def", - 27, - "u" - ] - ], - "s": "5944", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6a_u", - "ct": 1729765849, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 2882078797, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "p": 636577158, - "s": "ec24", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "edd6a_u", - "ct": 1729833710, - "e": 93862, - "f": "set_penetrate", - "g": 5, - "id": 2884841146, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "p": 591089796, - "s": "17a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6h_u", - "ct": 1729836070, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2884937115, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att_rate", - 0.07, - "c", - "change2_att_rate_1_1" - ] - ], - "s": "6240", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecq6w", - "ct": 1729836292, - "e": 73923, - "f": "set_immune", - "g": 4, - "id": 2884944836, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.07 - ] - ], - "s": "f6a9", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecd6w_u", - "ct": 1729923972, - "e": 93863, - "f": "set_penetrate", - "g": 5, - "id": 2888555024, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ] - ], - "s": "8650", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecg6h_u", - "ct": 1729924706, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2888592342, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "def_rate", - 0.08, - "c", - "change2_def_rate_1_2" - ] - ], - "p": 354206748, - "s": "f8c7", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6a_u", - "ct": 1729924928, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2888604282, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "def_rate", - 0.06, - "c", - "change2_def_rate_1_1" - ] - ], - "s": "cb2e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecg6r_u", - "ct": 1729925999, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2888657346, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_ring_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ] - ], - "p": 897188455, - "s": "aa8a", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "edw6b_u", - "ct": 1729927171, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2888717109, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "s": "542f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6w_u", - "ct": 1729957631, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2890193131, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp", - 163 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp", - 168 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp", - 171 - ], - [ - "max_hp", - 168, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "s": "3d00", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6a_u", - "ct": 1729999859, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2891750814, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.05, - "u" - ] - ], - "s": "78f4", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecd6h_u", - "ct": 1730000169, - "e": 93862, - "f": "set_penetrate", - "g": 5, - "id": 2891769837, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "s": "9d99", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eiu31n", - "ct": 1730021478, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 2892903535, - "l": true, - "level": 88, - "mainStatBaseValue": 0.12, - "mainStatId": "iu31_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "s": "f405", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecg6b_u", - "ct": 1730025656, - "e": 93861, - "f": "set_max_hp", - "g": 5, - "id": 2893083603, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.1, - "c", - "change2_max_hp_rate_2_2" - ] - ], - "p": 354206748, - "s": "2015", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecd6r_u", - "ct": 1730025773, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2893088949, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "acc", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ] - ], - "s": "8e07", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecd6a_u", - "ct": 1730031544, - "e": 93803, - "f": "set_penetrate", - "g": 5, - "id": 2893366288, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 461351155, - "s": "d0f5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a", - "ct": 1730031544, - "e": 73865, - "f": "set_speed", - "g": 4, - "id": 2893366289, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "acc", - 0.06 - ] - ], - "p": 313109293, - "s": "395f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecd6w_u", - "ct": 1730032347, - "e": 93805, - "f": "set_penetrate", - "g": 5, - "id": 2893408942, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp", - 189 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ] - ], - "p": 568689715, - "s": "ad53", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecb6a_u", - "ct": 1730102072, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 2896095837, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "s": "e3f7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecd6r", - "ct": 1730113762, - "e": 82031, - "f": "set_penetrate", - "g": 5, - "id": 2896559962, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "res", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "res", - 0.12 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 165 - ], - [ - "att", - 43 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "att", - 37 - ], - [ - "att", - 44 - ] - ], - "s": "5cd5", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6n", - "ct": 1730218022, - "e": 73828, - "f": "set_cri", - "g": 4, - "id": 2900880233, - "l": true, - "level": 85, - "mainStatBaseValue": 0.13, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ] - ], - "s": "1ee6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecd6w", - "ct": 1730252978, - "e": 22970, - "f": "set_penetrate", - "g": 5, - "id": 2901841663, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ] - ], - "s": "ed4f", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "edd6b", - "ct": 1730342595, - "f": "set_penetrate", - "g": 5, - "id": 2905127600, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "edw6_boot_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ] - ], - "s": "5203", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6h", - "ct": 1730343007, - "f": "set_speed", - "g": 5, - "id": 2905144991, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "res", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "p": 568417281, - "s": "230b", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eih9n", - "ct": 1730376412, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2908902062, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ] - ], - "p": 99507012, - "s": "162b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6h_u", - "ct": 1730376955, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2908946579, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "s": "154f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6w_u", - "ct": 1730377070, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2908956268, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.04, - "u" - ] - ], - "s": "f18e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "exc502401", - "ct": 1730384229, - "g": 5, - "id": 2909543438, - "l": true, - "mg": 1111, - "op": [ - [ - "acc", - 0.14 - ], - [ - "ek_c502401", - 3 - ] - ], - "s": "4f20" - }, - { - "code": "eal85b", - "ct": 1730387997, - "e": 82031, - "f": "set_penetrate", - "g": 5, - "id": 2909860807, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "al85_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "acc", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "att", - 39 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.07 - ] - ], - "p": 96079743, - "s": "e977", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecb6r_u", - "ct": 1730388342, - "e": 84375, - "f": "set_res", - "g": 4, - "id": 2909888627, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "acc", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 180 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp", - 176 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp", - 112, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "c028", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eal85r_u", - "ct": 1730388550, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2909905157, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "def_rate", - 0.1, - "c", - "change2_def_rate_2_2" - ] - ], - "p": 784315107, - "s": "466d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "exc502401", - "ct": 1730437251, - "g": 5, - "id": 2911975864, - "l": true, - "mg": 1111, - "op": [ - [ - "acc", - 0.16 - ], - [ - "ek_c502401", - 3 - ] - ], - "s": "1936" - }, - { - "code": "exc502401", - "ct": 1730437297, - "g": 5, - "id": 2911978551, - "l": true, - "mg": 1111, - "op": [ - [ - "acc", - 0.16 - ], - [ - "ek_c502401", - 3 - ] - ], - "s": "84b6" - }, - { - "code": "exc502401", - "ct": 1730437303, - "g": 5, - "id": 2911978870, - "mg": 1111, - "op": [ - [ - "acc", - 0.08 - ], - [ - "ek_c502401", - 3 - ] - ], - "s": "405f" - }, - { - "code": "exc502401", - "ct": 1730437307, - "g": 5, - "id": 2911979051, - "l": true, - "mg": 1111, - "op": [ - [ - "acc", - 0.15 - ], - [ - "ek_c502401", - 2 - ] - ], - "p": 518782830, - "s": "bffb" - }, - { - "code": "ess16w", - "ct": 1730442254, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2912237093, - "l": true, - "level": 78, - "mainStatBaseValue": 95, - "mainStatId": "ss16_weap_m", - "mainStatType": "att", - "mainStatValue": 475, - "mg": 1111, - "op": [ - [ - "att", - 95 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "s": "4587", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecd6a_u", - "ct": 1730618060, - "e": 93803, - "f": "set_penetrate", - "g": 5, - "id": 2919857177, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp", - 195 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ] - ], - "p": 306859366, - "s": "583d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecg6r_u", - "ct": 1730619261, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2919913866, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "c04a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecq6w_u", - "ct": 1730639478, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2920804333, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "684d", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6a_u", - "ct": 1730641513, - "e": 93863, - "f": "set_speed", - "g": 5, - "id": 2920906372, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ] - ], - "p": 226377978, - "s": "967a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "edd6h_u", - "ct": 1730646849, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2921171740, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "63c5", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecg6a", - "ct": 1730647322, - "e": 82084, - "f": "set_max_hp", - "g": 5, - "id": 2921193986, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.03 - ] - ], - "s": "9379", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecq6h_u", - "ct": 1730725563, - "e": 93803, - "f": "set_immune", - "g": 5, - "id": 2923922512, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "844e", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecq6a_u", - "ct": 1730725768, - "e": 93862, - "f": "set_immune", - "g": 5, - "id": 2923932580, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.05, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "s": "3701", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecq6a_u", - "ct": 1730860316, - "e": 93804, - "f": "set_immune", - "g": 5, - "id": 2928905503, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.04 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "s": "cbd1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecg6h_u", - "ct": 1730860974, - "e": 84375, - "f": "set_max_hp", - "g": 4, - "id": 2928939270, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "3371", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6a", - "ct": 1730902335, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2930825312, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ] - ], - "s": "5eff", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "exc110401", - "ct": 1730963555, - "g": 5, - "id": 2932250786, - "l": true, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.1 - ], - [ - "ek_c110401", - 3 - ] - ], - "s": "768" - }, - { - "code": "ecw6h_u", - "ct": 1731564633, - "e": 84375, - "f": "set_acc", - "g": 4, - "id": 2952219767, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "def", - 32 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "def", - 9, - "u" - ] - ], - "p": 649028156, - "s": "c078", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eah25w", - "ct": 1731567964, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2952380458, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah25_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "p": 636577158, - "s": "dae3", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eah25h", - "ct": 1731743367, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2959319273, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah25_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "a42a", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eah25a", - "ct": 1732283728, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2976075051, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah25_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.08 - ] - ], - "s": "9cec", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eah25b", - "ct": 1732698166, - "e": 93862, - "f": "set_res", - "g": 5, - "id": 2987909286, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah25_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.07 - ] - ], - "s": "9e88", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eah25r", - "ct": 1732859569, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2992021256, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah25_ring_m1", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.09 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ] - ], - "s": "fa20", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eiu12b", - "ct": 1732884545, - "f": "set_shield", - "g": 5, - "id": 2992817612, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "iu12_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ] - ], - "s": "e4dd", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eih9n", - "ct": 1732950790, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2994929770, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.06 - ] - ], - "p": 795195383, - "s": "5237", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6h", - "ct": 1733031623, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2997684519, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "p": 313109293, - "s": "b5e7", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6w_u", - "ct": 1733034826, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2997826071, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "p": 323638178, - "s": "3657", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eah25n", - "ct": 1733202530, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 3003626806, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah25_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.05 - ] - ], - "p": 28398305, - "s": "cb19", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "exc116101", - "ct": 1733452917, - "g": 5, - "id": 3009759097, - "mg": 1111, - "op": [ - [ - "cri", - 0.1 - ], - [ - "ek_c116101", - 1 - ] - ], - "s": "d286" - }, - { - "code": "exc116101", - "ct": 1733452922, - "g": 5, - "id": 3009759245, - "mg": 1111, - "op": [ - [ - "cri", - 0.06 - ], - [ - "ek_c116101", - 2 - ] - ], - "p": 690904230, - "s": "c25e" - }, - { - "code": "ecw6w", - "ct": 1733453611, - "f": "set_speed", - "g": 5, - "id": 3009780724, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "att_rate", - 0.06 - ], - [ - "acc", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "p": 313109293, - "s": "cf58", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecq6a_u", - "ct": 1733453670, - "e": 84375, - "f": "set_immune", - "g": 4, - "id": 3009782638, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "s": "1be3", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6r", - "ct": 1733454311, - "f": "set_speed", - "g": 5, - "id": 3009803071, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "def", - 35 - ] - ], - "p": 568417281, - "s": "89a3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecg6n_u", - "ct": 1733454790, - "e": 84375, - "f": "set_max_hp", - "g": 4, - "id": 3009817004, - "l": true, - "level": 90, - "mainStatBaseValue": 0.12, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "cri", - 0.12, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "18e2", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecg6w_u", - "ct": 1733455486, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3009837190, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 829105288, - "s": "8daa", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "edg6w_u", - "ct": 1733464746, - "e": 93862, - "f": "set_max_hp", - "g": 5, - "id": 3010108417, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 781837305, - "s": "fb3b", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecd6a_u", - "ct": 1733645493, - "e": 93805, - "f": "set_torrent", - "g": 5, - "id": 3014591877, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.06, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ] - ], - "p": 494187001, - "s": "33c5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a", - "ct": 1733647059, - "e": 82086, - "f": "set_speed", - "g": 5, - "id": 3014632987, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "7398", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "edg6r_u", - "ct": 1733655484, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3014865229, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "p": 354206748, - "s": "efef", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "exc105001", - "ct": 1733708062, - "g": 5, - "id": 3016053302, - "mg": 1111, - "op": [ - [ - "acc", - 0.15 - ], - [ - "ek_c105001", - 2 - ] - ], - "p": 323638178, - "s": "c18" - }, - { - "code": "exc104701", - "ct": 1733709134, - "g": 5, - "id": 3016083581, - "mg": 1111, - "op": [ - [ - "cri", - 0.07 - ], - [ - "ek_c104701", - 2 - ] - ], - "p": 96079743, - "s": "f066" - }, - { - "code": "eal85b_u", - "ct": 1733722137, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3016467392, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp", - 192 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "acc", - 0.05, - "u" - ] - ], - "s": "5fa1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eal85b_u", - "ct": 1733722153, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 3016467781, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "s": "6bcd", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecq6a_u", - "ct": 1733722816, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 3016485045, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ] - ], - "p": 781837305, - "s": "4ab1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "edq6h_u", - "ct": 1733793249, - "e": 93803, - "f": "set_immune", - "g": 5, - "id": 3018034125, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "p": 798777729, - "s": "3649", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ela11n", - "ct": 1733799304, - "e": 93750, - "f": "set_def", - "g": 5, - "id": 3018188598, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la11_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 3 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "edw6r", - "ct": 1733885736, - "f": "set_speed", - "g": 5, - "id": 3020008154, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "edw6_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.05 - ] - ], - "s": "dd13", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ela11b", - "ct": 1733985253, - "e": 93750, - "f": "set_def", - "g": 5, - "id": 3022748232, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la11_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.09 - ] - ], - "p": 604874070, - "s": "87ba", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ela11w", - "ct": 1733986660, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3022819464, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "la11_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.09 - ] - ], - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecg6a_u", - "ct": 1734064408, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3025572911, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "c28b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ela11r", - "ct": 1734354105, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3034403750, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la11_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ] - ], - "p": 799495489, - "s": "a5db", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ela11a", - "ct": 1734354119, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3034404358, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "la11_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ] - ], - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecg6w_u", - "ct": 1734413300, - "e": 93862, - "f": "set_max_hp", - "g": 5, - "id": 3036014604, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "p": 604874070, - "s": "8309", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "edw6b_u", - "ct": 1734504623, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3038579662, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0 - ], - [ - "max_hp_rate", - 0 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.14, - "c", - "change2_max_hp_rate_3_1" - ] - ], - "p": 620426700, - "s": "2ca6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecd6n", - "ct": 1734505606, - "f": "set_torrent", - "g": 5, - "id": 3038608646, - "level": 85, - "mainStatBaseValue": 0.11, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.55, - "mg": 1111, - "op": [ - [ - "cri", - 0.11 - ], - [ - "res", - 0.07 - ], - [ - "att", - 35 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ] - ], - "s": "59af", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecg6a_u", - "ct": 1734506997, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3038648278, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "s": "cd59", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecg6w_u", - "ct": 1734507251, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3038655513, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "s": "2329", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6a_u", - "ct": 1734525497, - "e": 93921, - "f": "set_speed", - "g": 5, - "id": 3039251103, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "p": 596366779, - "s": "924d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ela11h", - "ct": 1734656339, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3041542218, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "la11_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.09 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "p": 799495489, - "s": "4842", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6h", - "ct": 1734699359, - "e": 28217, - "f": "set_speed", - "g": 5, - "id": 3042345319, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ] - ], - "p": 207190343, - "s": "d01", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6w_u", - "ct": 1734699687, - "e": 93863, - "f": "set_speed", - "g": 5, - "id": 3042353591, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "res", - 0.04, - "u" - ] - ], - "s": "7d28", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "edg6n", - "ct": 1734759052, - "f": "set_max_hp", - "g": 5, - "id": 3043275465, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "edw6_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "517f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecq6w_u", - "ct": 1734760016, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 3043296212, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ] - ], - "s": "aa6c", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecg6a_u", - "ct": 1734760381, - "e": 93862, - "f": "set_max_hp", - "g": 5, - "id": 3043303519, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "s": "8b32", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecg6w_u", - "ct": 1734770403, - "e": 84375, - "f": "set_max_hp", - "g": 4, - "id": 3043504095, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "63b4", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "exc100701", - "ct": 1735223066, - "g": 5, - "id": 3054113254, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "ek_c100701", - 1 - ] - ], - "s": "584b" - }, - { - "code": "exc100701", - "ct": 1735223079, - "g": 5, - "id": 3054113679, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "ek_c100701", - 3 - ] - ], - "s": "75c9" - }, - { - "code": "exc100701", - "ct": 1735223097, - "g": 5, - "id": 3054114234, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.14 - ], - [ - "ek_c100701", - 2 - ] - ], - "p": 793619248, - "s": "9ecf" - }, - { - "code": "eiu52h", - "ct": 1735371018, - "e": 93861, - "f": "set_cri_dmg", - "g": 5, - "id": 3057509140, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu52_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "p": 6911147, - "s": "55b6", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eiu11a", - "ct": 1735634820, - "e": 93803, - "f": "set_max_hp", - "g": 5, - "id": 3064171046, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu11_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.09 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.08 - ] - ], - "s": "4f8d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eih9n", - "ct": 1735634891, - "e": 93802, - "f": "set_penetrate", - "g": 5, - "id": 3064172375, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ] - ], - "p": 669363338, - "s": "b093", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6b_u", - "ct": 1736067498, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3073835153, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "319c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6w_u", - "ct": 1736082229, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 3074234480, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "a443", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6a_u", - "ct": 1736129971, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3075130467, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "5a8d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6w", - "ct": 1736595889, - "e": 40460, - "f": "set_speed", - "g": 5, - "id": 3090308165, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.04 - ] - ], - "p": 207190343, - "s": "a97e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6n", - "ct": 1736596826, - "f": "set_speed", - "g": 5, - "id": 3090352829, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_neck_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.05 - ] - ], - "p": 207190343, - "s": "7b4b", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6r_u", - "ct": 1736779219, - "e": 93863, - "f": "set_acc", - "g": 5, - "id": 3097347334, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "9b79", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecs18n", - "ct": 1736951477, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 3102946982, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "cs18_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ] - ], - "p": 445022861, - "s": "5548", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6w_u", - "ct": 1737468152, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3113926876, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ] - ], - "s": "5d69", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "exc103801", - "ct": 1737725262, - "g": 5, - "id": 3121804145, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "ek_c103801", - 1 - ] - ], - "s": "7eb3" - }, - { - "code": "exc103801", - "ct": 1737725268, - "g": 5, - "id": 3121804448, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "ek_c103801", - 2 - ] - ], - "p": 795195383, - "s": "9b5a" - }, - { - "code": "exc103801", - "ct": 1737725366, - "g": 5, - "id": 3121808911, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.09 - ], - [ - "ek_c103801", - 3 - ] - ], - "s": "f0fa" - }, - { - "code": "eiu31r", - "ct": 1737887007, - "e": 93862, - "f": "set_scar", - "g": 5, - "id": 3125874171, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu31_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "s": "cab7", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eiu41a", - "ct": 1738304926, - "f": "set_counter", - "g": 5, - "id": 3138332158, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu41_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ] - ], - "p": 717223364, - "s": "e26f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eiu12w", - "ct": 1738309540, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3138489428, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu12_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ] - ], - "s": "94d5", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6h_u", - "ct": 1738487563, - "e": 84375, - "f": "set_cri", - "g": 4, - "id": 3143494229, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "att", - 44 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "b332", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6a_u", - "ct": 1738488130, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3143507304, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "s": "4400", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ess13n", - "ct": 1738489811, - "e": 82144, - "f": "set_speed", - "g": 5, - "id": 3143543526, - "l": true, - "level": 78, - "mainStatBaseValue": 0.13, - "mainStatId": "ss13_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ] - ], - "p": 596366779, - "s": "a7cc", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6w_u", - "ct": 1738588296, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 3145709811, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_2_1" - ] - ], - "p": 596366779, - "s": "c938", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecs14n", - "ct": 1738595169, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3145909262, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "cs14_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.09 - ] - ], - "p": 110838566, - "s": "aa30", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eah26w", - "ct": 1738749296, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3148997935, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah26_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.09 - ], - [ - "att_rate", - 0.08 - ] - ], - "p": 742543115, - "s": "12bf", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6w_u", - "ct": 1738749541, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 3149002851, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.05, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "s": "3736", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eal85b_u", - "ct": 1738750478, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 3149023177, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "att", - 43 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att", - 38 - ], - [ - "att", - 37 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att", - 39 - ], - [ - "att", - 34 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "att", - 55, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "3e15", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eal85r_u", - "ct": 1738750758, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 3149029539, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "s": "70c0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6h_u", - "ct": 1738846919, - "e": 93805, - "f": "set_cri", - "g": 5, - "id": 3152011446, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "p": 613630545, - "s": "fd21", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecd6n_u", - "ct": 1738996873, - "e": 84470, - "f": "set_penetrate", - "g": 4, - "id": 3156124168, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_neck_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp", - 163 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 56, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "fc05", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eah26h", - "ct": 1739025892, - "e": 93862, - "f": "set_penetrate", - "g": 5, - "id": 3157611187, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah26_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.05 - ] - ], - "p": 704271358, - "s": "3ad2", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecg6h_u", - "ct": 1739027653, - "e": 84411, - "f": "set_max_hp", - "g": 4, - "id": 3157711127, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "att", - 32 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 1 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "s": "e12f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ewb1h", - "ct": 1739081066, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 3159488393, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "wb1_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ] - ], - "p": 596366779, - "s": "3eb9", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecg6a_u", - "ct": 1739081914, - "e": 84375, - "f": "set_max_hp", - "g": 4, - "id": 3159532319, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "d7d0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecd6a_u", - "ct": 1739085716, - "e": 93862, - "f": "set_penetrate", - "g": 5, - "id": 3159728901, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ] - ], - "s": "1e2d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecd6h_u", - "ct": 1739452905, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3168939629, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.08, - "c", - "change2_cri_dmg_2_1" - ] - ], - "s": "8172", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6a", - "ct": 1739457970, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3169174652, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.08 - ] - ], - "s": "b1a5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6r_u", - "ct": 1739706315, - "e": 84471, - "f": "set_speed", - "g": 4, - "id": 3175654151, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_ring_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "def", - 29 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "def", - 9, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 649028156, - "s": "1b74", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eah26a", - "ct": 1739706589, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3175666068, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah26_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "p": 490684210, - "s": "a09b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6w_u", - "ct": 1739707104, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3175688179, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 190 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.05, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp", - 56, - "u" - ] - ], - "p": 898971885, - "s": "4f5f", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "exc114201", - "ct": 1739795245, - "g": 5, - "id": 3177688081, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "ek_c114201", - 3 - ] - ], - "p": 669363338, - "s": "eab8" - }, - { - "code": "ecw6n_u", - "ct": 1739944879, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3180299346, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp", - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 56, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp", - 170, - "c", - "change2_max_hp_1_1" - ] - ], - "p": 739641017, - "s": "1aa3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eah26b", - "ct": 1740143390, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3184327459, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah26_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "p": 669363338, - "s": "8d57", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eah26r", - "ct": 1740221813, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3186369253, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah26_ring_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.08 - ] - ], - "p": 847822619, - "s": "dd0e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecb6w_u", - "ct": 1740274029, - "e": 93862, - "f": "set_cri_dmg", - "g": 5, - "id": 3187637280, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 461351155, - "s": "8f41", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecg6h_u", - "ct": 1740274953, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3187659883, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 781837305, - "s": "45ed", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6h_u", - "ct": 1740276347, - "e": 93804, - "f": "set_cri_dmg", - "g": 5, - "id": 3187694618, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "a0dc", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecg6h_u", - "ct": 1740282191, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3187874031, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "3f69", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ewb1n", - "ct": 1740635250, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3195549081, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "wb1_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "speed", - 5 - ], - [ - "def_rate", - 0.09 - ], - [ - "def", - 40 - ], - [ - "max_hp", - 229 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ] - ], - "p": 218403497, - "s": "f660", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eal85r_u", - "ct": 1740639600, - "e": 93804, - "f": "set_cri_dmg", - "g": 5, - "id": 3195779873, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ] - ], - "p": 461351155, - "s": "6d8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eah26n", - "ct": 1740708259, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3197659888, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ah26_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 5 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ] - ], - "p": 717223364, - "s": "16a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6w_u", - "ct": 1740710069, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 3197717735, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 226377978, - "s": "24a6", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eiu11b", - "ct": 1740754046, - "e": 93750, - "f": "set_def", - "g": 5, - "id": 3199240802, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu11_boot_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "res", - 0 - ], - [ - "res", - 0.11, - "c", - "change2_res_2_2" - ] - ], - "s": "938", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecg6a_u", - "ct": 1740829681, - "e": 93805, - "f": "set_max_hp", - "g": 5, - "id": 3201796554, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "res", - 0.05, - "u" - ] - ], - "s": "408a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecd6b_u", - "ct": 1740880935, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3203293846, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "42e1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6h", - "ct": 1741015149, - "e": 1865, - "f": "set_acc", - "g": 4, - "id": 3207574523, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "3149", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ela12w", - "ct": 1742386877, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 3237390039, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "la12_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ela12b", - "ct": 1742540715, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 3239610284, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la12_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "p": 559859824, - "s": "fbb2", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ela12a", - "ct": 1742544154, - "e": 93803, - "f": "set_counter", - "g": 5, - "id": 3239657261, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "la12_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ela12n", - "ct": 1742544157, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 3239657322, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la12_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.09 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.07 - ] - ], - "p": 781837305, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ela12r", - "ct": 1742707661, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 3242125320, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la12_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "p": 559859824, - "s": "4fb8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecs19a", - "ct": 1742906483, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 3245041888, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "cs19_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "def_rate", - 0.09 - ], - [ - "cri_dmg", - 0.08 - ] - ], - "p": 640588979, - "s": "3146", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ela12h", - "ct": 1743136320, - "e": 93862, - "f": "set_immune", - "g": 5, - "id": 3249190635, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "la12_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 3 - ] - ], - "s": "ba73", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eih9n", - "ct": 1743410389, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3257150932, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ] - ], - "p": 847822619, - "s": "a72f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eih6w", - "ct": 1743410398, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3257151092, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "imh_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "8e99", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eiu21r", - "ct": 1743410407, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3257151282, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu21_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.09 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ] - ], - "p": 892353109, - "s": "f430", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eih9r", - "ct": 1743410569, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 3257155015, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "imh_ring_m11", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "318b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "exc115001", - "ct": 1744372854, - "g": 5, - "id": 3278551185, - "mg": 1111, - "op": [ - [ - "acc", - 0.13 - ], - [ - "ek_c115001", - 3 - ] - ], - "s": "dba4" - }, - { - "code": "exc115001", - "ct": 1744372861, - "g": 5, - "id": 3278551462, - "mg": 1111, - "op": [ - [ - "acc", - 0.12 - ], - [ - "ek_c115001", - 3 - ] - ], - "s": "5353" - }, - { - "code": "exc115001", - "ct": 1744372864, - "g": 5, - "id": 3278551560, - "mg": 1111, - "op": [ - [ - "acc", - 0.12 - ], - [ - "ek_c115001", - 2 - ] - ], - "s": "98e4" - }, - { - "code": "exc115001", - "ct": 1744372867, - "g": 5, - "id": 3278551690, - "mg": 1111, - "op": [ - [ - "acc", - 0.13 - ], - [ - "ek_c115001", - 1 - ] - ], - "p": 461351155, - "s": "23b4" - }, - { - "code": "ecw6b_u", - "ct": 1744436055, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3280222776, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "att", - 44 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att", - 11, - "u" - ] - ], - "s": "5673", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecd6h_u", - "ct": 1744447701, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3280658690, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "431c", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecg6a_u", - "ct": 1744453039, - "e": 93805, - "f": "set_max_hp", - "g": 5, - "id": 3280838468, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "c9b5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecd6w_u", - "ct": 1744453982, - "e": 84375, - "f": "set_penetrate", - "g": 4, - "id": 3280870641, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0 - ], - [ - "speed", - 2 - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.08, - "c", - "change2_att_rate_1_2" - ] - ], - "s": "2f4e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6h_u", - "ct": 1744454440, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3280887042, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 898971885, - "s": "8d0b", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "edd6r_u", - "ct": 1744454954, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3280905233, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "eaf4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6w_u", - "ct": 1744461566, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3281151044, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp", - 163 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp", - 174 - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "s": "e34", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecb6a_u", - "ct": 1744463749, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3281237276, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "50e7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecd6a", - "ct": 1744470774, - "f": "set_penetrate", - "g": 5, - "id": 3281508679, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.05 - ] - ], - "s": "67ff", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "edw6w_u", - "ct": 1744511327, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3282207730, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 1 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "8b32", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6a_u", - "ct": 1744541636, - "e": 93863, - "f": "set_speed", - "g": 5, - "id": 3283232947, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "res", - 0.04, - "u" - ] - ], - "s": "4a2c", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecg6a_u", - "ct": 1744544387, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3283323107, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "max_hp", - 203, - "c", - "change2_max_hp_1_2" - ] - ], - "p": 604874070, - "s": "828f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6w_u", - "ct": 1744546644, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3283401096, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 0 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.07, - "u" - ], - [ - "speed", - 4, - "c", - "change2_speed_2_1" - ] - ], - "s": "4b0d", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6a_u", - "ct": 1744721458, - "e": 93863, - "f": "set_speed", - "g": 5, - "id": 3287564368, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "1001", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "exc110401", - "ct": 1744811849, - "g": 5, - "id": 3289762134, - "l": true, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.14 - ], - [ - "ek_c110401", - 3 - ] - ], - "p": 769932771, - "s": "c8a2" - }, - { - "code": "eal85n_u", - "ct": 1744979588, - "e": 93863, - "f": "set_counter", - "g": 5, - "id": 3293734850, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 1 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp", - 185 - ], - [ - "res", - 0.08 - ], - [ - "max_hp", - 185 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "p": 559859824, - "s": "83a8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecg6r_u", - "ct": 1745042963, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3295211854, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "f9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecg6n_u", - "ct": 1745043879, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3295239257, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "max_hp", - 190 - ], - [ - "def_rate", - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp", - 185 - ], - [ - "max_hp", - 200 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp", - 168, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "def_rate", - 0.07, - "c", - "change2_def_rate_1_1" - ] - ], - "p": 769932771, - "s": "5ac4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6a_u", - "ct": 1745078235, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3296274104, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.07, - "u" - ] - ], - "p": 769932771, - "s": "be4", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6r_u", - "ct": 1745140029, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3297681678, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ] - ], - "s": "9bad", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecg6a_u", - "ct": 1745143160, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3297773595, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 1 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "s": "4acb", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecb6n_u", - "ct": 1745159196, - "e": 84375, - "f": "set_cri_dmg", - "g": 4, - "id": 3298286939, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "def", - 32 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def", - 9, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 6911147, - "s": "82d1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecb6a", - "ct": 1745161315, - "e": 73828, - "f": "set_cri_dmg", - "g": 4, - "id": 3298359449, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "p": 6911147, - "s": "c759", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecg6n_u", - "ct": 1745162005, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3298381574, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "att", - 44 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 898971885, - "s": "1471", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6w_u", - "ct": 1745162233, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3298389288, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp", - 191 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ], - [ - "max_hp", - 176 - ], - [ - "max_hp", - 112, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "62f5", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecg6a_u", - "ct": 1745162920, - "e": 93863, - "f": "set_max_hp", - "g": 5, - "id": 3298412804, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp", - 190 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp", - 170 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp", - 112, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 326928979, - "s": "835e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecs15w", - "ct": 1745217248, - "e": 82086, - "f": "set_speed", - "g": 5, - "id": 3299352579, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "cs15_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.06 - ] - ], - "s": "c5c1", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecd6w", - "ct": 1745561500, - "e": 73828, - "f": "set_penetrate", - "g": 4, - "id": 3307472020, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.04 - ], - [ - "att_rate", - 0.05 - ] - ], - "s": "d36f", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "edw6n", - "ct": 1745564587, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3307573915, - "l": true, - "level": 85, - "mainStatBaseValue": 0.13, - "mainStatId": "edw6_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "5bc3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "edd6r", - "ct": 1745571988, - "e": 82031, - "f": "set_penetrate", - "g": 5, - "id": 3307802759, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "edw6_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ] - ], - "s": "e918", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecb6a_u", - "ct": 1745585656, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3308249556, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "s": "def4", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecd6r_u", - "ct": 1745587954, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3308343543, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "d38b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecd6a_u", - "ct": 1745662795, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3310481179, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "p": 899521626, - "s": "be27", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a_u", - "ct": 1745665326, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3310549559, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp", - 165 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 56, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "s": "5147", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecb6a_u", - "ct": 1745756410, - "e": 84375, - "f": "set_cri_dmg", - "g": 4, - "id": 3312815132, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 11185757, - "s": "882e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6w_u", - "ct": 1745757844, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 3312859225, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "f5df", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6h_u", - "ct": 1745757844, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3312859226, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ] - ], - "s": "272f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6a_u", - "ct": 1745757844, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 3312859227, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "516f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6b_u", - "ct": 1745757844, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3312859228, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ] - ], - "p": 6844892, - "s": "92c0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6n", - "ct": 1745757844, - "e": 3964, - "f": "set_acc", - "g": 5, - "id": 3312859229, - "l": true, - "level": 85, - "mainStatBaseValue": 0.13, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.05 - ] - ], - "s": "3805", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6r_u", - "ct": 1745757844, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 3312859230, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "acc", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.07, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "s": "4b9a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6w_u", - "ct": 1745761131, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 3312964038, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ] - ], - "s": "52ff", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "exc302601", - "ct": 1745833628, - "g": 5, - "id": 3322796588, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.1 - ], - [ - "ek_c302601", - 3 - ] - ], - "p": 11185757, - "s": "26e3" - }, - { - "code": "elre1b", - "ct": 1745851926, - "f": "set_att", - "g": 5, - "id": 3328057157, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "lre1_boot_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "e834", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "elre3b", - "ct": 1745851981, - "e": 82031, - "f": "set_res", - "g": 5, - "id": 3328073541, - "level": 78, - "mainStatBaseValue": 8, - "mainStatId": "lre3_boot_m1", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "3fbf", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "elre3w", - "ct": 1745851994, - "e": 82086, - "f": "set_immune", - "g": 5, - "id": 3328077706, - "l": true, - "level": 78, - "mainStatBaseValue": 95, - "mainStatId": "lre3_weap_m1", - "mainStatType": "att", - "mainStatValue": 475, - "mg": 1111, - "op": [ - [ - "att", - 95 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.06 - ] - ], - "s": "b6df", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eih9n", - "ct": 1745852040, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3328091599, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ] - ], - "p": 899521626, - "s": "139a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eih6w", - "ct": 1745852043, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3328092852, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "imh_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.06 - ] - ], - "s": "bcaa", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eah27w", - "ct": 1745927173, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3344763264, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah27_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ] - ], - "p": 799495489, - "s": "c804", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eal85r_u", - "ct": 1746073203, - "e": 93863, - "f": "set_torrent", - "g": 5, - "id": 3377491678, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 1 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att", - 41 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "att", - 35 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att", - 22, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.05, - "u" - ] - ], - "p": 890790459, - "s": "737b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eal85b_u", - "ct": 1746077387, - "e": 93922, - "f": "set_torrent", - "g": 5, - "id": 3378596409, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 1 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "att", - 0 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "att", - 42, - "c", - "change2_att_1_2" - ] - ], - "p": 890790459, - "s": "4e31", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecb6h_u", - "ct": 1746110649, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3387407453, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 736028830, - "s": "e910", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6a_u", - "ct": 1746110649, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3387407474, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "b1b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecb6b", - "ct": 1746110649, - "e": 82031, - "f": "set_cri_dmg", - "g": 5, - "id": 3387407494, - "l": true, - "level": 85, - "mainStatBaseValue": 8.0, - "mainStatId": "cra6_boot_m", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8.0 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "acc", - 0.06 - ] - ], - "s": "83b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6r", - "ct": 1746110649, - "e": 82031, - "f": "set_acc", - "g": 5, - "id": 3387407548, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.06 - ] - ], - "s": "ee00", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6w", - "ct": 1746110759, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3387439076, - "l": true, - "level": 85, - "mainStatBaseValue": 100.0, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100.0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "eb0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6h_u", - "ct": 1746110759, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3387439108, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 1 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "p": 669363338, - "s": "65e3", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6h", - "ct": 1746182630, - "e": 82031, - "f": "set_res", - "g": 5, - "id": 3401950817, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ] - ], - "s": "2647", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6a", - "ct": 1746203010, - "e": 82031, - "f": "set_vampire", - "g": 5, - "id": 3407019852, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "res", - 0.07 - ], - [ - "max_hp", - 197 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.04 - ] - ], - "s": "30a2", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecb6h_u", - "ct": 1746206728, - "e": 84375, - "f": "set_res", - "g": 4, - "id": 3407759413, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.08, - "c", - "change2_def_rate_1_2" - ] - ], - "s": "9c21", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6w_u", - "ct": 1746207412, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3407878415, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 1 - ], - [ - "max_hp", - 174 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp", - 172 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp", - 112, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "s": "e79c", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecb6a_u", - "ct": 1746209930, - "e": 93863, - "f": "set_cri_dmg", - "g": 5, - "id": 3408283947, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "b7c2", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecb6a_u", - "ct": 1746211791, - "e": 93863, - "f": "set_cri_dmg", - "g": 5, - "id": 3408554116, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.07, - "u" - ] - ], - "s": "7ad5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eah27h", - "ct": 1746243310, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3413244272, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah27_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.06 - ] - ], - "s": "4d58", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6a", - "ct": 1746266052, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3418588636, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ] - ], - "s": "9ee1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecb6h_u", - "ct": 1746368215, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 3438671468, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.09, - "c", - "change2_def_rate_2_1" - ] - ], - "s": "4133", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6w_u", - "ct": 1746429058, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3445500372, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 1 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4.0 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "p": 899011010, - "s": "3f7f", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6h_u", - "ct": 1746429060, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3445500628, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4.0 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "p": 892353109, - "s": "c6ef", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6a_u", - "ct": 1746429064, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3445501118, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4.0 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "s": "1bd5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6b_u", - "ct": 1746429068, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3445501481, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.05, - "u" - ] - ], - "s": "7395", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6n_u", - "ct": 1746429072, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 3445501933, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4.0 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "p": 892353109, - "s": "842f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6r_u", - "ct": 1746429075, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3445502296, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4.0 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "p": 739641017, - "s": "9dd9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eah27a", - "ct": 1746498498, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3450048620, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah27_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ] - ], - "s": "e7a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eep_a", - "ct": 1746680176, - "e": 93750, - "f": "set_def", - "g": 5, - "id": 3457782032, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ep_armor_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ] - ], - "s": "884", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eep_w", - "ct": 1746680231, - "e": 93750, - "f": "set_def", - "g": 5, - "id": 3457788577, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ep_weapon_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "speed", - 3 - ], - [ - "res", - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.09, - "c", - "change2_res_2_1" - ] - ], - "s": "b395", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eal85b_u", - "ct": 1746681615, - "e": 93750, - "f": "set_def", - "g": 5, - "id": 3457958611, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "def", - 0 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "def", - 0 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "def", - 61, - "c", - "change2_def_2_2" - ] - ], - "s": "9517", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecg6n_u", - "ct": 1746771226, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3462816900, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp", - 164 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp", - 174 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp", - 197 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "max_hp", - 168, - "u" - ] - ], - "p": 830235768, - "s": "7184", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6a", - "ct": 1746862329, - "f": "set_acc", - "g": 5, - "id": 3466725563, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "a878", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a_u", - "ct": 1746862332, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 3466725667, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 613630545, - "s": "1fdc", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecb6w", - "ct": 1746971310, - "f": "set_cri_dmg", - "g": 4, - "id": 3471477600, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "acc", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp", - 169 - ] - ], - "p": 28393107, - "s": "59ac", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecd6w_u", - "ct": 1747005863, - "e": 93922, - "f": "set_torrent", - "g": 5, - "id": 3472662654, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4.0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "c44a", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecd6a", - "ct": 1747005866, - "e": 82031, - "f": "set_torrent", - "g": 5, - "id": 3472662776, - "l": true, - "level": 85, - "mainStatBaseValue": 60.0, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60.0, - null, - null, - 2 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4.0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ] - ], - "s": "737a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecd6r_u", - "ct": 1747005873, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 3472663055, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 3 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4.0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.06, - "u" - ] - ], - "s": "6b6d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecd6h_u", - "ct": 1747005878, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 3472663283, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4.0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "86e1", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecd6b_u", - "ct": 1747005885, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 3472663530, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "3ae1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecd6n_u", - "ct": 1747005891, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 3472663787, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "att", - 0 - ], - [ - "speed", - 4.0 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "att", - 45, - "c", - "change2_att_1_2" - ] - ], - "s": "9258", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecb6n", - "ct": 1747006450, - "f": "set_cri_dmg", - "g": 4, - "id": 3472685973, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "def", - 28 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.04 - ] - ], - "p": 28393107, - "s": "66b9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecb6w_u", - "ct": 1747006762, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3472699406, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 640588979, - "s": "77be", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecb6h_u", - "ct": 1747006762, - "e": 93922, - "f": "set_cri_dmg", - "g": 5, - "id": 3472699407, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 640588979, - "s": "7105", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6a_u", - "ct": 1747006762, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3472699408, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 158971995, - "s": "78a6", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecb6b_u", - "ct": 1747006762, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3472699410, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 899521626, - "s": "94d9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecd6n_u", - "ct": 1747006762, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3472699411, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "efef", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecd6r_u", - "ct": 1747006762, - "e": 93922, - "f": "set_penetrate", - "g": 5, - "id": 3472699412, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "e2d2", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecb6b_u", - "ct": 1747050957, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 3475507981, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "s": "2f55", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "eah27b", - "ct": 1747206216, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3481551120, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah27_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "1747", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecb6a_u", - "ct": 1747206905, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 3481574936, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.1, - "c", - "change2_max_hp_rate_2_2" - ] - ], - "s": "241c", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6w", - "ct": 1747310699, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3486112364, - "l": true, - "level": 85, - "mainStatBaseValue": 100.0, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100.0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "e667", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6h_u", - "ct": 1747310699, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3486112365, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "c47d", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6a_u", - "ct": 1747310699, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3486112366, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 5 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "4269", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6b_u", - "ct": 1747310699, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3486112367, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ] - ], - "s": "7b45", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6r", - "ct": 1747310699, - "e": 1982, - "f": "set_cri", - "g": 5, - "id": 3486112369, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "s": "7e6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eih9n", - "ct": 1747314451, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3486339758, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "58a2", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eal85n_u", - "ct": 1747315336, - "e": 93922, - "f": "set_vampire", - "g": 5, - "id": 3486400547, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "max_hp", - 172 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0 - ], - [ - "res", - 0 - ], - [ - "max_hp", - 56, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "res", - 0.13, - "c", - "change2_res_3_2" - ] - ], - "p": 48988520, - "s": "d24a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eal85r_u", - "ct": 1747315664, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 3486421961, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0 - ], - [ - "res", - 0.08 - ], - [ - "def", - 30 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def", - 34 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 48988520, - "s": "9f4c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecb6b", - "ct": 1747453257, - "f": "set_cri_dmg", - "g": 4, - "id": 3491022327, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_boot_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "att_rate", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 2 - ] - ], - "p": 28393107, - "s": "c170", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecb6w_u", - "ct": 1747454139, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3491059817, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 613630545, - "s": "2dfa", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecb6h_u", - "ct": 1747454139, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3491059818, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "p": 899521626, - "s": "ad9b", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecb6a_u", - "ct": 1747454139, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3491059819, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "7c56", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecb6b_u", - "ct": 1747454139, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3491059820, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 461351155, - "s": "91ba", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecd6n", - "ct": 1747454232, - "e": 82031, - "f": "set_penetrate", - "g": 5, - "id": 3491063757, - "l": true, - "level": 85, - "mainStatBaseValue": 0.13, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ] - ], - "s": "ee21", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecd6r", - "ct": 1747454232, - "e": 82031, - "f": "set_penetrate", - "g": 5, - "id": 3491063759, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3.0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "s": "790f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecg6w", - "ct": 1747454557, - "e": 82031, - "f": "set_max_hp", - "g": 5, - "id": 3491078292, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "6bc3", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eah27r", - "ct": 1747456372, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3491160591, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah27_ring_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ] - ], - "s": "32a9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecg6w_u", - "ct": 1747554163, - "e": 93750, - "f": "set_shield", - "g": 5, - "id": 3494753443, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp", - 173 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "max_hp", - 56, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "s": "e8bd", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eah27n", - "ct": 1747708176, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3499881314, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ah27_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 5 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ] - ], - "p": 799495489, - "s": "4b4d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecg6w_u", - "ct": 1747809887, - "e": 93750, - "f": "set_def", - "g": 5, - "id": 3502378186, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "s": "10e1", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "exc107001", - "ct": 1747812556, - "g": 5, - "id": 3502436710, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "ek_c107001", - 2 - ] - ], - "s": "97c5" - }, - { - "code": "exc107001", - "ct": 1747812559, - "g": 5, - "id": 3502436807, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "ek_c107001", - 1 - ] - ], - "s": "97da" - }, - { - "code": "exc107001", - "ct": 1747812563, - "g": 5, - "id": 3502436866, - "l": true, - "mg": 1111, - "op": [ - [ - "speed", - 10 - ], - [ - "ek_c107001", - 3 - ] - ], - "p": 110838566, - "s": "9be" - }, - { - "code": "ecw6w_u", - "ct": 1747917476, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3504245936, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4.0 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "s": "df6a", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6w_u", - "ct": 1747917476, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3504245937, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4.0 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.05, - "u" - ] - ], - "s": "5e42", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6a_u", - "ct": 1747922421, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3504369449, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4.0 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "2b6b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a_u", - "ct": 1747926052, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3504471563, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4.0 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 445022861, - "s": "1c2f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6h_u", - "ct": 1747965870, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3505134903, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4.0 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "s": "8a00", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6h_u", - "ct": 1747965870, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3505134904, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4.0 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "acc", - 0.05, - "u" - ] - ], - "s": "a5d7", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6b", - "ct": 1747968071, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3505191594, - "l": true, - "level": 85, - "mainStatBaseValue": 8.0, - "mainStatId": "cra6_boot_m", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8.0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.06 - ] - ], - "s": "b922", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6b_u", - "ct": 1747982391, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3505550848, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 894623419, - "s": "3e9f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6n_u", - "ct": 1747982646, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 3505556329, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4.0 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "s": "e18e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecg6a_u", - "ct": 1747983155, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3505567656, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 892353109, - "s": "1ff3", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecg6w_u", - "ct": 1747983317, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3505572333, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "p": 620426700, - "s": "48b6", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6w_u", - "ct": 1747983477, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3505576702, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "s": "724a", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6w", - "ct": 1747983477, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3505576713, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp", - 197 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 191 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp", - 172 - ] - ], - "s": "529", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecb6h_u", - "ct": 1747983643, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3505580549, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "d755", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "exc104601", - "ct": 1747987542, - "g": 5, - "id": 3505665059, - "l": true, - "mg": 1111, - "op": [ - [ - "acc", - 0.12 - ], - [ - "ek_c104601", - 2 - ] - ], - "p": 583954927, - "s": "f99a" - }, - { - "code": "exc201101", - "ct": 1747994982, - "g": 5, - "id": 3505824879, - "l": true, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "ek_c201101", - 1 - ] - ], - "p": 738614105, - "s": "44cf" - }, - { - "code": "exc504601", - "ct": 1748001314, - "g": 5, - "id": 3505986243, - "mg": 1111, - "op": [ - [ - "acc", - 0.13 - ], - [ - "ek_c504601", - 1 - ] - ], - "s": "afe9" - }, - { - "code": "exc504601", - "ct": 1748001317, - "g": 5, - "id": 3505986338, - "mg": 1111, - "op": [ - [ - "acc", - 0.14 - ], - [ - "ek_c504601", - 3 - ] - ], - "s": "991b" - }, - { - "code": "exc504601", - "ct": 1748001320, - "g": 5, - "id": 3505986406, - "mg": 1111, - "op": [ - [ - "acc", - 0.15 - ], - [ - "ek_c504601", - 3 - ] - ], - "s": "812" - }, - { - "code": "exc504601", - "ct": 1748001322, - "g": 5, - "id": 3505986507, - "mg": 1111, - "op": [ - [ - "acc", - 0.1 - ], - [ - "ek_c504601", - 1 - ] - ], - "s": "a693" - }, - { - "code": "exc504601", - "ct": 1748001325, - "g": 5, - "id": 3505986566, - "l": true, - "mg": 1111, - "op": [ - [ - "acc", - 0.12 - ], - [ - "ek_c504601", - 2 - ] - ], - "p": 899011010, - "s": "1127" - }, - { - "code": "eal85b_u", - "ct": 1748003717, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3506053536, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "att", - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "att", - 0 - ], - [ - "acc", - 0.04 - ], - [ - "att", - 0 - ], - [ - "att", - 0 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "att", - 44, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "att", - 108, - "c", - "change2_att_4_2" - ] - ], - "p": 518782830, - "s": "5f7c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6a", - "ct": 1748014445, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3506395442, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.04 - ] - ], - "s": "8c6", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6w_u", - "ct": 1748014566, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 3506399453, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "s": "8bd3", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "eah17a", - "ct": 1748047234, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3506998849, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah17_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.08 - ] - ], - "p": 799495489, - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eah17n", - "ct": 1748047237, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3506998906, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah17_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6n", - "ct": 1748069792, - "e": 82031, - "f": "set_acc", - "g": 5, - "id": 3507648310, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4.0 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "9151", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6r", - "ct": 1748069980, - "e": 82031, - "f": "set_acc", - "g": 5, - "id": 3507653700, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4.0 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "77b6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6r_u", - "ct": 1748220968, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 3511268444, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4.0 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "b4d7", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "esc01w", - "ct": 1748316905, - "f": "set_shield", - "g": 5, - "id": 3513589473, - "l": true, - "level": 78, - "mainStatBaseValue": 95, - "mainStatId": "sc01_weap_m", - "mainStatType": "att", - "mainStatValue": 475, - "mg": 1111, - "op": [ - [ - "att", - 95, - null, - "q01_1", - null - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ] - ], - "s": "fd21", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "esc01h", - "ct": 1748316908, - "f": "set_shield", - "g": 5, - "id": 3513589549, - "l": true, - "level": 78, - "mainStatBaseValue": 513, - "mainStatId": "sc01_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2565, - "mg": 1111, - "op": [ - [ - "max_hp", - 513, - null, - "q01_2", - null - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ] - ], - "s": "3f18", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "esc01a", - "ct": 1748316912, - "f": "set_shield", - "g": 5, - "id": 3513589622, - "l": true, - "level": 78, - "mainStatBaseValue": 57, - "mainStatId": "sc01_armo_m", - "mainStatType": "def", - "mainStatValue": 285, - "mg": 1111, - "op": [ - [ - "def", - 57, - null, - "q01_3", - null - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ] - ], - "s": "260f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "esc01b", - "ct": 1748316915, - "f": "set_shield", - "g": 5, - "id": 3513589712, - "l": true, - "level": 78, - "mainStatBaseValue": 8, - "mainStatId": "sc01_boot_m", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8, - null, - "q01_6", - null - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ] - ], - "s": "14c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "esc01r", - "ct": 1748324968, - "f": "set_immune", - "g": 5, - "id": 3513761604, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "sc01_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12, - null, - "q01_5", - null - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ] - ], - "s": "71e9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "esc01n", - "ct": 1748324972, - "f": "set_immune", - "g": 5, - "id": 3513761658, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "sc01_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12, - null, - "q01_4", - null - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ] - ], - "s": "6663", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eiu51h", - "ct": 1748336869, - "f": "set_shield", - "g": 5, - "id": 3513963799, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu51_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ] - ], - "s": "2301", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eih9n", - "ct": 1748336947, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3513965232, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "6c60", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "exc507101", - "ct": 1748609728, - "g": 5, - "id": 3518279812, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.14 - ], - [ - "ek_c507101", - 2 - ] - ], - "p": 613630545, - "s": "bf56" - }, - { - "code": "eal85b_u", - "ct": 1748609965, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3518283342, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "def_rate", - 0.07, - "c", - "change2_def_rate_1_1" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "p": 636577158, - "s": "43a6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "exc210101", - "ct": 1748843518, - "g": 5, - "id": 3523304582, - "l": true, - "mg": 1111, - "op": [ - [ - "speed", - 6 - ], - [ - "ek_c210101", - 1 - ] - ], - "p": 777666204, - "s": "5ead" - }, - { - "code": "ecg6a_u", - "ct": 1749028688, - "e": 93750, - "f": "set_def", - "g": 5, - "id": 3525798717, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp", - 184 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp", - 159 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "s": "b6db", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecg6a", - "ct": 1749028688, - "e": 82031, - "f": "set_def", - "g": 5, - "id": 3525798724, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp", - 193 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp", - 168 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 2 - ] - ], - "s": "1652", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecg6a_u", - "ct": 1749028915, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3525801562, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp", - 177 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ] - ], - "s": "624b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecg6a_u", - "ct": 1749028915, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3525801564, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp", - 173 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "max_hp", - 200 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.03, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "s": "7f21", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecg6a_u", - "ct": 1749028915, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3525801566, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "41db", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eal85b_u", - "ct": 1749108228, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3526717498, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 196 - ], - [ - "max_hp", - 193 - ], - [ - "max_hp", - 172 - ], - [ - "def_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "max_hp", - 173 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp", - 224, - "u" - ] - ], - "s": "39bd", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecb6h_u", - "ct": 1749180103, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 3527626492, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "s": "52f8", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eal85b_u", - "ct": 1749182548, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3527650132, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "def", - 29 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def", - 34 - ], - [ - "cri", - 0.03 - ], - [ - "def", - 28 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "def", - 27, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 326928979, - "s": "df54", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecg6a", - "ct": 1749188938, - "e": 82031, - "f": "set_max_hp", - "g": 5, - "id": 3527718118, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ] - ], - "s": "3b32", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecb6h_u", - "ct": 1749189527, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 3527723850, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ] - ], - "p": 48988520, - "s": "606e", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecg6a_u", - "ct": 1749190576, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3527732752, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.03, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.08, - "c", - "change2_def_rate_1_2" - ] - ], - "s": "dab2", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecg6w_u", - "ct": 1749191514, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3527739581, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 1 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ] - ], - "s": "7fa5", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecg6w", - "ct": 1749191544, - "e": 17723, - "f": "set_att", - "g": 5, - "id": 3527739859, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ] - ], - "s": "4aa4", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecg6w_u", - "ct": 1749191552, - "e": 93750, - "f": "set_att", - "g": 5, - "id": 3527739947, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ] - ], - "s": "9413", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6a_u", - "ct": 1749192293, - "e": 93804, - "f": "set_cri", - "g": 5, - "id": 3527746479, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "res", - 0.07, - "u" - ] - ], - "s": "4011", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a_u", - "ct": 1749192307, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3527746617, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp", - 182 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp", - 185 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "s": "adf0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecg6h_u", - "ct": 1749192726, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3527750510, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "3f9f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6a_u", - "ct": 1749192915, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 3527751946, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.08, - "c", - "change2_def_rate_1_2" - ] - ], - "s": "397e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "eal85b_u", - "ct": 1749200057, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 3527818197, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0 - ], - [ - "res", - 0.08 - ], - [ - "def", - 33 - ], - [ - "max_hp", - 181 - ], - [ - "res", - 0.05 - ], - [ - "def", - 29 - ], - [ - "max_hp", - 185 - ], - [ - "res", - 0.04 - ], - [ - "max_hp", - 189 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "max_hp", - 168, - "u" - ], - [ - "def_rate", - 0.05, - "c", - "change2_def_rate_1_1" - ] - ], - "p": 28398305, - "s": "684e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6a_u", - "ct": 1749622557, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 3533657970, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "s": "bc50", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6a_u", - "ct": 1749869869, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3537254483, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "a7c1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6w_u", - "ct": 1749905616, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3537857610, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "f311", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6h_u", - "ct": 1749906312, - "e": 84375, - "f": "set_cri", - "g": 4, - "id": 3537869979, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "4434", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eal85b_u", - "ct": 1750076867, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 3540252422, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ] - ], - "s": "68e6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecg6h_u", - "ct": 1750221347, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3541894381, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.05, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.08, - "c", - "change2_max_hp_rate_1_2" - ] - ], - "s": "b22b", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "eih6r", - "ct": 1750249893, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 3542185787, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "imh_ring_m3", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ] - ], - "s": "7a32", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eiu51n", - "ct": 1750253896, - "e": 21687, - "f": "set_revenge", - "g": 5, - "id": 3542239370, - "l": true, - "level": 88, - "mainStatBaseValue": 0.12, - "mainStatId": "iu51_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "f6ab", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eih9n", - "ct": 1750256287, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3542276314, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ] - ], - "s": "4d9c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eal85b_u", - "ct": 1750258682, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3542315094, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "max_hp", - 159 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0 - ], - [ - "max_hp", - 174 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp", - 112, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.07, - "c", - "change2_cri_3_1" - ] - ], - "p": 795195383, - "s": "3c6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecw6a_u", - "ct": 1750321865, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 3543895042, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "d2b0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecb6w_u", - "ct": 1750372686, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3545863341, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4.0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 899521626, - "s": "e6ad", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "exc103401", - "ct": 1750389040, - "g": 5, - "id": 3546322083, - "level": 0, - "mg": 1111, - "name": "Unknown", - "op": [ - [ - "cri", - 0.1 - ], - [ - "ek_c103401", - 1 - ] - ], - "p": 890790459, - "s": "a86a" - }, - { - "code": "ecb6h_u", - "ct": 1750466852, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3548498505, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4.0 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "bfd2", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6b_u", - "ct": 1750483266, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 3549077008, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "8d15", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ecb6a_u", - "ct": 1750638400, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3553470454, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4.0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "b8d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecg6a_u", - "ct": 1750686596, - "e": 84469, - "f": "set_shield", - "g": 4, - "id": 3554729013, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "s": "6bcf", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecb6w_u", - "ct": 1750687747, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 3554771772, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.06, - "c", - "change2_max_hp_rate_1_1" - ] - ], - "p": 566472035, - "s": "612f", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6w", - "ct": 1750753932, - "e": 82084, - "f": "set_speed", - "g": 5, - "id": 3556276571, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "s": "e3a", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6w_u", - "ct": 1750755129, - "e": 93803, - "f": "set_speed", - "g": 5, - "id": 3556303419, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "7ac0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6w", - "ct": 1750755598, - "e": 82085, - "f": "set_cri", - "g": 5, - "id": 3556314296, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 172 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ] - ], - "s": "218c", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6w", - "ct": 1750755913, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3556320767, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "cd45", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6h_u", - "ct": 1750756313, - "e": 93861, - "f": "set_speed", - "g": 5, - "id": 3556329819, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0 - ], - [ - "cri", - 0.06, - "c" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "3705", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ecw6r_u", - "ct": 1750757464, - "e": 93860, - "f": "set_speed", - "g": 5, - "id": 3556358680, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "acc", - 0.13, - null, - null, - 0 - ], - [ - "max_hp", - 187 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp", - 170 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 183 - ], - [ - "max_hp", - 168, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "156b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6r_u", - "ct": 1750768014, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3556631332, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp", - 200 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "max_hp_rate", - 0.07, - "u" - ] - ], - "s": "48e4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6r_u", - "ct": 1750768171, - "e": 93802, - "f": "set_acc", - "g": 5, - "id": 3556636135, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "att", - 42 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "att", - 11, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "s": "2a8c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6n", - "ct": 1750768294, - "e": 73828, - "f": "set_acc", - "g": 4, - "id": 3556639912, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "max_hp", - 188 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.04 - ] - ], - "s": "a106", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "ecw6r", - "ct": 1750769632, - "e": 82083, - "f": "set_speed", - "g": 5, - "id": 3556684148, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "res", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "res", - 0.12 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ] - ], - "s": "18b4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6r", - "ct": 1750769865, - "e": 82083, - "f": "set_speed", - "g": 5, - "id": 3556691982, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ] - ], - "s": "f350", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6w_u", - "ct": 1750818687, - "e": 84375, - "f": "set_cri", - "g": 4, - "id": 3557757060, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "6697", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon" - }, - { - "code": "ecw6r", - "ct": 1750819746, - "e": 82082, - "f": "set_cri", - "g": 5, - "id": 3557784304, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "def", - 29 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.04 - ] - ], - "s": "15a1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6r", - "ct": 1750819756, - "e": 73863, - "f": "set_acc", - "g": 4, - "id": 3557784506, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "acc", - 0.12 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.05 - ] - ], - "s": "f1d9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "eal85n_u", - "ct": 1750858177, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 3558773915, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def", - 30 - ], - [ - "att", - 41 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "def", - 9, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ] - ], - "p": 798777729, - "s": "b28f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck" - }, - { - "code": "eal85b_u", - "ct": 1750858575, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 3558788678, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 1 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.06, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "p": 798777729, - "s": "98e7", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot" - }, - { - "code": "ela13b", - "ct": 1750944383, - "e": 93750, - "f": "set_shield", - "g": 5, - "id": 3560545568, - "l": true, - "level": 0, - "mg": 1111, - "name": "Unknown", - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 3 - ] - ], - "s": "c2b1" - }, - { - "code": "ela13w", - "ct": 1750944408, - "e": 93750, - "f": "set_shield", - "g": 5, - "id": 3560546230, - "l": true, - "level": 0, - "mg": 1111, - "name": "Unknown", - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.08 - ] - ], - "s": "0" - }, - { - "code": "ecw6r", - "ct": 1751010960, - "e": 82084, - "f": "set_cri", - "g": 5, - "id": 3561694666, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ] - ], - "s": "c66e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6r", - "ct": 1751011396, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3561702971, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.11, - "c", - "change2_def_rate_2_1" - ] - ], - "s": "6733", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ecw6r", - "ct": 1751011992, - "e": 82143, - "f": "set_acc", - "g": 5, - "id": 3561715688, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "acc", - 0 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.1, - "c", - "change2_acc_2_2" - ] - ], - "s": "f5b7", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring" - }, - { - "code": "ela13n", - "ct": 1751031755, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 3562099450, - "l": true, - "level": 0, - "mg": 1111, - "name": "Unknown", - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "acc", - 0.09 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.06 - ], - [ - "acc", - 0.08 - ] - ], - "s": "0" - }, - { - "code": "ecw6a", - "ct": 1751112339, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3563523530, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ] - ], - "s": "55a1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - }, - { - "code": "ecw6h", - "ct": 1751112346, - "f": "set_speed", - "g": 5, - "id": 3563523741, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.07 - ] - ], - "s": "a433", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ela13a", - "ct": 1751124649, - "e": 93862, - "f": "set_shield", - "g": 5, - "id": 3563835443, - "l": true, - "level": 0, - "mg": 1111, - "name": "Unknown", - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "0" - }, - { - "code": "ecw6h_u", - "ct": 1751250870, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3566231631, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "s": "cbc6", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm" - }, - { - "code": "ela13r", - "ct": 1751285020, - "e": 93750, - "f": "set_shield", - "g": 5, - "id": 3566763231, - "l": true, - "level": 0, - "mg": 1111, - "name": "Unknown", - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.05 - ], - [ - "def_rate", - 0.08 - ] - ], - "s": "17e3" - }, - { - "code": "ecb6a_u", - "ct": 1751295414, - "e": 93863, - "f": "set_cri_dmg", - "g": 5, - "id": 3566991686, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "1003", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor" - } - ], - "inventory": {}, - "status": "SUCCESS", - "units": [ - [ - { - "code": "c5001", - "ct": 0, - "d": 7, - "exp": 833510, - "f": 3196, - "g": 6, - "id": 166490, - "l": true, - "name": "Adventurer Ras", - "opt": 11, - "s": [ - 2, - 2, - 4 - ], - "st": 0, - "stree": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "z": 6 - }, - { - "code": "c1018", - "ct": 1687228144, - "d": 7, - "exp": 63815, - "f": 919, - "g": 3, - "id": 2303361, - "l": true, - "name": "Aither", - "opt": 1, - "st": 0 - }, - { - "code": "s0001", - "ct": 1687228446, - "exp": 0, - "g": 5, - "id": 2499590, - "opt": 1, - "st": 0 - }, - { - "code": "c3063", - "ct": 1687228784, - "d": 7, - "exp": 392415, - "f": 5, - "g": 5, - "id": 2716895, - "l": true, - "name": "Kiris", - "opt": 1, - "s": [ - 5, - 3, - 2 - ], - "st": 0, - "z": 4 - }, - { - "code": "c4035", - "ct": 1687228784, - "d": 7, - "exp": 833510, - "f": 200, - "g": 6, - "id": 2716899, - "l": true, - "name": "Commander Lorina", - "opt": 1, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "stree": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "z": 6 - }, - { - "code": "c1024", - "ct": 1687231721, - "exp": 650125, - "f": 1608, - "g": 5, - "id": 4647526, - "l": true, - "name": "Iseria", - "opt": 2001, - "s": [ - 4, - 2, - 4 - ], - "st": 0, - "z": 4 - }, - { - "code": "c1036", - "ct": 1687231754, - "d": 6, - "exp": 5690, - "g": 4, - "id": 4667046, - "l": true, - "name": "Crozet", - "opt": 1, - "st": 0 - }, - { - "code": "c0002", - "ct": 1687235863, - "d": 6, - "exp": 1110500, - "f": 2845, - "g": 6, - "id": 6844892, - "l": true, - "name": "Mercedes", - "opt": 3021, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c4023", - "ct": 1687235940, - "d": 7, - "exp": 63815, - "g": 3, - "id": 6885513, - "l": true, - "name": "Mercenary Helga", - "opt": 1, - "st": 0 - }, - { - "code": "c1008", - "ct": 1687235940, - "d": 6, - "exp": 13500, - "g": 4, - "id": 6885516, - "l": true, - "name": "Armin", - "opt": 1, - "st": 0 - }, - { - "code": "c4041", - "ct": 1687235940, - "d": 7, - "exp": 833510, - "f": 149, - "g": 6, - "id": 6885517, - "l": true, - "name": "Mascot Hazel", - "opt": 1, - "s": [ - 3, - 4, - 7 - ], - "st": 0, - "stree": [ - 2, - 3, - 3, - 0, - 2, - 0, - 0, - 0, - 1, - 0 - ], - "z": 6 - }, - { - "code": "c3132", - "ct": 1687235987, - "d": 7, - "exp": 392415, - "f": 12293, - "g": 5, - "id": 6911147, - "l": true, - "name": "Muwi", - "opt": 21, - "s": [ - 3, - 5, - 5 - ], - "st": 0, - "z": 5 - }, - { - "code": "c3102", - "ct": 1687246056, - "d": 7, - "exp": 10884, - "f": 814, - "g": 3, - "id": 11049689, - "l": true, - "name": "Ian", - "opt": 1, - "st": 0 - }, - { - "code": "c3026", - "ct": 1687246438, - "d": 6, - "exp": 1110500, - "f": 11106, - "g": 6, - "id": 11185757, - "l": true, - "name": "Free Spirit Tieria", - "opt": 3021, - "s": [ - 4, - 4, - 7 - ], - "st": 0, - "z": 5 - }, - { - "code": "s0002", - "ct": 1687271170, - "exp": 0, - "g": 5, - "id": 20013754, - "opt": 1, - "st": 0 - }, - { - "code": "c4051", - "ct": 1687275617, - "d": 7, - "exp": 833510, - "f": 171, - "g": 6, - "id": 21884461, - "l": true, - "name": "Researcher Carrot", - "opt": 1, - "s": [ - 6, - 2, - 7 - ], - "st": 0, - "stree": [ - 0, - 0, - 3, - 0, - 3, - 3, - 0, - 3, - 3, - 3 - ], - "z": 6 - }, - { - "code": "c1079", - "ct": 1687306878, - "exp": 1384450, - "f": 71, - "g": 6, - "id": 28393107, - "l": true, - "name": "Cermia", - "opt": 1, - "st": 0, - "z": 6 - }, - { - "code": "c4123", - "ct": 1687306899, - "d": 7, - "exp": 833510, - "f": 2627, - "g": 6, - "id": 28398305, - "l": true, - "name": "Silvertide Christy", - "opt": 21, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "stree": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "z": 6 - }, - { - "code": "s0003", - "ct": 1687309708, - "exp": 0, - "g": 5, - "id": 29078917, - "opt": 1, - "st": 0 - }, - { - "code": "c4042", - "ct": 1687320189, - "d": 7, - "exp": 392415, - "f": 216, - "g": 5, - "id": 31856726, - "name": "Angelic Montmorancy", - "opt": 1, - "s": [ - 2, - 5, - 5 - ], - "st": 0, - "z": 5 - }, - { - "code": "c1023", - "ct": 1687322611, - "exp": 0, - "g": 5, - "id": 32601552, - "l": true, - "name": "Kayron", - "opt": 1, - "st": 0 - }, - { - "code": "c3025", - "ct": 1687351395, - "d": 7, - "exp": 63815, - "g": 3, - "id": 40330842, - "l": true, - "name": "Church of Ilryos Axe", - "opt": 1, - "st": 0 - }, - { - "code": "c1062", - "ct": 1687352017, - "d": 6, - "exp": 1110500, - "f": 3213, - "g": 6, - "id": 40490456, - "l": true, - "name": "Angelica", - "opt": 3021, - "s": [ - null, - 5, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c3045", - "ct": 1687357202, - "d": 7, - "exp": 3840, - "g": 3, - "id": 41877886, - "l": true, - "name": "Otillie", - "opt": 1, - "st": 0 - }, - { - "code": "c1087", - "ct": 1687394514, - "d": 6, - "exp": 1110500, - "f": 12163, - "g": 6, - "id": 48982864, - "l": true, - "name": "Furious", - "opt": 3001, - "s": [ - 3, - 1, - 6 - ], - "st": 0, - "z": 5 - }, - { - "code": "c3032", - "ct": 1687394538, - "d": 7, - "exp": 833510, - "f": 5, - "g": 6, - "id": 48988518, - "l": true, - "name": "Taranor Guard", - "opt": 21, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c3125", - "ct": 1687394538, - "d": 7, - "exp": 3840, - "g": 3, - "id": 48988519, - "l": true, - "name": "Penelope", - "opt": 1, - "st": 0 - }, - { - "code": "c1129", - "ct": 1687394538, - "d": 3, - "exp": 1384450, - "f": 1837, - "g": 6, - "id": 48988520, - "l": true, - "name": "Aria", - "opt": 3021, - "s": [ - 7, - 7, - 1 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1072", - "ct": 1687395299, - "d": 3, - "exp": 1384450, - "f": 14459, - "g": 6, - "id": 49161666, - "l": true, - "name": "Sigret", - "opt": 3021, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c3022", - "ct": 1687395790, - "d": 7, - "exp": 5340, - "f": 814, - "g": 3, - "id": 49275344, - "l": true, - "name": "Enott", - "opt": 1, - "st": 0 - }, - { - "code": "c1021", - "ct": 1687395805, - "d": 6, - "exp": 12970, - "g": 4, - "id": 49278840, - "name": "Dingo", - "opt": 1, - "st": 0 - }, - { - "code": "c3024", - "ct": 1687445920, - "d": 7, - "exp": 3540, - "g": 3, - "id": 60578097, - "l": true, - "name": "Gunther", - "opt": 1, - "st": 0 - }, - { - "code": "c3055", - "ct": 1687481103, - "d": 7, - "exp": 840, - "g": 3, - "id": 66610863, - "l": true, - "name": "Hurado", - "opt": 1, - "st": 0 - }, - { - "code": "c1028", - "ct": 1687608539, - "d": 6, - "exp": 50475, - "g": 4, - "id": 90340100, - "l": true, - "name": "Clarissa", - "opt": 1, - "st": 0 - }, - { - "code": "c1054", - "ct": 1687610761, - "d": 6, - "exp": 10190, - "g": 4, - "id": 90728199, - "name": "Rin", - "opt": 1, - "st": 0 - }, - { - "code": "c1067", - "ct": 1687611503, - "d": 2, - "exp": 1384450, - "f": 4903, - "g": 6, - "id": 90857803, - "l": true, - "name": "Tamarinne", - "opt": 3021, - "s": [ - 3, - 7, - 1 - ], - "skin_code": "c1067_s01", - "st": 0, - "z": 6 - }, - { - "code": "c3014", - "ct": 1687646880, - "d": 7, - "exp": 840, - "g": 3, - "id": 96073578, - "l": true, - "name": "Mirsa", - "opt": 1, - "st": 0 - }, - { - "code": "c1047", - "ct": 1687646924, - "exp": 650125, - "g": 5, - "id": 96079743, - "l": true, - "name": "Ken", - "opt": 1, - "st": 0, - "z": 5 - }, - { - "code": "c1118", - "ct": 1687646924, - "d": 1, - "exp": 1384450, - "f": 1612, - "g": 6, - "id": 96079748, - "l": true, - "name": "Ran", - "opt": 3021, - "s": [ - 4, - 1, - 7 - ], - "st": 0, - "z": 6 - }, - { - "code": "s0004", - "ct": 1687654215, - "exp": 0, - "g": 5, - "id": 97362523, - "opt": 1, - "st": 0 - }, - { - "code": "c2050", - "ct": 1687666751, - "d": 1, - "exp": 1384450, - "f": 4572, - "g": 6, - "id": 99507012, - "l": true, - "name": "Specter Tenebria", - "opt": 3021, - "s": [ - 6, - 3, - 6 - ], - "skin_code": "c2050_s01", - "st": 0, - "z": 6 - }, - { - "code": "c2043", - "ct": 1687684221, - "exp": 1190, - "g": 4, - "id": 102257218, - "l": true, - "name": "Benevolent Romann", - "opt": 1, - "st": 0 - }, - { - "code": "c1003", - "ct": 1687708002, - "d": 6, - "exp": 5690, - "g": 4, - "id": 106183527, - "l": true, - "name": "Rose", - "opt": 1, - "st": 0 - }, - { - "code": "c1070", - "ct": 1687739825, - "exp": 1384450, - "f": 3, - "g": 6, - "id": 110838566, - "l": true, - "name": "Krau", - "opt": 1, - "s": [ - 3, - 4, - 2 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1071", - "ct": 1687739897, - "exp": 0, - "f": 1724, - "g": 5, - "id": 110853212, - "l": true, - "name": "Bellona", - "opt": 1, - "st": 0 - }, - { - "code": "c1088", - "ct": 1687770611, - "exp": 1384450, - "f": 5002, - "g": 6, - "id": 115835449, - "l": true, - "name": "Vivian", - "opt": 3001, - "s": [ - null, - 7, - 1 - ], - "st": 0, - "z": 6 - }, - { - "code": "c3134", - "ct": 1687780574, - "d": 7, - "exp": 392415, - "f": 1465, - "g": 5, - "id": 117268286, - "l": true, - "name": "Yoonryoung", - "opt": 1, - "s": [ - 7 - ], - "st": 0, - "z": 4 - }, - { - "code": "c3065", - "ct": 1687780604, - "d": 7, - "exp": 840, - "g": 3, - "id": 117273089, - "l": true, - "name": "Wanda", - "opt": 1, - "st": 0 - }, - { - "code": "c1109", - "ct": 1687959020, - "exp": 1384450, - "f": 3720, - "g": 6, - "id": 140659207, - "l": true, - "name": "Landy", - "opt": 3001, - "s": [ - 2, - 3, - 5 - ], - "st": 0, - "z": 5 - }, - { - "code": "c3094", - "ct": 1688015777, - "d": 7, - "exp": 2040, - "g": 3, - "id": 146824688, - "l": true, - "name": "Eaton", - "opt": 1, - "st": 0 - }, - { - "code": "c6008", - "ct": 1688015796, - "exp": 1110500, - "f": 355, - "g": 6, - "id": 146827448, - "l": true, - "name": "Bad Cat Armin", - "opt": 1, - "s": [ - null, - 5, - 4 - ], - "st": 0, - "z": 5 - }, - { - "code": "c1112", - "ct": 1688045722, - "exp": 1384450, - "f": 2691, - "g": 6, - "id": 150271128, - "l": true, - "name": "Politis", - "opt": 3001, - "s": [ - 4, - 5, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c4144", - "ct": 1688133397, - "d": 7, - "exp": 833510, - "f": 1808, - "g": 6, - "id": 158971995, - "l": true, - "name": "Savior Adin", - "opt": 21, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "stree": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "z": 6 - }, - { - "code": "c4005", - "ct": 1688359306, - "d": 7, - "exp": 833510, - "f": 2718, - "g": 6, - "id": 180232242, - "l": true, - "name": "Shadow Knight Pyllis", - "opt": 21, - "s": [ - 4, - 5, - 4 - ], - "st": 0, - "stree": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "z": 6 - }, - { - "code": "c3064", - "ct": 1688370619, - "d": 7, - "exp": 6840, - "g": 3, - "id": 181253090, - "l": true, - "name": "Celeste", - "opt": 1, - "st": 0 - }, - { - "code": "c1013", - "ct": 1688436207, - "d": 6, - "exp": 1190, - "g": 4, - "id": 186477488, - "name": "Cartuja", - "opt": 1, - "st": 0 - }, - { - "code": "c1039", - "ct": 1688735695, - "exp": 1250, - "f": 86, - "g": 5, - "id": 207190343, - "l": true, - "name": "Haste", - "opt": 1, - "st": 0 - }, - { - "code": "c1102", - "ct": 1688886306, - "exp": 1384450, - "f": 4333, - "g": 6, - "id": 218403497, - "l": true, - "name": "Roana", - "opt": 3001, - "s": [ - 4, - 7, - 1 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1124", - "ct": 1688920907, - "exp": 1250, - "g": 5, - "id": 221027633, - "l": true, - "name": "Arunka", - "opt": 1, - "st": 0 - }, - { - "code": "c1126", - "ct": 1688984548, - "exp": 1250, - "g": 5, - "id": 225117695, - "l": true, - "name": "Lua", - "opt": 1, - "st": 0, - "z": 1 - }, - { - "code": "c2089", - "ct": 1688994679, - "exp": 1384450, - "f": 2289, - "g": 6, - "id": 225876663, - "l": true, - "name": "Conqueror Lilias", - "opt": 3001, - "s": [ - 3, - 6, - 3 - ], - "st": 0, - "z": 6 - }, - { - "code": "c2004", - "ct": 1688999380, - "d": 7, - "exp": 1190, - "g": 4, - "id": 226290315, - "l": true, - "name": "Wanderer Silk", - "opt": 1, - "st": 0 - }, - { - "a": true, - "code": "c6037", - "ct": 1689000350, - "d": 6, - "exp": 1110500, - "f": 1503, - "g": 6, - "id": 226377978, - "l": true, - "name": "Moon Bunny Dominiel", - "opt": 2021, - "s": [ - 5, - 6, - 3 - ], - "st": 0, - "z": 6 - }, - { - "code": "c2005", - "ct": 1689000376, - "exp": 1190, - "g": 4, - "id": 226380601, - "l": true, - "name": "Celestial Mercedes", - "opt": 1, - "st": 0 - }, - { - "code": "c2036", - "ct": 1689000393, - "exp": 1190, - "g": 4, - "id": 226382235, - "l": true, - "name": "Troublemaker Crozet", - "opt": 1, - "st": 0 - }, - { - "code": "c2065", - "ct": 1689053732, - "exp": 1190, - "g": 4, - "id": 230001112, - "l": true, - "name": "Tempest Surin", - "opt": 1, - "st": 0 - }, - { - "a": true, - "code": "c4004", - "ct": 1689221173, - "d": 7, - "exp": 833510, - "f": 2266, - "g": 6, - "id": 241191727, - "l": true, - "name": "Unbound Knight Arowell", - "opt": 21, - "s": [ - 5, - 3, - 5 - ], - "st": 0, - "stree": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "z": 6 - }, - { - "code": "c3034", - "ct": 1689301199, - "d": 7, - "exp": 3240, - "g": 3, - "id": 246179820, - "l": true, - "name": "Rikoris", - "opt": 1, - "st": 0 - }, - { - "code": "c1086", - "ct": 1689345123, - "d": 6, - "exp": 9440, - "g": 4, - "id": 249685425, - "l": true, - "name": "Khawana", - "opt": 1, - "st": 0 - }, - { - "a": true, - "code": "c5082", - "ct": 1689845857, - "d": 1, - "exp": 1384450, - "f": 1500, - "g": 6, - "id": 279573776, - "l": true, - "name": "Ocean Breeze Luluca", - "opt": 3021, - "s": [ - 3, - 7, - 1 - ], - "st": 0, - "z": 6 - }, - { - "code": "c3015", - "ct": 1689948930, - "d": 7, - "exp": 840, - "g": 3, - "id": 286281807, - "l": true, - "name": "Sven", - "opt": 1, - "st": 0 - }, - { - "code": "c3095", - "ct": 1690210324, - "d": 6, - "exp": 840, - "g": 3, - "id": 297335230, - "l": true, - "name": "Batisse", - "opt": 1, - "st": 0 - }, - { - "code": "c1009", - "ct": 1690327809, - "exp": 0, - "g": 5, - "id": 301462555, - "l": true, - "name": "Charlotte", - "opt": 1, - "st": 0 - }, - { - "code": "c1017", - "ct": 1690464352, - "d": 4, - "exp": 522540, - "f": 33, - "g": 5, - "id": 306770592, - "l": true, - "name": "Achates", - "opt": 1, - "s": [ - null, - 2, - 3 - ], - "st": 0, - "z": 5 - }, - { - "code": "c1119", - "ct": 1690466122, - "d": 3, - "exp": 1384450, - "f": 2528, - "g": 6, - "id": 306859366, - "l": true, - "name": "Zahhak", - "opt": 3021, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1049", - "ct": 1690643630, - "exp": 0, - "g": 5, - "id": 313000253, - "l": true, - "name": "Chloe", - "opt": 1, - "st": 0 - }, - { - "code": "c1006", - "ct": 1690643713, - "exp": 1250, - "g": 5, - "id": 313003939, - "l": true, - "name": "Kise", - "opt": 1, - "st": 0 - }, - { - "code": "c3105", - "ct": 1690646147, - "d": 7, - "exp": 63815, - "g": 3, - "id": 313109293, - "l": true, - "name": "Ainos", - "opt": 1, - "st": 0 - }, - { - "code": "c1012", - "ct": 1690647335, - "d": 6, - "exp": 1190, - "g": 4, - "id": 313156815, - "name": "Corvus", - "opt": 1, - "st": 0 - }, - { - "a": true, - "code": "c1074", - "ct": 1690647930, - "exp": 1384450, - "f": 1500, - "g": 6, - "id": 313179896, - "l": true, - "name": "Violet", - "opt": 1, - "s": [ - 5, - 1, - 5 - ], - "st": 0, - "z": 4 - }, - { - "code": "c1065", - "ct": 1690882197, - "d": 6, - "exp": 522540, - "f": 86, - "g": 5, - "id": 319905485, - "l": true, - "name": "Surin", - "opt": 1, - "s": [ - null, - null, - 3 - ], - "st": 0, - "z": 5 - }, - { - "code": "c3104", - "ct": 1690882209, - "d": 7, - "exp": 3540, - "g": 3, - "id": 319905853, - "l": true, - "name": "Sonia", - "opt": 1, - "st": 0 - }, - { - "code": "c1042", - "ct": 1690933711, - "exp": 0, - "g": 5, - "id": 321217705, - "l": true, - "name": "Tywin", - "opt": 1, - "st": 0 - }, - { - "code": "c1050", - "ct": 1691026609, - "exp": 650125, - "f": 116, - "g": 5, - "id": 323638178, - "l": true, - "name": "Tenebria", - "opt": 1, - "s": [ - null, - null, - 1 - ], - "st": 0, - "z": 5 - }, - { - "code": "c5149", - "ct": 1691039576, - "exp": 1384450, - "f": 1722, - "g": 6, - "id": 326707479, - "l": true, - "name": "Lethe", - "opt": 3001, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1090", - "ct": 1691040748, - "exp": 650125, - "f": 410, - "g": 5, - "id": 326831592, - "l": true, - "name": "Ray", - "opt": 1, - "s": [ - null, - null, - 3 - ], - "st": 0, - "z": 5 - }, - { - "code": "c2073", - "ct": 1691041751, - "exp": 1384450, - "f": 2087, - "g": 6, - "id": 326928979, - "l": true, - "name": "Mediator Kawerik", - "opt": 3001, - "s": [ - 5, - 6, - 3 - ], - "st": 0, - "z": 6 - }, - { - "code": "c2003", - "ct": 1691054570, - "exp": 1190, - "g": 4, - "id": 327820984, - "l": true, - "name": "Shadow Rose", - "opt": 1, - "st": 0 - }, - { - "code": "c1085", - "ct": 1691297868, - "d": 6, - "exp": 7190, - "g": 4, - "id": 336730438, - "name": "Khawazu", - "opt": 1, - "st": 0 - }, - { - "code": "c2019", - "ct": 1691801868, - "d": 1, - "exp": 1384450, - "f": 2425, - "g": 6, - "id": 350226992, - "l": true, - "name": "Apocalypse Ravi", - "opt": 3001, - "s": [ - 6, - 3, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c4044", - "ct": 1691971004, - "d": 7, - "exp": 833510, - "f": 2039, - "g": 6, - "id": 354206748, - "l": true, - "name": "Magic Scholar Doris", - "opt": 21, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "stree": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "z": 6 - }, - { - "code": "c2031", - "ct": 1692102496, - "d": 6, - "exp": 522540, - "g": 5, - "id": 357149374, - "l": true, - "name": "Auxiliary Lots", - "opt": 1, - "st": 0 - }, - { - "code": "c1015", - "ct": 1692263475, - "exp": 1250, - "g": 5, - "id": 360502881, - "l": true, - "name": "Baal & Sezan", - "opt": 1, - "st": 0 - }, - { - "code": "c3074", - "ct": 1692263504, - "d": 7, - "exp": 840, - "g": 3, - "id": 360523635, - "l": true, - "name": "Gloomyrain", - "opt": 1, - "st": 0 - }, - { - "code": "c2037", - "ct": 1692263514, - "exp": 1190, - "g": 4, - "id": 360531151, - "l": true, - "name": "Challenger Dominiel", - "opt": 1, - "st": 0 - }, - { - "code": "c6011", - "ct": 1692263542, - "d": 6, - "exp": 1110500, - "f": 1644, - "g": 6, - "id": 360551102, - "l": true, - "name": "Last Piece Karin", - "opt": 3001, - "s": [ - 6, - 7, - 1 - ], - "st": 0, - "z": 6 - }, - { - "code": "c2109", - "ct": 1692264096, - "exp": 1384450, - "f": 4744, - "g": 6, - "id": 360878989, - "l": true, - "name": "Navy Captain Landy", - "opt": 3001, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c3135", - "ct": 1692575971, - "d": 7, - "exp": 2040, - "g": 3, - "id": 376153919, - "l": true, - "name": "Hasol", - "opt": 1, - "st": 0 - }, - { - "code": "c1106", - "ct": 1692662581, - "exp": 1250, - "g": 5, - "id": 379995788, - "l": true, - "name": "Senya", - "opt": 1, - "st": 0 - }, - { - "code": "c2022", - "ct": 1692881860, - "exp": 1384450, - "f": 1818, - "g": 6, - "id": 389494760, - "l": true, - "name": "Destina", - "opt": 3001, - "s": [ - 5, - 3, - 6 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1116", - "ct": 1693457166, - "exp": 650125, - "f": 8, - "g": 5, - "id": 403357976, - "l": true, - "name": "Emilia", - "opt": 1, - "st": 0, - "z": 1 - }, - { - "code": "c6062", - "ct": 1693457424, - "d": 6, - "exp": 1110500, - "f": 7, - "g": 6, - "id": 403476926, - "l": true, - "name": "Angel of Light Angelica", - "opt": 21, - "s": [ - 4, - 5, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1131", - "ct": 1693704969, - "exp": 1384450, - "f": 1235, - "g": 6, - "id": 412803674, - "l": true, - "name": "Yulha", - "opt": 1, - "s": [ - 3, - null, - 3 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1009", - "ct": 1693958120, - "exp": 0, - "g": 5, - "id": 418000772, - "l": true, - "name": "Charlotte", - "opt": 1, - "st": 0 - }, - { - "code": "c1006", - "ct": 1694179819, - "exp": 1250, - "g": 5, - "id": 422317877, - "l": true, - "name": "Kise", - "opt": 1, - "st": 0 - }, - { - "code": "c3003", - "ct": 1694320891, - "d": 7, - "exp": 2640, - "g": 3, - "id": 424808145, - "l": true, - "name": "Kluri", - "opt": 1, - "st": 0 - }, - { - "code": "c2029", - "ct": 1694669606, - "exp": 1190, - "g": 4, - "id": 430277824, - "l": true, - "name": "Roaming Warrior Leo", - "opt": 1, - "st": 0 - }, - { - "code": "c2079", - "ct": 1694791065, - "d": 5, - "exp": 1384450, - "f": 4957, - "g": 6, - "id": 434015426, - "l": true, - "name": "Lionheart Cermia", - "opt": 3021, - "s": [ - 7, - 1, - 7 - ], - "skin_code": "c2079_s01", - "st": 0, - "z": 6 - }, - { - "code": "c1014", - "ct": 1694997530, - "d": 6, - "exp": 522540, - "g": 5, - "id": 440334191, - "l": true, - "name": "Cidd", - "opt": 1, - "s": [ - 3, - 3, - 3 - ], - "st": 0, - "z": 5 - }, - { - "code": "c3075", - "ct": 1695080686, - "d": 7, - "exp": 840, - "g": 3, - "id": 442609423, - "l": true, - "name": "Requiemroar", - "opt": 1, - "st": 0 - }, - { - "code": "c2070", - "ct": 1695166090, - "d": 5, - "exp": 1384450, - "f": 3085, - "g": 6, - "id": 445022861, - "l": true, - "name": "Last Rider Krau", - "opt": 3021, - "s": [ - null, - 5, - 5 - ], - "skin_code": "c2070_s01", - "st": 0, - "z": 6 - }, - { - "code": "c2036", - "ct": 1695254183, - "exp": 1190, - "g": 4, - "id": 447264619, - "l": true, - "name": "Troublemaker Crozet", - "opt": 1, - "st": 0 - }, - { - "code": "c1033", - "ct": 1695512496, - "d": 6, - "exp": 1190, - "g": 4, - "id": 455687994, - "name": "Coli", - "opt": 1, - "st": 0 - }, - { - "code": "c2032", - "ct": 1695598000, - "exp": 1190, - "g": 4, - "id": 458646767, - "l": true, - "name": "Fighter Maya", - "opt": 1, - "st": 0 - }, - { - "code": "c1150", - "ct": 1695730782, - "d": 6, - "exp": 1110500, - "f": 67, - "g": 6, - "id": 461351155, - "l": true, - "name": "Veronica", - "opt": 21, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1151", - "ct": 1695796413, - "exp": 650125, - "f": 1619, - "g": 5, - "id": 461989175, - "l": true, - "name": "Nahkwol", - "opt": 3001, - "s": [ - null, - null, - 3 - ], - "st": 0, - "z": 5 - }, - { - "code": "c3151", - "ct": 1695799754, - "d": 4, - "exp": 2040, - "g": 3, - "id": 463031829, - "l": true, - "name": "Juni", - "opt": 1, - "st": 0 - }, - { - "code": "c1006", - "ct": 1696027573, - "exp": 1250, - "g": 5, - "id": 471386693, - "name": "Kise", - "opt": 1, - "st": 0 - }, - { - "code": "c3124", - "ct": 1696082635, - "d": 7, - "exp": 392415, - "f": 7, - "g": 5, - "id": 473350938, - "l": true, - "name": "Camilla", - "opt": 1, - "s": [ - 7, - 1, - 4 - ], - "st": 0, - "z": 5 - }, - { - "code": "c1111", - "ct": 1696307739, - "exp": 1384450, - "f": 2956, - "g": 6, - "id": 480028811, - "l": true, - "name": "Eda", - "opt": 1, - "s": [ - null, - 4, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1145", - "ct": 1696850547, - "d": 3, - "exp": 1384450, - "f": 11675, - "g": 6, - "id": 490684210, - "l": true, - "name": "Brieg", - "opt": 3021, - "s": [ - 3, - 3, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c5089", - "ct": 1697096248, - "d": 1, - "exp": 1384450, - "f": 1717, - "g": 6, - "id": 494187001, - "l": true, - "name": "Midnight Gala Lilias", - "opt": 3021, - "s": [ - 5, - 4, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c4071", - "ct": 1697763208, - "d": 9, - "exp": 63815, - "g": 3, - "id": 502450559, - "l": true, - "name": "Zealot Carmainerose", - "opt": 1, - "st": 0, - "stree": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "z": 1 - }, - { - "code": "c2014", - "ct": 1697896641, - "exp": 1190, - "g": 4, - "id": 503988683, - "l": true, - "name": "Assassin Cidd", - "opt": 1, - "st": 0 - }, - { - "code": "c1099", - "ct": 1697989269, - "exp": 1250, - "g": 5, - "id": 504872654, - "l": true, - "name": "Command Model Laika", - "opt": 1, - "st": 0 - }, - { - "code": "c1039", - "ct": 1699454152, - "exp": 1250, - "g": 5, - "id": 518417259, - "name": "Haste", - "opt": 1, - "st": 0 - }, - { - "code": "c2091", - "ct": 1699454593, - "exp": 1384450, - "f": 2658, - "g": 6, - "id": 518421029, - "l": true, - "name": "Astromancer Elena", - "opt": 3001, - "s": [ - null, - 1, - 7 - ], - "st": 0, - "z": 6 - }, - { - "code": "c5050", - "ct": 1699503554, - "exp": 1250, - "g": 5, - "id": 518779568, - "l": true, - "name": "Fairytale Tenebria", - "opt": 1, - "st": 0 - }, - { - "code": "c5024", - "ct": 1699503567, - "exp": 1384450, - "f": 2788, - "g": 6, - "id": 518782830, - "l": true, - "name": "Summertime Iseria", - "opt": 3001, - "s": [ - 4, - 5, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1081", - "ct": 1699673015, - "exp": 0, - "g": 5, - "id": 522853044, - "l": true, - "name": "Cerise", - "opt": 1, - "st": 0 - }, - { - "code": "c1016", - "ct": 1699891499, - "exp": 1384450, - "f": 1596, - "g": 6, - "id": 525461035, - "l": true, - "name": "Yufine", - "opt": 3001, - "s": [ - 6 - ], - "st": 0, - "z": 6 - }, - { - "code": "c3157", - "ct": 1700613919, - "d": 5, - "exp": 840, - "g": 3, - "id": 534405026, - "l": true, - "name": "Ezra", - "opt": 1, - "st": 0 - }, - { - "code": "c2005", - "ct": 1700787287, - "exp": 1190, - "g": 4, - "id": 536961122, - "l": true, - "name": "Celestial Mercedes", - "opt": 1, - "st": 0 - }, - { - "code": "c1126", - "ct": 1701226044, - "exp": 1250, - "g": 5, - "id": 541108842, - "l": true, - "name": "Lua", - "opt": 1, - "st": 0 - }, - { - "code": "c2017", - "ct": 1701667435, - "d": 2, - "exp": 228480, - "f": 39, - "g": 4, - "id": 545449824, - "l": true, - "name": "Shooting Star Achates", - "opt": 1, - "st": 0, - "z": 3 - }, - { - "code": "c1123", - "ct": 1701925777, - "d": 5, - "exp": 0, - "g": 5, - "id": 547723200, - "l": true, - "name": "Shuna", - "opt": 1, - "st": 0 - }, - { - "code": "c1121", - "ct": 1701952015, - "exp": 650125, - "f": 1658, - "g": 5, - "id": 549294853, - "l": true, - "name": "Rimuru", - "opt": 3001, - "s": [ - null, - null, - 3 - ], - "st": 0, - "z": 5 - }, - { - "code": "c2042", - "ct": 1702511722, - "d": 1, - "exp": 1384450, - "f": 1523, - "g": 6, - "id": 559859822, - "l": true, - "name": "Ambitious Tywin", - "opt": 3021, - "s": [ - 2, - 4, - 6 - ], - "st": 0, - "z": 6 - }, - { - "code": "c4158", - "ct": 1702511722, - "d": 7, - "exp": 833510, - "f": 543, - "g": 6, - "id": 559859824, - "l": true, - "name": "Inheritor Amiki", - "opt": 21, - "s": [ - 6, - 3, - 6 - ], - "st": 0, - "stree": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "z": 6 - }, - { - "code": "c2020", - "ct": 1702596476, - "d": 7, - "exp": 1110500, - "f": 2237, - "g": 6, - "id": 562155721, - "l": true, - "name": "Watcher Schuri", - "opt": 1, - "s": [ - 3, - 4, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1029", - "ct": 1702774005, - "d": 6, - "exp": 1190, - "f": 1403, - "g": 4, - "id": 565017550, - "l": true, - "name": "Leo", - "opt": 1, - "st": 0 - }, - { - "code": "c2062", - "ct": 1702873261, - "d": 6, - "exp": 1110500, - "f": 380, - "g": 6, - "id": 566472035, - "l": true, - "name": "Sinful Angelica", - "opt": 21, - "s": [ - null, - 5, - 1 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1089", - "ct": 1703033080, - "exp": 0, - "g": 5, - "id": 568417281, - "l": true, - "name": "Lilias", - "opt": 1, - "st": 0 - }, - { - "code": "c1101", - "ct": 1703052783, - "exp": 1384450, - "f": 1598, - "g": 6, - "id": 568689715, - "l": true, - "name": "Choux", - "opt": 3001, - "s": [ - 3, - 3, - 3 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1090", - "ct": 1703297447, - "exp": 1250, - "g": 5, - "id": 571546673, - "name": "Ray", - "opt": 1, - "st": 0 - }, - { - "code": "c1032", - "ct": 1703898752, - "d": 6, - "exp": 1190, - "g": 4, - "id": 582763835, - "name": "Maya", - "opt": 1, - "st": 0 - }, - { - "code": "c1046", - "ct": 1703998290, - "exp": 1384450, - "f": 17, - "g": 6, - "id": 583954927, - "l": true, - "name": "Lidica", - "opt": 1, - "s": [ - null, - 5, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c3084", - "ct": 1704256140, - "exp": 0, - "g": 3, - "id": 586523410, - "l": true, - "name": "Kikirat v2", - "opt": 1, - "st": 0 - }, - { - "code": "c3153", - "ct": 1704791353, - "d": 7, - "exp": 840, - "g": 3, - "id": 590699636, - "l": true, - "name": "Lilka", - "opt": 1, - "st": 0 - }, - { - "code": "c1154", - "ct": 1704791359, - "exp": 1384450, - "f": 134, - "g": 6, - "id": 590699704, - "l": true, - "name": "Byblis", - "opt": 1, - "s": [ - 2, - 4, - 3 - ], - "st": 0, - "z": 6 - }, - { - "code": "c2047", - "ct": 1704850850, - "exp": 1384450, - "f": 2160, - "g": 6, - "id": 591089796, - "l": true, - "name": "Martial Artist Ken", - "opt": 3001, - "s": [ - 6, - 3, - 6 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1043", - "ct": 1704934971, - "d": 6, - "exp": 1190, - "g": 4, - "id": 591660134, - "name": "Romann", - "opt": 1, - "st": 0 - }, - { - "code": "c2069", - "ct": 1705372316, - "d": 5, - "exp": 1384450, - "f": 3986, - "g": 6, - "id": 596366779, - "l": true, - "name": "Eternal Wanderer Ludwig", - "opt": 3021, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c2004", - "ct": 1705375717, - "exp": 1190, - "g": 4, - "id": 596392703, - "l": true, - "name": "Wanderer Silk", - "opt": 1, - "st": 0 - }, - { - "code": "c2035", - "ct": 1706586624, - "d": 7, - "exp": 1110500, - "f": 3, - "g": 6, - "id": 604874070, - "l": true, - "name": "General Purrgis", - "opt": 21, - "s": [ - null, - 2, - 4 - ], - "st": 0, - "z": 6 - }, - { - "code": "c2036", - "ct": 1707291054, - "exp": 1190, - "g": 4, - "id": 608926381, - "name": "Troublemaker Crozet", - "opt": 1, - "st": 0 - }, - { - "code": "c5071", - "ct": 1707877825, - "exp": 1384450, - "f": 1, - "g": 6, - "id": 613630545, - "l": true, - "name": "Seaside Bellona", - "opt": 1, - "s": [ - 2, - 3, - 6 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1133", - "ct": 1708571274, - "d": 5, - "exp": 1384450, - "f": 3162, - "g": 6, - "id": 618609916, - "l": true, - "name": "Zio", - "opt": 3021, - "s": [ - 5, - 5, - 3 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1144", - "ct": 1708698197, - "d": 1, - "exp": 1384450, - "f": 2235, - "g": 6, - "id": 620426700, - "l": true, - "name": "Abigail", - "opt": 3001, - "s": [ - null, - 1, - 3 - ], - "st": 0, - "z": 6 - }, - { - "code": "c2028", - "ct": 1708917457, - "exp": 1190, - "g": 4, - "id": 621886932, - "l": true, - "name": "Kitty Clarissa", - "opt": 1, - "st": 0 - }, - { - "code": "c1127", - "ct": 1709107592, - "exp": 50750, - "g": 5, - "id": 622922254, - "l": true, - "name": "Taeyou", - "opt": 1, - "st": 0, - "z": 2 - }, - { - "code": "c2065", - "ct": 1709697105, - "exp": 1190, - "g": 4, - "id": 625911964, - "name": "Tempest Surin", - "opt": 1, - "st": 0 - }, - { - "code": "c1082", - "ct": 1709860912, - "exp": 1250, - "g": 5, - "id": 627243561, - "name": "Luluca", - "opt": 1, - "st": 0 - }, - { - "code": "c1039", - "ct": 1710300420, - "exp": 1250, - "g": 5, - "id": 629518009, - "l": true, - "name": "Haste", - "opt": 1, - "st": 0 - }, - { - "code": "c2087", - "ct": 1711254847, - "exp": 1190, - "g": 4, - "id": 635778122, - "l": true, - "name": "Peacemaker Furious", - "opt": 1, - "st": 0 - }, - { - "a": true, - "code": "c1091", - "ct": 1711436821, - "d": 3, - "exp": 1384450, - "f": 1518, - "g": 6, - "id": 636577158, - "l": true, - "name": "Elena", - "opt": 3021, - "s": [ - null, - 7, - 2 - ], - "st": 0, - "z": 6 - }, - { - "code": "c2036", - "ct": 1711962573, - "exp": 1190, - "g": 4, - "id": 639220019, - "name": "Troublemaker Crozet", - "opt": 1, - "st": 0 - }, - { - "code": "c1055", - "ct": 1712203434, - "d": 2, - "exp": 1384450, - "f": 1580, - "g": 6, - "id": 640588979, - "l": true, - "name": "Jenua", - "opt": 3021, - "s": [ - 5, - 1, - 7 - ], - "st": 0, - "z": 6 - }, - { - "code": "c2053", - "ct": 1713055321, - "exp": 650125, - "g": 5, - "id": 644899362, - "l": true, - "name": "Desert Jewel Basar", - "opt": 1, - "st": 0, - "z": 2 - }, - { - "code": "c2112", - "ct": 1714022635, - "d": 1, - "exp": 1384450, - "f": 3176, - "g": 6, - "id": 649028156, - "l": true, - "name": "Sea Phantom Politis", - "opt": 3021, - "s": [ - 3, - 7, - 1 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1155", - "ct": 1714622058, - "d": 5, - "exp": 0, - "g": 5, - "id": 653128055, - "l": true, - "name": "Ainz Ooal Gown", - "opt": 1, - "st": 0 - }, - { - "code": "c1156", - "ct": 1714653245, - "exp": 1384450, - "f": 6, - "g": 6, - "id": 654043337, - "l": true, - "name": "Albedo", - "opt": 1, - "s": [ - 3, - 5, - 4 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1006", - "ct": 1714657205, - "exp": 1250, - "g": 5, - "id": 654110906, - "name": "Kise", - "opt": 1, - "st": 0 - }, - { - "code": "c1030", - "ct": 1714661387, - "exp": 0, - "g": 5, - "id": 654185623, - "l": true, - "name": "Yuna", - "opt": 1, - "st": 0 - }, - { - "code": "c3054", - "ct": 1714661436, - "d": 7, - "exp": 840, - "g": 3, - "id": 654186475, - "l": true, - "name": "Elson", - "opt": 1, - "st": 0 - }, - { - "code": "c1010", - "ct": 1714793892, - "d": 6, - "exp": 1190, - "g": 4, - "id": 656042400, - "l": true, - "name": "Zerato", - "opt": 1, - "st": 0 - }, - { - "code": "c3163", - "ct": 1715042923, - "exp": 392415, - "f": 4, - "g": 5, - "id": 659243748, - "l": true, - "name": "Leah", - "opt": 1, - "s": [ - null, - 6, - 3 - ], - "st": 0, - "z": 4 - }, - { - "code": "c1157", - "ct": 1715332266, - "exp": 50750, - "g": 5, - "id": 663498964, - "l": true, - "name": "Shalltear", - "opt": 1, - "st": 0, - "z": 2 - }, - { - "a": true, - "code": "c1142", - "ct": 1715937546, - "d": 1, - "exp": 1384450, - "f": 1507, - "g": 6, - "id": 669363338, - "l": true, - "name": "Eligos", - "opt": 3001, - "s": [ - 7, - 1, - 7 - ], - "st": 0, - "z": 6 - }, - { - "code": "c2020", - "ct": 1716340623, - "exp": 1190, - "g": 4, - "id": 672399111, - "name": "Watcher Schuri", - "opt": 1, - "st": 0 - }, - { - "code": "c6014", - "ct": 1717121846, - "d": 6, - "exp": 1190, - "g": 4, - "id": 677869691, - "l": true, - "name": "Wandering Prince Cidd", - "opt": 1, - "st": 0 - }, - { - "code": "c1147", - "ct": 1717744352, - "exp": 1250, - "g": 5, - "id": 683451634, - "l": true, - "name": "Fumyr", - "opt": 1, - "st": 0 - }, - { - "code": "c1125", - "ct": 1717813570, - "exp": 1250, - "g": 5, - "id": 683971110, - "l": true, - "name": "Peira", - "opt": 1, - "st": 0 - }, - { - "code": "c2029", - "ct": 1717861743, - "d": 6, - "exp": 1190, - "g": 4, - "id": 684343329, - "l": true, - "name": "Roaming Warrior Leo", - "opt": 1, - "st": 0 - }, - { - "a": true, - "code": "c1161", - "ct": 1718855758, - "exp": 1384450, - "f": 1725, - "g": 6, - "id": 690904230, - "l": true, - "name": "Immortal Wukong", - "opt": 1, - "s": [ - 4, - 4, - 4 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1003", - "ct": 1719022190, - "exp": 1190, - "g": 4, - "id": 694125633, - "name": "Rose", - "opt": 1, - "st": 0 - }, - { - "code": "c3162", - "ct": 1719219351, - "d": 2, - "exp": 840, - "g": 3, - "id": 697089179, - "l": true, - "name": "Bernard", - "opt": 1, - "st": 0 - }, - { - "code": "c2086", - "ct": 1719278174, - "exp": 1190, - "g": 4, - "id": 697938268, - "name": "Great Chief Khawana", - "opt": 1, - "st": 0 - }, - { - "code": "c2021", - "ct": 1719449435, - "exp": 1190, - "g": 4, - "id": 700466061, - "name": "Blaze Dingo", - "opt": 1, - "st": 0 - }, - { - "code": "c1103", - "ct": 1719729849, - "d": 1, - "exp": 1384450, - "f": 1510, - "g": 6, - "id": 704271358, - "l": true, - "name": "Celine", - "opt": 3021, - "s": [ - 4, - 5, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1069", - "ct": 1719887339, - "exp": 1250, - "g": 5, - "id": 705706310, - "l": true, - "name": "Ludwig", - "opt": 1, - "st": 0 - }, - { - "code": "c1159", - "ct": 1719887339, - "exp": 1384450, - "f": 2, - "g": 6, - "id": 705706311, - "l": true, - "name": "Laia", - "opt": 1, - "s": [ - 3, - 3, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1035", - "ct": 1720502364, - "exp": 0, - "g": 4, - "id": 709260574, - "name": "Purrgis", - "opt": 1, - "st": 0 - }, - { - "code": "c2066", - "ct": 1721290967, - "d": 2, - "exp": 1384450, - "f": 2455, - "g": 6, - "id": 713583798, - "l": true, - "name": "New Moon Luna", - "opt": 3021, - "s": [ - 4, - 4, - 3 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1148", - "ct": 1721292260, - "d": 1, - "exp": 1384450, - "f": 7, - "g": 6, - "id": 713631381, - "l": true, - "name": "Elvira", - "opt": 21, - "s": [ - null, - null, - 3 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1028", - "ct": 1721292366, - "exp": 1190, - "g": 4, - "id": 713635239, - "name": "Clarissa", - "opt": 1, - "st": 0 - }, - { - "code": "c1037", - "ct": 1721292366, - "exp": 1190, - "g": 4, - "id": 713635240, - "l": true, - "name": "Dominiel", - "opt": 1, - "st": 0 - }, - { - "code": "c5009", - "ct": 1721293423, - "exp": 33000, - "g": 5, - "id": 713670191, - "l": true, - "name": "Summer Break Charlotte", - "opt": 1, - "st": 0, - "z": 2 - }, - { - "code": "c2085", - "ct": 1721315297, - "exp": 1190, - "g": 4, - "id": 714211978, - "l": true, - "name": "Inferno Khawazu", - "opt": 1, - "st": 0 - }, - { - "code": "c1019", - "ct": 1721655579, - "d": 1, - "exp": 1250, - "g": 5, - "id": 717223364, - "l": true, - "name": "Ravi", - "opt": 1, - "st": 0 - }, - { - "code": "c1066", - "ct": 1722101719, - "exp": 0, - "g": 5, - "id": 720757642, - "l": true, - "name": "Luna", - "opt": 1, - "st": 0 - }, - { - "code": "c2099", - "ct": 1722403018, - "exp": 1250, - "g": 5, - "id": 722768494, - "l": true, - "name": "Architect Laika", - "opt": 1, - "st": 0, - "z": 1 - }, - { - "code": "c3155", - "ct": 1723354015, - "d": 5, - "exp": 840, - "g": 3, - "id": 727911008, - "l": true, - "name": "Suthan", - "opt": 1, - "st": 0 - }, - { - "code": "c6008", - "ct": 1723724804, - "exp": 1190, - "g": 4, - "id": 729505568, - "name": "Bad Cat Armin", - "opt": 1, - "st": 0 - }, - { - "code": "c1143", - "ct": 1724576642, - "exp": 0, - "g": 5, - "id": 734132565, - "l": true, - "name": "Amid", - "opt": 1, - "st": 0, - "z": 1 - }, - { - "code": "c2071", - "ct": 1724916247, - "exp": 1384450, - "f": 1302, - "g": 6, - "id": 736028830, - "l": true, - "name": "Lone Crescent Bellona", - "opt": 1, - "s": [ - 3, - 4, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c2003", - "ct": 1725327062, - "exp": 1190, - "g": 4, - "id": 738613926, - "name": "Shadow Rose", - "opt": 1, - "st": 0 - }, - { - "code": "c2011", - "ct": 1725327096, - "d": 6, - "exp": 1110500, - "f": 1765, - "g": 6, - "id": 738614105, - "l": true, - "name": "Blood Blade Karin", - "opt": 3021, - "s": [ - 3, - 5, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c2085", - "ct": 1725354805, - "exp": 1190, - "g": 4, - "id": 738790497, - "name": "Inferno Khawazu", - "opt": 1, - "st": 0 - }, - { - "code": "c1163", - "ct": 1725505512, - "d": 1, - "exp": 1384450, - "f": 1975, - "g": 6, - "id": 739641017, - "l": true, - "name": "Frida", - "opt": 3021, - "s": [ - null, - 3, - 6 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1072", - "ct": 1725848316, - "exp": 0, - "g": 5, - "id": 742543115, - "name": "Sigret", - "opt": 1, - "st": 0 - }, - { - "code": "c1006", - "ct": 1726127848, - "exp": 0, - "g": 5, - "id": 745533074, - "name": "Kise", - "opt": 1, - "st": 0 - }, - { - "code": "c6017", - "ct": 1726244362, - "exp": 1190, - "g": 4, - "id": 747633084, - "l": true, - "name": "Infinite Horizon Achates", - "opt": 1, - "st": 0 - }, - { - "code": "c2005", - "ct": 1726270592, - "exp": 1190, - "g": 4, - "id": 748202380, - "name": "Celestial Mercedes", - "opt": 1, - "st": 0 - }, - { - "code": "c2011", - "ct": 1726530342, - "exp": 1190, - "g": 4, - "id": 753164340, - "name": "Blood Blade Karin", - "opt": 1, - "st": 0 - }, - { - "code": "c2021", - "ct": 1726703776, - "exp": 1190, - "g": 4, - "id": 756139227, - "name": "Blaze Dingo", - "opt": 1, - "st": 0 - }, - { - "code": "c6037", - "ct": 1726789914, - "exp": 1190, - "g": 4, - "id": 757618535, - "name": "Moon Bunny Dominiel", - "opt": 1, - "st": 0 - }, - { - "code": "c2031", - "ct": 1726832217, - "exp": 1190, - "g": 4, - "id": 758299168, - "name": "Auxiliary Lots", - "opt": 1, - "st": 0 - }, - { - "code": "c2010", - "ct": 1726967321, - "exp": 1190, - "g": 4, - "id": 760775065, - "name": "Champion Zerato", - "opt": 1, - "st": 0 - }, - { - "code": "c6017", - "ct": 1727135906, - "exp": 1190, - "g": 4, - "id": 764105337, - "name": "Infinite Horizon Achates", - "opt": 1, - "st": 0 - }, - { - "code": "c2018", - "ct": 1727223703, - "exp": 1190, - "g": 4, - "id": 765454999, - "name": "Guider Aither", - "opt": 1, - "st": 0 - }, - { - "code": "c2008", - "ct": 1727223721, - "d": 3, - "exp": 1190, - "g": 4, - "id": 765455465, - "name": "Crimson Armin", - "opt": 1, - "st": 0 - }, - { - "code": "c1110", - "ct": 1727227245, - "exp": 0, - "g": 5, - "id": 765537981, - "l": true, - "name": "Flan", - "opt": 1, - "st": 0, - "z": 1 - }, - { - "code": "c2035", - "ct": 1727394517, - "exp": 1190, - "g": 4, - "id": 767590407, - "name": "General Purrgis", - "opt": 1, - "st": 0 - }, - { - "code": "c1009", - "ct": 1727394592, - "exp": 0, - "g": 5, - "id": 767592356, - "name": "Charlotte", - "opt": 1, - "st": 0 - }, - { - "code": "c1073", - "ct": 1727508027, - "exp": 0, - "g": 5, - "id": 769109420, - "l": true, - "name": "Kawerik", - "opt": 1, - "st": 0 - }, - { - "code": "c2005", - "ct": 1727565708, - "exp": 1190, - "g": 4, - "id": 769782467, - "name": "Celestial Mercedes", - "opt": 1, - "st": 0 - }, - { - "code": "c2031", - "ct": 1727565722, - "exp": 1190, - "g": 4, - "id": 769782856, - "name": "Auxiliary Lots", - "opt": 1, - "st": 0 - }, - { - "code": "c1104", - "ct": 1727572976, - "d": 1, - "exp": 1384450, - "f": 1968, - "g": 6, - "id": 769932771, - "name": "Mort", - "opt": 3021, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1029", - "ct": 1727748919, - "exp": 0, - "g": 4, - "id": 771961989, - "name": "Leo", - "opt": 1, - "st": 0 - }, - { - "code": "c6011", - "ct": 1727924536, - "exp": 1190, - "g": 4, - "id": 774326816, - "name": "Last Piece Karin", - "opt": 1, - "st": 0 - }, - { - "code": "c1158", - "ct": 1727924557, - "exp": 13782, - "f": 9, - "g": 5, - "id": 774330313, - "name": "Fenris", - "opt": 1, - "st": 0 - }, - { - "code": "c3165", - "ct": 1728175276, - "d": 7, - "exp": 840, - "g": 3, - "id": 777665978, - "l": true, - "name": "Pernilla", - "opt": 1, - "st": 0 - }, - { - "code": "c2028", - "ct": 1728175279, - "exp": 1190, - "g": 4, - "id": 777666018, - "name": "Kitty Clarissa", - "opt": 1, - "st": 0 - }, - { - "code": "c2101", - "ct": 1728175291, - "exp": 1384450, - "f": 1431, - "g": 6, - "id": 777666204, - "l": true, - "name": "Urban Shadow Choux", - "opt": 1, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c2043", - "ct": 1728407903, - "exp": 1190, - "g": 4, - "id": 780423488, - "name": "Benevolent Romann", - "opt": 1, - "st": 0 - }, - { - "code": "c2015", - "ct": 1728465216, - "exp": 1250, - "g": 5, - "id": 781143454, - "l": true, - "name": "Sage Baal & Sezan", - "opt": 1, - "st": 0 - }, - { - "code": "c2072", - "ct": 1728465216, - "exp": 1250, - "g": 5, - "id": 781143455, - "l": true, - "name": "Operator Sigret", - "opt": 1, - "st": 0, - "z": 1 - }, - { - "code": "c1079", - "ct": 1728483165, - "exp": 0, - "g": 5, - "id": 781345622, - "name": "Cermia", - "opt": 1, - "st": 0 - }, - { - "code": "c2002", - "ct": 1728516235, - "exp": 1384450, - "f": 1184, - "g": 6, - "id": 781837305, - "l": true, - "name": "Fallen Cecilia", - "opt": 1, - "s": [ - 3, - 5, - 3 - ], - "st": 0, - "z": 6 - }, - { - "code": "c2015", - "ct": 1728602465, - "exp": 1250, - "g": 5, - "id": 783871215, - "l": true, - "name": "Sage Baal & Sezan", - "opt": 1, - "st": 0, - "z": 1 - }, - { - "code": "c1100", - "ct": 1728623353, - "d": 5, - "exp": 1384450, - "f": 2926, - "g": 6, - "id": 784315107, - "l": true, - "name": "Alencia", - "opt": 3021, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1048", - "ct": 1728634897, - "exp": 0, - "g": 5, - "id": 784460720, - "name": "Aramintha", - "opt": 1, - "st": 0 - }, - { - "code": "c1003", - "ct": 1729055377, - "exp": 1190, - "g": 4, - "id": 788942610, - "name": "Rose", - "opt": 1, - "st": 0 - }, - { - "code": "c1125", - "ct": 1729055386, - "exp": 1250, - "g": 5, - "id": 788942664, - "name": "Peira", - "opt": 1, - "st": 0 - }, - { - "code": "c1160", - "ct": 1729055403, - "exp": 1250, - "g": 5, - "id": 788942790, - "name": "Birgitta", - "opt": 1, - "st": 0 - }, - { - "code": "c1080", - "ct": 1729065887, - "exp": 1250, - "g": 5, - "id": 789011818, - "name": "Pavel", - "opt": 1, - "st": 0 - }, - { - "code": "c2032", - "ct": 1729512823, - "d": 2, - "exp": 1190, - "g": 4, - "id": 792704116, - "name": "Fighter Maya", - "opt": 1, - "st": 0 - }, - { - "code": "c2020", - "ct": 1729512857, - "exp": 1190, - "g": 4, - "id": 792704331, - "name": "Watcher Schuri", - "opt": 1, - "st": 0 - }, - { - "code": "c1007", - "ct": 1729657821, - "d": 5, - "exp": 1384450, - "f": 1744, - "g": 6, - "id": 793619248, - "name": "Vildred", - "opt": 3001, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1038", - "ct": 1729921198, - "d": 2, - "exp": 1384450, - "f": 1512, - "g": 6, - "id": 795195383, - "l": true, - "name": "Sez", - "opt": 3021, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1096", - "ct": 1729921234, - "exp": 0, - "g": 5, - "id": 795195612, - "name": "Melissa", - "opt": 1, - "st": 0 - }, - { - "code": "c5110", - "ct": 1730352170, - "d": 5, - "exp": 1384450, - "f": 2568, - "g": 6, - "id": 798777729, - "l": true, - "name": "Afternoon Soak Flan", - "opt": 3021, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1153", - "ct": 1730386484, - "d": 1, - "exp": 1384450, - "f": 1566, - "g": 6, - "id": 799495489, - "l": true, - "name": "Harsetti", - "opt": 3021, - "s": [ - 7, - null, - 8 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1014", - "ct": 1730719416, - "exp": 1190, - "g": 4, - "id": 802066027, - "name": "Cidd", - "opt": 1, - "st": 0 - }, - { - "code": "c2021", - "ct": 1730768489, - "exp": 1190, - "g": 4, - "id": 802422024, - "name": "Blaze Dingo", - "opt": 1, - "st": 0 - }, - { - "code": "c1111", - "ct": 1731232616, - "exp": 1250, - "g": 5, - "id": 806245922, - "name": "Eda", - "opt": 1, - "st": 0 - }, - { - "code": "c2013", - "ct": 1732608860, - "exp": 1190, - "g": 4, - "id": 816373029, - "name": "Assassin Cartuja", - "opt": 1, - "st": 0 - }, - { - "code": "c1031", - "ct": 1732623781, - "d": 6, - "exp": 1190, - "g": 4, - "id": 816434203, - "l": true, - "name": "Lots", - "opt": 1, - "st": 0 - }, - { - "code": "c2053", - "ct": 1733034882, - "exp": 1250, - "g": 5, - "id": 819542674, - "name": "Desert Jewel Basar", - "opt": 1, - "st": 0 - }, - { - "code": "c3160", - "ct": 1733189362, - "exp": 840, - "g": 3, - "id": 821096066, - "l": true, - "name": "Revna", - "opt": 1, - "st": 0 - }, - { - "code": "c2014", - "ct": 1733965880, - "exp": 1190, - "g": 4, - "id": 825069679, - "name": "Assassin Cidd", - "opt": 1, - "st": 0 - }, - { - "code": "c1047", - "ct": 1733983381, - "exp": 1250, - "g": 5, - "id": 825212632, - "name": "Ken", - "opt": 1, - "st": 0 - }, - { - "code": "c1015", - "ct": 1734059131, - "exp": 1250, - "g": 5, - "id": 825583290, - "name": "Baal & Sezan", - "opt": 1, - "st": 0 - }, - { - "a": true, - "code": "c1022", - "ct": 1735030551, - "exp": 1384450, - "f": 1503, - "g": 6, - "id": 829105288, - "l": true, - "name": "Ruele of Light", - "opt": 3001, - "s": [ - 4, - 5, - 2 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1162", - "ct": 1735198134, - "exp": 1384450, - "f": 537, - "g": 6, - "id": 830235768, - "l": true, - "name": "Young Senya", - "opt": 1, - "s": [ - null, - 5, - 4 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1102", - "ct": 1735371046, - "exp": 1250, - "g": 5, - "id": 831124668, - "name": "Roana", - "opt": 1, - "st": 0 - }, - { - "code": "c1020", - "ct": 1735800397, - "d": 6, - "exp": 1190, - "g": 4, - "id": 832810039, - "name": "Schuri", - "opt": 1, - "st": 0 - }, - { - "code": "c1095", - "ct": 1736613290, - "exp": 1250, - "g": 5, - "id": 837159170, - "name": "Lilibet", - "opt": 1, - "st": 0 - }, - { - "code": "c1006", - "ct": 1736901651, - "exp": 0, - "g": 5, - "id": 839183431, - "name": "Kise", - "opt": 1, - "st": 0 - }, - { - "code": "c1009", - "ct": 1737423137, - "exp": 0, - "g": 5, - "id": 841561890, - "name": "Charlotte", - "opt": 1, - "st": 0 - }, - { - "code": "c2037", - "ct": 1737702815, - "exp": 1190, - "g": 4, - "id": 843031086, - "name": "Challenger Dominiel", - "opt": 1, - "st": 0 - }, - { - "code": "c2036", - "ct": 1737803188, - "exp": 1190, - "g": 4, - "id": 843551487, - "name": "Troublemaker Crozet", - "opt": 1, - "st": 0 - }, - { - "code": "c1053", - "ct": 1738044569, - "exp": 1250, - "g": 5, - "id": 844765495, - "name": "Basar", - "opt": 1, - "st": 0 - }, - { - "code": "c2038", - "ct": 1738325778, - "exp": 1250, - "g": 5, - "id": 845965646, - "l": true, - "name": "Specimen Sez", - "opt": 1, - "st": 0, - "z": 1 - }, - { - "code": "c6017", - "ct": 1738634839, - "exp": 1190, - "g": 4, - "id": 846980694, - "name": "Infinite Horizon Achates", - "opt": 1, - "st": 0 - }, - { - "code": "c1054", - "ct": 1738637005, - "exp": 1190, - "g": 4, - "id": 846989211, - "name": "Rin", - "opt": 1, - "st": 0 - }, - { - "code": "c1170", - "ct": 1738811830, - "exp": 1384450, - "f": 3832, - "g": 6, - "id": 847822619, - "l": true, - "name": "Fenne", - "opt": 3001, - "s": [ - 5, - 3, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c6014", - "ct": 1738981000, - "exp": 1190, - "g": 4, - "id": 849101161, - "name": "Wandering Prince Cidd", - "opt": 1, - "st": 0 - }, - { - "code": "c2086", - "ct": 1739326517, - "exp": 1190, - "g": 4, - "id": 850569245, - "name": "Great Chief Khawana", - "opt": 1, - "st": 0 - }, - { - "code": "c1085", - "ct": 1739456625, - "exp": 0, - "g": 4, - "id": 851407497, - "name": "Khawazu", - "opt": 1, - "st": 0 - }, - { - "code": "c2043", - "ct": 1739857998, - "exp": 1190, - "g": 4, - "id": 853072574, - "name": "Benevolent Romann", - "opt": 1, - "st": 0 - }, - { - "code": "c2054", - "ct": 1740733905, - "exp": 1190, - "g": 4, - "id": 857679008, - "name": "Crescent Moon Rin", - "opt": 1, - "st": 0 - }, - { - "code": "c5016", - "ct": 1741932122, - "exp": 1250, - "g": 5, - "id": 865374067, - "name": "Holiday Yufine", - "opt": 1, - "st": 0 - }, - { - "code": "c1076", - "ct": 1742957662, - "exp": 0, - "g": 5, - "id": 870453193, - "l": true, - "name": "Diene", - "opt": 1, - "st": 0 - }, - { - "code": "c2020", - "ct": 1743226650, - "exp": 1190, - "g": 4, - "id": 872420987, - "name": "Watcher Schuri", - "opt": 1, - "st": 0 - }, - { - "code": "c2029", - "ct": 1743404217, - "exp": 1190, - "g": 4, - "id": 874113059, - "name": "Roaming Warrior Leo", - "opt": 1, - "st": 0 - }, - { - "code": "c2012", - "ct": 1743468640, - "exp": 1250, - "g": 5, - "id": 874653614, - "name": "Dark Corvus", - "opt": 1, - "st": 0 - }, - { - "code": "c1054", - "ct": 1744189225, - "exp": 0, - "g": 4, - "id": 880181269, - "name": "Rin", - "opt": 1, - "st": 0 - }, - { - "code": "c1006", - "ct": 1744189225, - "exp": 0, - "g": 5, - "id": 880181271, - "name": "Kise", - "opt": 1, - "st": 0 - }, - { - "code": "c1003", - "ct": 1744189225, - "exp": 0, - "g": 4, - "id": 880181272, - "name": "Rose", - "opt": 1, - "st": 0 - }, - { - "code": "c1010", - "ct": 1744189225, - "exp": 0, - "g": 4, - "id": 880181274, - "name": "Zerato", - "opt": 1, - "st": 0 - }, - { - "code": "c1006", - "ct": 1744189225, - "exp": 0, - "g": 5, - "id": 880181276, - "name": "Kise", - "opt": 1, - "st": 0 - }, - { - "code": "c1086", - "ct": 1744435669, - "exp": 1190, - "g": 4, - "id": 880781768, - "name": "Khawana", - "opt": 1, - "st": 0 - }, - { - "code": "c1095", - "ct": 1745369706, - "exp": 1250, - "g": 5, - "id": 885173208, - "name": "Lilibet", - "opt": 1, - "st": 0 - }, - { - "code": "c1166", - "ct": 1745646313, - "exp": 3180, - "g": 4, - "id": 887329296, - "name": "Victorika", - "opt": 1, - "st": 0 - }, - { - "code": "c1032", - "ct": 1745801247, - "exp": 1190, - "g": 4, - "id": 888454074, - "name": "Maya", - "opt": 1, - "st": 0 - }, - { - "code": "c3006", - "ct": 1745802411, - "exp": 0, - "g": 3, - "id": 888466672, - "name": "Bask", - "opt": 1, - "st": 0 - }, - { - "code": "c3006", - "ct": 1745803071, - "exp": 0, - "g": 3, - "id": 888474090, - "name": "Bask", - "opt": 1, - "st": 0 - }, - { - "code": "c3006", - "ct": 1745803071, - "exp": 0, - "g": 3, - "id": 888474091, - "name": "Bask", - "opt": 1, - "st": 0 - }, - { - "code": "c3006", - "ct": 1745809525, - "exp": 0, - "g": 3, - "id": 888535983, - "name": "Bask", - "opt": 1, - "st": 0 - }, - { - "code": "c3006", - "ct": 1745809525, - "exp": 0, - "g": 3, - "id": 888535985, - "name": "Bask", - "opt": 1, - "st": 0 - }, - { - "code": "c3006", - "ct": 1745809525, - "exp": 0, - "g": 3, - "id": 888535988, - "name": "Bask", - "opt": 1, - "st": 0 - }, - { - "code": "c2015", - "ct": 1745974398, - "exp": 1250, - "g": 5, - "id": 889945456, - "name": "Sage Baal & Sezan", - "opt": 1, - "st": 0 - }, - { - "code": "c1034", - "ct": 1746072744, - "d": 5, - "exp": 1384450, - "f": 2587, - "g": 6, - "id": 890790459, - "l": true, - "name": "Straze", - "opt": 3021, - "s": [ - 5, - 3, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1088", - "ct": 1746111807, - "exp": 0, - "g": 5, - "id": 891089072, - "name": "Vivian", - "opt": 1, - "st": 0 - }, - { - "code": "c1007", - "ct": 1746189218, - "exp": 1250, - "g": 5, - "id": 891521755, - "name": "Vildred", - "opt": 1, - "st": 0 - }, - { - "code": "c1031", - "ct": 1746241211, - "exp": 1190, - "g": 4, - "id": 891743321, - "name": "Lots", - "opt": 1, - "st": 0 - }, - { - "code": "c2106", - "ct": 1746396462, - "d": 1, - "exp": 1384450, - "f": 1522, - "g": 6, - "id": 892353109, - "l": true, - "name": "Dragon Bride Senya", - "opt": 3021, - "s": [ - 4, - 1, - 7 - ], - "st": 0, - "z": 6 - }, - { - "code": "c2124", - "ct": 1746679162, - "d": 5, - "exp": 1384450, - "f": 714, - "g": 6, - "id": 893757497, - "l": true, - "name": "Boss Arunka", - "opt": 21, - "s": [ - 6, - 3, - 6 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1060", - "ct": 1746758209, - "exp": 1384450, - "f": 1, - "g": 6, - "id": 894623419, - "name": "Schniel", - "opt": 1, - "s": [ - null, - 1, - 1 - ], - "st": 0, - "z": 5 - }, - { - "code": "c1072", - "ct": 1747006760, - "exp": 0, - "g": 5, - "id": 895661551, - "name": "Sigret", - "opt": 1, - "st": 0 - }, - { - "code": "c1118", - "ct": 1747093837, - "exp": 1250, - "g": 5, - "id": 895977706, - "name": "Ran", - "opt": 1, - "st": 0 - }, - { - "code": "c1168", - "ct": 1747311994, - "exp": 1384450, - "f": 432, - "g": 6, - "id": 897188455, - "l": true, - "name": "Rinak", - "opt": 1, - "s": [ - null, - 5, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c5004", - "ct": 1747608371, - "exp": 0, - "g": 5, - "id": 898222350, - "name": "Archdemon's Shadow", - "opt": 1, - "st": 0 - }, - { - "code": "c5070", - "ct": 1747887832, - "exp": 650125, - "f": 364, - "g": 5, - "id": 898971885, - "l": true, - "name": "Guard Captain Krau", - "opt": 1, - "st": 0, - "z": 1 - }, - { - "code": "c5046", - "ct": 1747901013, - "exp": 1384450, - "f": 15, - "g": 6, - "id": 899011010, - "l": true, - "name": "Blooming Lidica", - "opt": 1, - "s": [ - 3, - 5, - 3 - ], - "st": 0, - "z": 6 - }, - { - "code": "c1097", - "ct": 1747993818, - "exp": 0, - "g": 5, - "id": 899502338, - "name": "Bomb Model Kanna", - "opt": 1, - "st": 0 - }, - { - "code": "c1146", - "ct": 1747996839, - "exp": 1384450, - "f": 11, - "g": 6, - "id": 899521626, - "l": true, - "name": "Benimaru", - "opt": 1, - "s": [ - null, - 4, - 5 - ], - "st": 0, - "z": 6 - }, - { - "code": "c6017", - "ct": 1748311835, - "exp": 1190, - "g": 4, - "id": 901890162, - "name": "Infinite Horizon Achates", - "opt": 1, - "st": 0 - }, - { - "code": "c1012", - "ct": 1749028123, - "exp": 0, - "g": 4, - "id": 904716030, - "name": "Corvus", - "opt": 1, - "st": 0 - }, - { - "code": "c1085", - "ct": 1749028123, - "exp": 0, - "g": 4, - "id": 904716031, - "name": "Khawazu", - "opt": 1, - "st": 0 - }, - { - "code": "c1054", - "ct": 1749028123, - "exp": 0, - "g": 4, - "id": 904716033, - "name": "Rin", - "opt": 1, - "st": 0 - }, - { - "code": "c1085", - "ct": 1749028123, - "exp": 0, - "g": 4, - "id": 904716034, - "name": "Khawazu", - "opt": 1, - "st": 0 - }, - { - "code": "c1099", - "ct": 1749028123, - "exp": 0, - "g": 5, - "id": 904716035, - "name": "Command Model Laika", - "opt": 1, - "st": 0 - }, - { - "code": "c1011", - "ct": 1749028123, - "exp": 0, - "g": 4, - "id": 904716036, - "name": "Karin", - "opt": 1, - "st": 0 - }, - { - "code": "c1008", - "ct": 1749028123, - "exp": 0, - "g": 4, - "id": 904716037, - "name": "Armin", - "opt": 1, - "st": 0 - }, - { - "code": "c1017", - "ct": 1749028123, - "exp": 0, - "g": 4, - "id": 904716038, - "name": "Achates", - "opt": 1, - "st": 0 - }, - { - "code": "c1004", - "ct": 1749028123, - "exp": 0, - "g": 4, - "id": 904716039, - "name": "Silk", - "opt": 1, - "st": 0 - }, - { - "code": "c1065", - "ct": 1749106956, - "exp": 1190, - "g": 4, - "id": 904970815, - "name": "Surin", - "opt": 1, - "st": 0 - }, - { - "code": "c1029", - "ct": 1749620335, - "exp": 1190, - "g": 4, - "id": 907241836, - "name": "Leo", - "opt": 1, - "st": 0 - }, - { - "code": "c1065", - "ct": 1749775144, - "exp": 1190, - "g": 4, - "id": 908262329, - "name": "Surin", - "opt": 1, - "st": 0 - }, - { - "code": "c1085", - "ct": 1749869798, - "exp": 0, - "g": 4, - "id": 908791603, - "name": "Khawazu", - "opt": 1, - "st": 0 - }, - { - "code": "c1004", - "ct": 1749870553, - "exp": 1190, - "g": 4, - "id": 908796189, - "name": "Silk", - "opt": 1, - "st": 0 - }, - { - "code": "c2087", - "ct": 1749905167, - "exp": 1190, - "g": 4, - "id": 908941809, - "name": "Peacemaker Furious", - "opt": 1, - "st": 0 - }, - { - "code": "c1028", - "ct": 1749908653, - "exp": 1190, - "g": 4, - "id": 908956490, - "name": "Clarissa", - "opt": 1, - "st": 0 - }, - { - "code": "c1008", - "ct": 1750311172, - "exp": 0, - "g": 4, - "id": 910891387, - "name": "Armin", - "opt": 1, - "st": 0 - }, - { - "code": "c1035", - "ct": 1750311172, - "exp": 0, - "g": 4, - "id": 910891388, - "name": "Purrgis", - "opt": 1, - "st": 0 - }, - { - "code": "c1003", - "ct": 1750311501, - "exp": 1190, - "g": 4, - "id": 910908244, - "name": "Rose", - "opt": 1, - "st": 0 - }, - { - "code": "c1096", - "ct": 1750423108, - "exp": 1250, - "g": 5, - "id": 912409120, - "name": "Melissa", - "opt": 1, - "st": 0 - }, - { - "code": "c2087", - "ct": 1750483271, - "exp": 1190, - "g": 4, - "id": 912947591, - "name": "Peacemaker Furious", - "opt": 1, - "st": 0 - }, - { - "code": "c1004", - "ct": 1750483271, - "exp": 1190, - "g": 4, - "id": 912947593, - "name": "Silk", - "opt": 1, - "st": 0 - }, - { - "code": "c1013", - "ct": 1750735062, - "exp": 1190, - "g": 4, - "id": 914955758, - "name": "Cartuja", - "opt": 1, - "st": 0 - }, - { - "code": "c1087", - "ct": 1750774024, - "exp": 0, - "g": 4, - "id": 915209641, - "name": "Furious", - "opt": 1, - "st": 0 - }, - { - "code": "c1004", - "ct": 1750775239, - "exp": 1190, - "g": 4, - "id": 915219532, - "name": "Silk", - "opt": 1, - "st": 0 - }, - { - "code": "c1011", - "ct": 1750945159, - "exp": 1190, - "g": 4, - "id": 916420780, - "name": "Karin", - "opt": 1, - "st": 0 - }, - { - "code": "c2004", - "ct": 1750945182, - "exp": 1190, - "g": 4, - "id": 916420883, - "name": "Wanderer Silk", - "opt": 1, - "st": 0 - }, - { - "code": "c2036", - "ct": 1750945190, - "exp": 1190, - "g": 4, - "id": 916420926, - "name": "Troublemaker Crozet", - "opt": 1, - "st": 0 - }, - { - "code": "c1065", - "ct": 1751125444, - "exp": 0, - "g": 4, - "id": 917396476, - "name": "Surin", - "opt": 1, - "st": 0 - }, - { - "code": "c2005", - "ct": 1751125478, - "exp": 1190, - "g": 4, - "id": 917396695, - "name": "Celestial Mercedes", - "opt": 1, - "st": 0 - }, - { - "code": "c1069", - "ct": 1751261450, - "exp": 0, - "g": 5, - "id": 918192152, - "name": "Ludwig", - "opt": 1, - "st": 0 - } - ] - ] -} diff --git a/internal/service/parser_service.go b/internal/service/parser_service.go index 003dc00..93f7ecf 100644 --- a/internal/service/parser_service.go +++ b/internal/service/parser_service.go @@ -67,12 +67,8 @@ func (ps *ParserService) ParseHexData(hexDataList []string) (*model.ParsedResult return nil, "", fmt.Errorf("远程json校验失败,data字段缺失或为空") } - // 校验通过再写入本地文件 - fileErr := ioutil.WriteFile("output_raw.json", body, 0644) - if fileErr != nil { - ps.logger.Error("写入原始json文件失败", "error", fileErr) - } - ps.logger.Info("远程原始数据已写入output_raw.json") + // 校验通过,直接解析数据 + ps.logger.Info("远程原始数据校验通过,开始解析") parsedResult, err := ps.ReadRawJsonFile(string(body)) if err != nil { return nil, "", err diff --git a/internal/service/parser_service_test.go b/internal/service/parser_service_test.go index 0b09f35..21e4a15 100644 --- a/internal/service/parser_service_test.go +++ b/internal/service/parser_service_test.go @@ -1,85 +1,13 @@ package service import ( - "encoding/json" - "equipment-analyzer/internal/config" - "equipment-analyzer/internal/utils" - "fmt" "testing" ) func TestReadRawJsonFile(t *testing.T) { - // 创建测试用的配置和日志器 - config := &config.Config{} - logger := utils.NewLogger() - - // 创建ParserService实例 - ps := NewParserService(config, logger) - - // 调用ReadRawJsonFile方法 - result, err := ps.ReadRawJsonFile() - if err != nil { - t.Fatalf("ReadRawJsonFile failed: %v", err) - } - - fmt.Printf("Raw result length: %d\n", len(result)) - fmt.Printf("Raw result preview: %s\n", result[:min(200, len(result))]) - - // 解析JSON结果 - var parsedData map[string]interface{} - if err := json.Unmarshal([]byte(result), &parsedData); err != nil { - t.Fatalf("Failed to parse JSON result: %v", err) - } - - // 检查数据结构 - fmt.Printf("Parsed data keys: %v\n", getKeys(parsedData)) - - // 检查items字段 - if items, exists := parsedData["items"]; exists { - if itemsArray, ok := items.([]interface{}); ok { - fmt.Printf("Items count: %d\n", len(itemsArray)) - if len(itemsArray) > 0 { - fmt.Printf("First item: %+v\n", itemsArray[0]) - } - } else { - fmt.Printf("Items is not an array: %T\n", items) - } - } else { - fmt.Println("Items field not found") - } - - // 检查heroes字段 - if heroes, exists := parsedData["heroes"]; exists { - if heroesArray, ok := heroes.([]interface{}); ok { - fmt.Printf("Heroes count: %d\n", len(heroesArray)) - if len(heroesArray) > 0 { - fmt.Printf("First hero: %+v\n", heroesArray[0]) - } - } else { - fmt.Printf("Heroes is not an array: %T\n", heroes) - } - } else { - fmt.Println("Heroes field not found") - } - - // 如果没有数据,输出更多调试信息 - if len(result) < 100 { - fmt.Printf("Result seems empty or very short: %q\n", result) - } + // 此测试已废弃,因为ReadRawJsonFile方法已被移除 + // 现在数据存储在SQLite数据库中,不再依赖output_raw.json文件 + t.Skip("ReadRawJsonFile测试已废弃,数据现在存储在SQLite数据库中") } -// 辅助函数 -func min(a, b int) int { - if a < b { - return a - } - return b -} - -func getKeys(m map[string]interface{}) []string { - keys := make([]string, 0, len(m)) - for k := range m { - keys = append(keys, k) - } - return keys -} +// 辅助函数已移除,因为测试已废弃 diff --git a/internal/utils/logger.go b/internal/utils/logger.go index 532cc4f..4ebc8a7 100644 --- a/internal/utils/logger.go +++ b/internal/utils/logger.go @@ -13,7 +13,7 @@ type Logger struct { func NewLogger() *Logger { // 配置日志轮转 lumberJackLogger := &lumberjack.Logger{ - Filename: "logs/equipment-analyzer.log", + Filename: "./logs/equipment-analyzer.log", MaxSize: 100, // MB MaxBackups: 3, MaxAge: 28, // days diff --git a/opepic.json b/opepic.json deleted file mode 100644 index f1ebfbc..0000000 --- a/opepic.json +++ /dev/null @@ -1,126588 +0,0 @@ -{ - "items": [ - { - "code": "emd5a", - "ct": 1687315843, - "e": 70322, - "f": "set_speed", - "g": 5, - "id": 55095347, - "l": true, - "level": 70, - "mainStatBaseValue": 52, - "mainStatId": "md5_armo_m", - "mainStatType": "def", - "mainStatValue": 260, - "mg": 1111, - "op": [ - [ - "def", - 52 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 3 - ] - ], - "p": 663498964, - "s": "bd8d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 260 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 3 - }, - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 55095347, - "ingameEquippedId": "663498964" - }, - { - "code": "emd5n", - "ct": 1687315843, - "e": 76932, - "f": "set_cri", - "g": 5, - "id": 55095368, - "l": true, - "level": 70, - "mainStatBaseValue": 0.11, - "mainStatId": "md5_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.55, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.11 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.02 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ] - ], - "p": 549294853, - "s": "a71a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 55 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 10, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 2 - } - ], - "ingameId": 55095368, - "ingameEquippedId": "549294853" - }, - { - "code": "eah8r", - "ct": 1687319825, - "e": 94162, - "f": "set_speed", - "g": 5, - "id": 57468023, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah8_ring_m1", - "mainStatType": "acc", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "acc", - 0.13 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "p": 899011010, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectivenessPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 27, - "rolls": 4 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 57468023, - "ingameEquippedId": "899011010" - }, - { - "code": "eug14a", - "ct": 1687352113, - "e": 75074, - "f": "set_att", - "g": 5, - "id": 76436415, - "l": true, - "level": 70, - "mainStatBaseValue": 52, - "mainStatId": "ug14_armo_m", - "mainStatType": "def", - "mainStatValue": 260, - "mg": 1111, - "op": [ - [ - "def", - 52 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "p": 502450559, - "s": "43ae", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 260 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 4 - } - ], - "ingameId": 76436415, - "ingameEquippedId": "502450559" - }, - { - "code": "eug15n", - "ct": 1687352113, - "e": 70435, - "f": "set_cri", - "g": 5, - "id": 76436440, - "l": true, - "level": 70, - "mainStatBaseValue": 0.11, - "mainStatId": "ug15_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.55, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.11 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.02 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ] - ], - "s": "ecaf", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 55 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 76436440, - "ingameEquippedId": "undefined" - }, - { - "code": "eah9w", - "ct": 1687362218, - "e": 95035, - "f": "set_acc", - "g": 5, - "id": 82994008, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah9_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 3 - ] - ], - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 4 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 82994008, - "ingameEquippedId": "undefined" - }, - { - "code": "ere6b", - "ct": 1687394468, - "e": 82150, - "f": "set_att", - "g": 5, - "id": 95342608, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "re6_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 3 - ] - ], - "p": 49161666, - "s": "808b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 95342608, - "ingameEquippedId": "49161666" - }, - { - "code": "ere6r", - "ct": 1687394469, - "e": 82508, - "f": "set_att", - "g": 5, - "id": 95342627, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "re6_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ] - ], - "p": 49161666, - "s": "d768", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 17, - "rolls": 3 - } - ], - "ingameId": 95342627, - "ingameEquippedId": "49161666" - }, - { - "code": "eap2w", - "ct": 1687410119, - "e": 83106, - "f": "set_att", - "g": 5, - "id": 104574710, - "l": true, - "level": 75, - "mainStatBaseValue": 93, - "mainStatId": "ap2_weap_m1", - "mainStatType": "att", - "mainStatValue": 465, - "mg": 1111, - "op": [ - [ - "att", - 93 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "p": 140659207, - "s": "a008", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 465 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - } - ], - "ingameId": 104574710, - "ingameEquippedId": "140659207" - }, - { - "code": "eap2h", - "ct": 1687410120, - "e": 89826, - "f": "set_att", - "g": 5, - "id": 104574881, - "l": true, - "level": 75, - "mainStatBaseValue": 499, - "mainStatId": "ap2_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2495, - "mg": 1111, - "op": [ - [ - "max_hp", - 499 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.05 - ] - ], - "s": "9316", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2495 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 4 - } - ], - "ingameId": 104574881, - "ingameEquippedId": "undefined" - }, - { - "code": "eap2a", - "ct": 1687410120, - "e": 82382, - "f": "set_att", - "g": 5, - "id": 104574892, - "l": true, - "level": 75, - "mainStatBaseValue": 55, - "mainStatId": "ap2_armo_m1", - "mainStatType": "def", - "mainStatValue": 275, - "mg": 1111, - "op": [ - [ - "def", - 55 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "p": 49161666, - "s": "b75f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 275 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 25, - "rolls": 4 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 104574892, - "ingameEquippedId": "49161666" - }, - { - "code": "eap2b", - "ct": 1687410120, - "e": 83325, - "f": "set_att", - "g": 5, - "id": 104574909, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "ap2_boot_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "408d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 104574909, - "ingameEquippedId": "undefined" - }, - { - "code": "eap2r", - "ct": 1687410120, - "e": 82680, - "f": "set_att", - "g": 5, - "id": 104574925, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "ap2_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "5200", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 104574925, - "ingameEquippedId": "undefined" - }, - { - "code": "eap2n", - "ct": 1687410120, - "e": 84101, - "f": "set_att", - "g": 5, - "id": 104574936, - "l": true, - "level": 75, - "mainStatBaseValue": 0.13, - "mainStatId": "ap2_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "p": 140659207, - "s": "163", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 24, - "rolls": 4 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 104574936, - "ingameEquippedId": "140659207" - }, - { - "code": "eah9n", - "ct": 1687410312, - "e": 94045, - "f": "set_acc", - "g": 5, - "id": 104689525, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ah9_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.07 - ] - ], - "p": 225876663, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 104689525, - "ingameEquippedId": "225876663" - }, - { - "code": "eap3w", - "ct": 1687411057, - "e": 82977, - "f": "set_max_hp", - "g": 5, - "id": 105136064, - "l": true, - "level": 75, - "mainStatBaseValue": 93, - "mainStatId": "ap3_weap_m1", - "mainStatType": "att", - "mainStatValue": 465, - "mg": 1111, - "op": [ - [ - "att", - 93 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ] - ], - "s": "c93a", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 465 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 105136064, - "ingameEquippedId": "undefined" - }, - { - "code": "eap3h", - "ct": 1687411057, - "e": 82173, - "f": "set_max_hp", - "g": 5, - "id": 105136081, - "l": true, - "level": 75, - "mainStatBaseValue": 499, - "mainStatId": "ap3_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2495, - "mg": 1111, - "op": [ - [ - "max_hp", - 499 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.06 - ] - ], - "p": 40490456, - "s": "e928", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2495 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 24, - "rolls": 4 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 3 - } - ], - "ingameId": 105136081, - "ingameEquippedId": "40490456" - }, - { - "code": "eap3a", - "ct": 1687411057, - "e": 104962, - "f": "set_max_hp", - "g": 5, - "id": 105136105, - "l": true, - "level": 75, - "mainStatBaseValue": 55, - "mainStatId": "ap3_armo_m1", - "mainStatType": "def", - "mainStatValue": 275, - "mg": 1111, - "op": [ - [ - "def", - 55 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ] - ], - "s": "a26a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 275 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 105136105, - "ingameEquippedId": "undefined" - }, - { - "code": "eap3b", - "ct": 1687411057, - "e": 82097, - "f": "set_max_hp", - "g": 5, - "id": 105136123, - "l": true, - "level": 75, - "mainStatBaseValue": 7, - "mainStatId": "ap3_boot_m1", - "mainStatType": "speed", - "mainStatValue": 35, - "mg": 1111, - "op": [ - [ - "speed", - 7 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ] - ], - "p": 40490456, - "s": "53b9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 35 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 105136123, - "ingameEquippedId": "40490456" - }, - { - "code": "eap3r", - "ct": 1687411057, - "e": 82567, - "f": "set_max_hp", - "g": 5, - "id": 105136133, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "ap3_ring_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0.05 - ] - ], - "p": 604874070, - "s": "b42b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 24, - "rolls": 4 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 105136133, - "ingameEquippedId": "604874070" - }, - { - "code": "eap3n", - "ct": 1687411057, - "e": 99342, - "f": "set_max_hp", - "g": 5, - "id": 105136147, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "ap3_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.08 - ] - ], - "p": 40490456, - "s": "375c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 28, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 105136147, - "ingameEquippedId": "40490456" - }, - { - "code": "ecw5b", - "ct": 1687433003, - "e": 70732, - "f": "set_acc", - "g": 5, - "id": 117654795, - "l": true, - "level": 70, - "mainStatBaseValue": 7, - "mainStatId": "cra5_boot_m", - "mainStatType": "speed", - "mainStatValue": 35, - "mg": 1111, - "op": [ - [ - "speed", - 7 - ], - [ - "att_rate", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.03 - ], - [ - "res", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "att_rate", - 0.06 - ] - ], - "p": 207190343, - "s": "f9c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 35 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 3 - } - ], - "ingameId": 117654795, - "ingameEquippedId": "207190343" - }, - { - "code": "eah10w", - "ct": 1687434847, - "e": 93930, - "f": "set_cri_dmg", - "g": 5, - "id": 118606243, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah10_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.05 - ] - ], - "p": 525461035, - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 18, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 118606243, - "ingameEquippedId": "525461035" - }, - { - "code": "eum12b", - "ct": 1687483762, - "e": 82403, - "f": "set_cri", - "g": 5, - "id": 139345121, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "um12_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ] - ], - "s": "e921", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 139345121, - "ingameEquippedId": "undefined" - }, - { - "code": "eah9b", - "ct": 1687484711, - "e": 94375, - "f": "set_acc", - "g": 5, - "id": 139824488, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah9_boot_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "p": 6911147, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 24, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 139824488, - "ingameEquippedId": "6911147" - }, - { - "code": "ess9r", - "ct": 1687532467, - "e": 87723, - "f": "set_speed", - "g": 5, - "id": 166039501, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "ss9_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ] - ], - "p": 518421029, - "s": "bed0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 166039501, - "ingameEquippedId": "518421029" - }, - { - "code": "eah10h", - "ct": 1687536332, - "e": 93957, - "f": "set_cri_dmg", - "g": 5, - "id": 168243437, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah10_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 168243437, - "ingameEquippedId": "undefined" - }, - { - "code": "ere7w", - "ct": 1687568502, - "e": 83351, - "f": "set_max_hp", - "g": 5, - "id": 179100958, - "l": true, - "level": 75, - "mainStatBaseValue": 93, - "mainStatId": "re7_weap_m", - "mainStatType": "att", - "mainStatValue": 465, - "mg": 1111, - "op": [ - [ - "att", - 93 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ] - ], - "s": "18c", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 465 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 179100958, - "ingameEquippedId": "undefined" - }, - { - "code": "ere7a", - "ct": 1687568502, - "e": 83277, - "f": "set_max_hp", - "g": 5, - "id": 179100989, - "l": true, - "level": 75, - "mainStatBaseValue": 55, - "mainStatId": "re7_armo_m", - "mainStatType": "def", - "mainStatValue": 275, - "mg": 1111, - "op": [ - [ - "def", - 55 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.04 - ] - ], - "p": 166490, - "s": "3c2a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 275 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 179100989, - "ingameEquippedId": "166490" - }, - { - "code": "ere7h", - "ct": 1687568502, - "e": 82482, - "f": "set_max_hp", - "g": 5, - "id": 179101000, - "level": 75, - "mainStatBaseValue": 499, - "mainStatId": "re7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2495, - "mg": 1111, - "op": [ - [ - "max_hp", - 499 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 2 - ] - ], - "s": "3752", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2495 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 179101000, - "ingameEquippedId": "undefined" - }, - { - "code": "ere7b", - "ct": 1687568502, - "e": 88459, - "f": "set_max_hp", - "g": 5, - "id": 179101025, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "re7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ] - ], - "p": 830235768, - "s": "e6e0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 179101025, - "ingameEquippedId": "830235768" - }, - { - "code": "ere7n", - "ct": 1687568502, - "e": 83274, - "f": "set_max_hp", - "g": 5, - "id": 179101041, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "re7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.07 - ] - ], - "p": 894623419, - "s": "1704", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 179101041, - "ingameEquippedId": "894623419" - }, - { - "code": "ere7r", - "ct": 1687568502, - "e": 82071, - "f": "set_max_hp", - "g": 5, - "id": 179101055, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "re7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.04 - ] - ], - "s": "19cc", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 3 - } - ], - "ingameId": 179101055, - "ingameEquippedId": "undefined" - }, - { - "code": "eah10n", - "ct": 1687588986, - "e": 94377, - "f": "set_cri_dmg", - "g": 5, - "id": 190263278, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ah10_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 3 - } - ], - "ingameId": 190263278, - "ingameEquippedId": "undefined" - }, - { - "code": "eah10r", - "ct": 1687749981, - "e": 100322, - "f": "set_cri_dmg", - "g": 5, - "id": 256289663, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah10_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_1" - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1, - "modified": true - } - ], - "ingameId": 256289663, - "ingameEquippedId": "undefined" - }, - { - "code": "eah13b", - "ct": 1687750046, - "e": 94384, - "f": "set_cri", - "g": 5, - "id": 256319465, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah13_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "att_rate", - 0.06 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 256319465, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1687763657, - "e": 86755, - "f": "set_acc", - "g": 4, - "id": 262500744, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 162 - ], - [ - "max_hp", - 191 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "p": 649028156, - "s": "92b8", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 18, - "rolls": 4 - }, - { - "type": "Health", - "value": 465, - "rolls": 2 - } - ], - "ingameId": 262500744, - "ingameEquippedId": "649028156" - }, - { - "code": "ecw6a_u", - "ct": 1687763657, - "e": 99666, - "f": "set_speed", - "g": 5, - "id": 262500787, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 184 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 898971885, - "s": "a204", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "Health", - "value": 240, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 262500787, - "ingameEquippedId": "898971885" - }, - { - "code": "ecw6a", - "ct": 1687763657, - "e": 82962, - "f": "set_speed", - "g": 5, - "id": 262500915, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp", - 189 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp", - 193 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.06 - ] - ], - "p": 48982864, - "s": "2060", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "Health", - "value": 382, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 262500915, - "ingameEquippedId": "48982864" - }, - { - "code": "ecw6a_u", - "ct": 1687763735, - "e": 94169, - "f": "set_speed", - "g": 5, - "id": 262534238, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.04 - ], - [ - "max_hp_rate", - 0 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.09, - "c", - "change2_max_hp_rate_2_1" - ] - ], - "p": 31856726, - "s": "930a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 12, - "rolls": 2, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 262534238, - "ingameEquippedId": "31856726" - }, - { - "code": "eap3w", - "ct": 1687780503, - "e": 85589, - "f": "set_max_hp", - "g": 5, - "id": 269696885, - "l": true, - "level": 75, - "mainStatBaseValue": 93, - "mainStatId": "ap3_weap_m1", - "mainStatType": "att", - "mainStatValue": 465, - "mg": 1111, - "op": [ - [ - "att", - 93 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ] - ], - "p": 830235768, - "s": "9431", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 465 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 269696885, - "ingameEquippedId": "830235768" - }, - { - "code": "eap3h", - "ct": 1687780503, - "e": 82348, - "f": "set_max_hp", - "g": 5, - "id": 269696916, - "l": true, - "level": 75, - "mainStatBaseValue": 499, - "mainStatId": "ap3_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2495, - "mg": 1111, - "op": [ - [ - "max_hp", - 499 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.08 - ] - ], - "p": 893757497, - "s": "3f84", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2495 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 29, - "rolls": 4 - } - ], - "ingameId": 269696916, - "ingameEquippedId": "893757497" - }, - { - "code": "eap3a", - "ct": 1687780503, - "e": 84411, - "f": "set_max_hp", - "g": 5, - "id": 269696941, - "l": true, - "level": 75, - "mainStatBaseValue": 55, - "mainStatId": "ap3_armo_m1", - "mainStatType": "def", - "mainStatValue": 275, - "mg": 1111, - "op": [ - [ - "def", - 55 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 2 - ] - ], - "p": 830235768, - "s": "8fb0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 275 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 269696941, - "ingameEquippedId": "830235768" - }, - { - "code": "eap3b", - "ct": 1687780503, - "e": 82305, - "f": "set_max_hp", - "g": 5, - "id": 269696969, - "l": true, - "level": 75, - "mainStatBaseValue": 7, - "mainStatId": "ap3_boot_m1", - "mainStatType": "speed", - "mainStatValue": 35, - "mg": 1111, - "op": [ - [ - "speed", - 7 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ] - ], - "p": 166490, - "s": "b520", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 35 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 39, - "rolls": 5 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 269696969, - "ingameEquippedId": "166490" - }, - { - "code": "eap3r", - "ct": 1687780503, - "e": 82165, - "f": "set_max_hp", - "g": 5, - "id": 269696988, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "ap3_ring_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ] - ], - "p": 898971885, - "s": "ea23", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 269696988, - "ingameEquippedId": "898971885" - }, - { - "code": "eap3n", - "ct": 1687780503, - "e": 84576, - "f": "set_max_hp", - "g": 5, - "id": 269697020, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "ap3_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.08 - ] - ], - "p": 412803674, - "s": "d982", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 28, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 269697020, - "ingameEquippedId": "412803674" - }, - { - "code": "ecw6a_u", - "ct": 1687832378, - "e": 94528, - "f": "set_acc", - "g": 5, - "id": 289119203, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 518782830, - "s": "e856", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 289119203, - "ingameEquippedId": "518782830" - }, - { - "code": "ecw6h", - "ct": 1687843166, - "e": 75864, - "f": "set_acc", - "g": 4, - "id": 294239285, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ] - ], - "s": "4ec", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 15, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 294239285, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1687843166, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 294239392, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3, - "c" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "p": 518782830, - "s": "790b", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 294239392, - "ingameEquippedId": "518782830" - }, - { - "code": "ecw6h", - "ct": 1687843167, - "e": 82203, - "f": "set_acc", - "g": 5, - "id": 294239493, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "p": 319905485, - "s": "e28a", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 294239493, - "ingameEquippedId": "319905485" - }, - { - "code": "ecw6h_u", - "ct": 1687843261, - "e": 94048, - "f": "set_speed", - "g": 5, - "id": 294284791, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_2" - ] - ], - "s": "ebc6", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - } - ], - "ingameId": 294284791, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1687843331, - "e": 93938, - "f": "set_cri", - "g": 5, - "id": 294318046, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.11, - "c" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 6844892, - "s": "62f7", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 3, - "modified": true - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 294318046, - "ingameEquippedId": "6844892" - }, - { - "code": "ecw6h_u", - "ct": 1687843332, - "e": 85126, - "f": "set_speed", - "g": 4, - "id": 294318077, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "def_rate", - 0.06, - "c", - "change2_def_rate_1_1" - ] - ], - "p": 445022861, - "s": "262d", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 32, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 294318077, - "ingameEquippedId": "445022861" - }, - { - "code": "ecw6a", - "ct": 1687843428, - "e": 76806, - "f": "set_speed", - "g": 4, - "id": 294364408, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.06 - ] - ], - "p": 742543115, - "s": "b945", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 294364408, - "ingameEquippedId": "742543115" - }, - { - "code": "ecw6a_u", - "ct": 1687843510, - "e": 94030, - "f": "set_speed", - "g": 5, - "id": 294402286, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "s": "87ef", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 294402286, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1687843510, - "e": 94145, - "f": "set_cri", - "g": 5, - "id": 294402395, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 518421029, - "s": "96e0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 294402395, - "ingameEquippedId": "518421029" - }, - { - "code": "ecw6a_u", - "ct": 1687843510, - "e": 94339, - "f": "set_speed", - "g": 5, - "id": 294402419, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ] - ], - "p": 618609916, - "s": "ac3d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 21, - "rolls": 5 - } - ], - "ingameId": 294402419, - "ingameEquippedId": "618609916" - }, - { - "code": "ecw6w", - "ct": 1687843610, - "e": 87349, - "f": "set_speed", - "g": 5, - "id": 294448326, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "att_rate", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.06 - ] - ], - "s": "e41b", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 27, - "rolls": 5 - }, - { - "type": "EffectivenessPercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 294448326, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1687843611, - "e": 93835, - "f": "set_cri", - "g": 5, - "id": 294448584, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.03, - "c", - "change2_cri_2_1" - ] - ], - "s": "7a7d", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 294448584, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1687843724, - "e": 85238, - "f": "set_speed", - "g": 4, - "id": 294501141, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.01, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 403476926, - "s": "855e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 294501141, - "ingameEquippedId": "403476926" - }, - { - "code": "ecw6w", - "ct": 1687843725, - "e": 82230, - "f": "set_speed", - "g": 5, - "id": 294501452, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 180 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp", - 164 - ], - [ - "acc", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp", - 185 - ] - ], - "p": 48982864, - "s": "2ee", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "Health", - "value": 529, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 294501452, - "ingameEquippedId": "48982864" - }, - { - "code": "ecw6h_u", - "ct": 1687854931, - "e": 94412, - "f": "set_speed", - "g": 5, - "id": 299456471, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def", - 32 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "def", - 32 - ], - [ - "res", - 0.04, - "u" - ], - [ - "speed", - 0, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "speed", - 3, - "c", - "change2_speed_1_1" - ] - ], - "p": 389494760, - "s": "ad12", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1, - "modified": true - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Defense", - "value": 82, - "rolls": 2 - } - ], - "ingameId": 299456471, - "ingameEquippedId": "389494760" - }, - { - "code": "eah8n", - "ct": 1687856205, - "e": 94670, - "f": "set_speed", - "g": 5, - "id": 300013216, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah8_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.08 - ] - ], - "p": 279573776, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 26, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 300013216, - "ingameEquippedId": "279573776" - }, - { - "code": "ecw6n_u", - "ct": 1687858583, - "e": 98582, - "f": "set_speed", - "g": 5, - "id": 301032347, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 0 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5, - "c" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 566472035, - "s": "278", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 301032347, - "ingameEquippedId": "566472035" - }, - { - "code": "eah9r", - "ct": 1687858643, - "e": 93970, - "f": "set_acc", - "g": 5, - "id": 301056541, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah9_ring_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "att_rate", - 0.04 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 10, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 21, - "rolls": 4 - } - ], - "ingameId": 301056541, - "ingameEquippedId": "undefined" - }, - { - "code": "esu5b", - "ct": 1687873809, - "e": 88781, - "f": "set_speed", - "g": 5, - "id": 308004347, - "l": true, - "level": 71, - "mainStatBaseValue": 7, - "mainStatId": "un5_boot_m1", - "mainStatType": "speed", - "mainStatValue": 35, - "mg": 1111, - "op": [ - [ - "speed", - 7 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.03 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "p": 48982864, - "s": "2e84", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 35 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 308004347, - "ingameEquippedId": "48982864" - }, - { - "code": "ecb6w_u", - "ct": 1687956016, - "e": 94338, - "f": "set_res", - "g": 5, - "id": 336928771, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "res", - 0.04, - "u" - ] - ], - "p": 893757497, - "s": "562c", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 19, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 27, - "rolls": 3 - } - ], - "ingameId": 336928771, - "ingameEquippedId": "893757497" - }, - { - "code": "eah8h", - "ct": 1687961022, - "e": 112072, - "f": "set_speed", - "g": 5, - "id": 339227178, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah8_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ] - ], - "p": 226377978, - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 339227178, - "ingameEquippedId": "226377978" - }, - { - "code": "eah13r", - "ct": 1688017793, - "e": 103784, - "f": "set_cri", - "g": 5, - "id": 355445654, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah13_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 355445654, - "ingameEquippedId": "undefined" - }, - { - "code": "eap2w", - "ct": 1688017941, - "e": 82266, - "f": "set_att", - "g": 5, - "id": 355496057, - "l": true, - "level": 75, - "mainStatBaseValue": 93, - "mainStatId": "ap2_weap_m1", - "mainStatType": "att", - "mainStatValue": 465, - "mg": 1111, - "op": [ - [ - "att", - 93 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ] - ], - "p": 49161666, - "s": "7c69", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 465 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - } - ], - "ingameId": 355496057, - "ingameEquippedId": "49161666" - }, - { - "code": "eap2h", - "ct": 1688017941, - "e": 82301, - "f": "set_att", - "g": 5, - "id": 355496114, - "l": true, - "level": 75, - "mainStatBaseValue": 499, - "mainStatId": "ap2_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2495, - "mg": 1111, - "op": [ - [ - "max_hp", - 499 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "p": 48982864, - "s": "dc41", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2495 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - } - ], - "ingameId": 355496114, - "ingameEquippedId": "48982864" - }, - { - "code": "eap2a", - "ct": 1688017941, - "e": 88277, - "f": "set_att", - "g": 5, - "id": 355496155, - "l": true, - "level": 75, - "mainStatBaseValue": 55, - "mainStatId": "ap2_armo_m1", - "mainStatType": "def", - "mainStatValue": 275, - "mg": 1111, - "op": [ - [ - "def", - 55 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "4003", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 275 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 23, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 355496155, - "ingameEquippedId": "undefined" - }, - { - "code": "eap2b", - "ct": 1688017942, - "e": 88827, - "f": "set_att", - "g": 5, - "id": 355496195, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "ap2_boot_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.07 - ] - ], - "p": 140659207, - "s": "6300", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 355496195, - "ingameEquippedId": "140659207" - }, - { - "code": "eap2n", - "ct": 1688017942, - "e": 82552, - "f": "set_att", - "g": 5, - "id": 355496241, - "l": true, - "level": 75, - "mainStatBaseValue": 0.13, - "mainStatId": "ap2_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.05 - ] - ], - "s": "5951", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 25, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - } - ], - "ingameId": 355496241, - "ingameEquippedId": "undefined" - }, - { - "code": "eie18w", - "ct": 1688115660, - "e": 82084, - "f": "set_rage", - "g": 5, - "id": 384442889, - "l": true, - "level": 80, - "mainStatBaseValue": 95, - "mainStatId": "inf_wepo_m1", - "mainStatType": "att", - "mainStatValue": 475, - "mg": 1111, - "op": [ - [ - "att", - 95 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "2162", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 475 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 27, - "rolls": 4 - } - ], - "ingameId": 384442889, - "ingameEquippedId": "undefined" - }, - { - "code": "eih8n", - "ct": 1688128046, - "e": 97303, - "f": "set_immune", - "g": 5, - "id": 388326452, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ihf_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "att_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 3 - ] - ], - "s": "f47b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 3 - } - ], - "ingameId": 388326452, - "ingameEquippedId": "undefined" - }, - { - "code": "eih8w", - "ct": 1688440308, - "e": 93843, - "f": "set_acc", - "g": 5, - "id": 476567788, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ihf_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 5 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "8669", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 476567788, - "ingameEquippedId": "undefined" - }, - { - "code": "eah20r", - "ct": 1688564159, - "e": 94860, - "f": "set_acc", - "g": 5, - "id": 505480826, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah20_ring_m1", - "mainStatType": "acc", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "acc", - 0.13 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "p": 4647526, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectivenessPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 3 - } - ], - "ingameId": 505480826, - "ingameEquippedId": "4647526" - }, - { - "code": "eah17b", - "ct": 1688564752, - "e": 94860, - "f": "set_max_hp", - "g": 5, - "id": 505655177, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah17_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "p": 829105288, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 505655177, - "ingameEquippedId": "829105288" - }, - { - "code": "eus6a", - "ct": 1688739974, - "e": 19484, - "f": "set_vampire", - "g": 5, - "id": 543925421, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "un6_armo_m1", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.08 - ] - ], - "s": "fdc1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 4, - "rolls": 1 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 543925421, - "ingameEquippedId": "undefined" - }, - { - "code": "eus6n", - "ct": 1688858564, - "e": 82510, - "f": "set_vampire", - "g": 5, - "id": 567279111, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "un6_neck_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.03 - ] - ], - "s": "e214", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 567279111, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1688888630, - "e": 73828, - "f": "set_speed", - "g": 4, - "id": 576858023, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "acc", - 0.12 - ], - [ - "max_hp", - 188 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 177 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "max_hp", - 190 - ] - ], - "s": "85a3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectivenessPercent", - "value": 60 - }, - "substats": [ - { - "type": "Health", - "value": 555, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 576858023, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1688888715, - "e": 73886, - "f": "set_speed", - "g": 4, - "id": 576888702, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ] - ], - "s": "f8a5", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 4 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1 - } - ], - "ingameId": 576888702, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1688889520, - "e": 98929, - "f": "set_speed", - "g": 5, - "id": 577173482, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp", - 159 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp", - 182 - ], - [ - "acc", - 0.05 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "p": 6885517, - "s": "2236", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Health", - "value": 453, - "rolls": 2 - } - ], - "ingameId": 577173482, - "ingameEquippedId": "6885517" - }, - { - "code": "ecw6r_u", - "ct": 1688890156, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 577397598, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "p": 713631381, - "s": "d67f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 577397598, - "ingameEquippedId": "713631381" - }, - { - "code": "ecw6w_u", - "ct": 1688890817, - "e": 98626, - "f": "set_speed", - "g": 5, - "id": 577631529, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "p": 166490, - "s": "1ca8", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 577631529, - "ingameEquippedId": "166490" - }, - { - "code": "eus6r", - "ct": 1688998892, - "e": 85244, - "f": "set_vampire", - "g": 5, - "id": 604863261, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "un6_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.05, - "c", - "change2_def_rate_1_1" - ] - ], - "s": "4b3f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 5, - "rolls": 1, - "modified": true - } - ], - "ingameId": 604863261, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1689039382, - "e": 85289, - "f": "set_cri", - "g": 4, - "id": 611475932, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.04, - "c" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "s": "251e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 5, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 21, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 611475932, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1689130450, - "e": 94183, - "f": "set_speed", - "g": 5, - "id": 629160765, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri_dmg", - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.11, - "c" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "p": 490684210, - "s": "e6c4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 3, - "modified": true - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 629160765, - "ingameEquippedId": "490684210" - }, - { - "code": "ecs7r", - "ct": 1689236282, - "e": 94079, - "f": "set_cri", - "g": 5, - "id": 648330212, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "cs7_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "p": 360878989, - "s": "4075", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 648330212, - "ingameEquippedId": "360878989" - }, - { - "code": "eah13a", - "ct": 1689437921, - "e": 98209, - "f": "set_cri", - "g": 5, - "id": 691030506, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah13_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ] - ], - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 8, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 691030506, - "ingameEquippedId": "undefined" - }, - { - "code": "eus7w", - "ct": 1689441497, - "e": 93851, - "f": "set_vampire", - "g": 5, - "id": 691587898, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "un7_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "1987", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 691587898, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1689503650, - "e": 94594, - "f": "set_speed", - "g": 5, - "id": 704893645, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "p": 117268286, - "s": "731d", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 704893645, - "ingameEquippedId": "117268286" - }, - { - "code": "ecw6a", - "ct": 1689503666, - "e": 80752, - "f": "set_speed", - "g": 4, - "id": 704897964, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 166 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 2 - ] - ], - "s": "fc1a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "Health", - "value": 166, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 704897964, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1689512515, - "e": 94270, - "f": "set_speed", - "g": 5, - "id": 707434259, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "max_hp", - 166 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp", - 56, - "u" - ] - ], - "s": "a4c4", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Health", - "value": 222, - "rolls": 1 - } - ], - "ingameId": 707434259, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h", - "ct": 1689514913, - "e": 8161, - "f": "set_speed", - "g": 5, - "id": 708193041, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "def", - 29 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "def", - 28 - ] - ], - "s": "a24b", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Defense", - "value": 57, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 708193041, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9n", - "ct": 1689601803, - "e": 94148, - "f": "set_penetrate", - "g": 5, - "id": 724488481, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "6b39", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 724488481, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6w_u", - "ct": 1689608997, - "e": 88270, - "f": "set_max_hp", - "g": 4, - "id": 726114158, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 40490456, - "s": "392e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 726114158, - "ingameEquippedId": "40490456" - }, - { - "code": "ecb6h_u", - "ct": 1689865820, - "e": 94287, - "f": "set_res", - "g": 5, - "id": 764162132, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def", - 32 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "def", - 31 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "p": 218403497, - "s": "f83b", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Defense", - "value": 81, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 764162132, - "ingameEquippedId": "218403497" - }, - { - "code": "eus7h", - "ct": 1689865963, - "e": 94122, - "f": "set_vampire", - "g": 5, - "id": 764197884, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "un7_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ] - ], - "s": "588a", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - } - ], - "ingameId": 764197884, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1689870973, - "e": 94589, - "f": "set_counter", - "g": 5, - "id": 765293871, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 360878989, - "s": "bb1b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 19, - "rolls": 2 - } - ], - "ingameId": 765293871, - "ingameEquippedId": "360878989" - }, - { - "code": "eus7a", - "ct": 1689955462, - "e": 94137, - "f": "set_vampire", - "g": 5, - "id": 787867181, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "un7_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "acc", - 0.09 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ] - ], - "p": 313179896, - "s": "ffa5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 787867181, - "ingameEquippedId": "313179896" - }, - { - "code": "ecd6h_u", - "ct": 1690021934, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 797246691, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "p": 49161666, - "s": "161", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 797246691, - "ingameEquippedId": "49161666" - }, - { - "code": "ecd6n", - "ct": 1690031207, - "f": "set_penetrate", - "g": 5, - "id": 798673712, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "att_rate", - 0.08 - ], - [ - "att", - 34 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.06 - ] - ], - "p": 440334191, - "s": "73a8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Attack", - "value": 34, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 798673712, - "ingameEquippedId": "440334191" - }, - { - "code": "ecd6h_u", - "ct": 1690035492, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 799418097, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri_dmg", - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05, - "c" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.05, - "u" - ] - ], - "s": "da89", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1, - "modified": true - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 33, - "rolls": 4 - } - ], - "ingameId": 799418097, - "ingameEquippedId": "undefined" - }, - { - "code": "eeu1h", - "ct": 1690035701, - "e": 82475, - "f": "set_max_hp", - "g": 5, - "id": 799455981, - "l": true, - "level": 80, - "mainStatBaseValue": 513, - "mainStatId": "eu1_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2565, - "mg": 1111, - "op": [ - [ - "max_hp", - 513 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "p": 830235768, - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2565 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 799455981, - "ingameEquippedId": "830235768" - }, - { - "code": "eot2n_u4", - "ct": 1690040029, - "e": 82726, - "f": "set_speed", - "g": 5, - "id": 800225597, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "ot2u_neck_m4", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.07 - ] - ], - "p": 31856726, - "s": "ca94", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 33, - "rolls": 5 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 800225597, - "ingameEquippedId": "31856726" - }, - { - "code": "ecb6a_u", - "ct": 1690040362, - "e": 93943, - "f": "set_res", - "g": 5, - "id": 800283637, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.07 - ], - [ - "max_hp", - 177 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "p": 90857803, - "s": "d14d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Health", - "value": 233, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 800283637, - "ingameEquippedId": "90857803" - }, - { - "code": "ecw6h", - "ct": 1690080024, - "e": 73895, - "f": "set_speed", - "g": 4, - "id": 805454737, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def", - 27 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "9473", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "Defense", - "value": 27, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 805454737, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1690109043, - "e": 87795, - "f": "set_speed", - "g": 4, - "id": 813012872, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 31856726, - "s": "6658", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 29, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 813012872, - "ingameEquippedId": "31856726" - }, - { - "code": "ecw6w", - "ct": 1690109103, - "e": 82418, - "f": "set_cri", - "g": 5, - "id": 813027691, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ] - ], - "s": "399a", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 813027691, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1690109104, - "e": 94995, - "f": "set_speed", - "g": 5, - "id": 813027749, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "p": 6844892, - "s": "7fa3", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 21, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 813027749, - "ingameEquippedId": "6844892" - }, - { - "code": "ecw6h", - "ct": 1690109210, - "e": 73845, - "f": "set_cri", - "g": 4, - "id": 813054588, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "def_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "p": 140659207, - "s": "d6b9", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 813054588, - "ingameEquippedId": "140659207" - }, - { - "code": "ecw6a_u", - "ct": 1690109361, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 813092363, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.07, - "c", - "change2_max_hp_rate_1_2" - ] - ], - "p": 99507012, - "s": "8ac1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 20, - "rolls": 4 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 813092363, - "ingameEquippedId": "99507012" - }, - { - "code": "ecw6h_u", - "ct": 1690109435, - "e": 95882, - "f": "set_speed", - "g": 5, - "id": 813111415, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "p": 21884461, - "s": "a122", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 813111415, - "ingameEquippedId": "21884461" - }, - { - "code": "ecd6r", - "ct": 1690111779, - "e": 4125, - "f": "set_revenge", - "g": 5, - "id": 813696804, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "att", - 40 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ] - ], - "s": "429f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "RevengeSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "Attack", - "value": 40, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 813696804, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1690116357, - "e": 84759, - "f": "set_speed", - "g": 4, - "id": 814879215, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "att_rate", - 0.06, - "c", - "change2_att_rate_1_1" - ] - ], - "s": "d21d", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 7, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 26, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 814879215, - "ingameEquippedId": "undefined" - }, - { - "code": "eus7n", - "ct": 1690124564, - "e": 95178, - "f": "set_vampire", - "g": 5, - "id": 817316274, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "un7_neck_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ] - ], - "s": "37e0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 817316274, - "ingameEquippedId": "undefined" - }, - { - "code": "eus7r", - "ct": 1690128943, - "e": 94118, - "f": "set_vampire", - "g": 5, - "id": 818592178, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "un7_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0 - ], - [ - "cri_dmg", - 0.08, - "c", - "change2_cri_dmg_3_1" - ] - ], - "s": "e210", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 3, - "modified": true - } - ], - "ingameId": 818592178, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6a_u", - "ct": 1690206102, - "e": 94099, - "f": "set_penetrate", - "g": 5, - "id": 830173356, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_2_1" - ] - ], - "p": 777666204, - "s": "981a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 19, - "rolls": 5 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 830173356, - "ingameEquippedId": "777666204" - }, - { - "code": "eeu1n", - "ct": 1690207788, - "e": 82909, - "f": "set_max_hp", - "g": 5, - "id": 830527704, - "l": true, - "level": 80, - "mainStatBaseValue": 0.12, - "mainStatId": "eu1_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 830527704, - "ingameEquippedId": "undefined" - }, - { - "code": "eeu1b", - "ct": 1690209317, - "e": 82480, - "f": "set_max_hp", - "g": 5, - "id": 830852536, - "l": true, - "level": 80, - "mainStatBaseValue": 0.12, - "mainStatId": "eu1_boot_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.05 - ] - ], - "p": 412803674, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 21, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 830852536, - "ingameEquippedId": "412803674" - }, - { - "code": "eum13r", - "ct": 1690210222, - "e": 101761, - "f": "set_speed", - "g": 5, - "id": 831044760, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "um13_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ] - ], - "p": 549294853, - "s": "77d7", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 831044760, - "ingameEquippedId": "549294853" - }, - { - "code": "ecd6a_u", - "ct": 1690347105, - "e": 94029, - "f": "set_penetrate", - "g": 5, - "id": 847818635, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "s": "dc1d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 24, - "rolls": 4 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 847818635, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1690462574, - "e": 74030, - "f": "set_acc", - "g": 4, - "id": 862719491, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "acc", - 0.12 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "att", - 38 - ], - [ - "att", - 38 - ] - ], - "p": 313109293, - "s": "c71b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectivenessPercent", - "value": 60 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Attack", - "value": 76, - "rolls": 2 - } - ], - "ingameId": 862719491, - "ingameEquippedId": "313109293" - }, - { - "code": "ecw6r", - "ct": 1690462627, - "f": "set_speed", - "g": 5, - "id": 862728582, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def", - 34 - ], - [ - "acc", - 0.07 - ] - ], - "p": 522853044, - "s": "e06e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "Defense", - "value": 34, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 862728582, - "ingameEquippedId": "522853044" - }, - { - "code": "ecd6h_u", - "ct": 1690518746, - "e": 93808, - "f": "set_penetrate", - "g": 5, - "id": 868975656, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.07, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "def_rate", - 0.06, - "c", - "change2_def_rate_1_1" - ] - ], - "p": 48988518, - "s": "775", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 39, - "rolls": 5 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 868975656, - "ingameEquippedId": "48988518" - }, - { - "code": "eah13n", - "ct": 1690540168, - "e": 95627, - "f": "set_cri", - "g": 5, - "id": 871856531, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ah13_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.04 - ] - ], - "p": 6844892, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 26, - "rolls": 4 - } - ], - "ingameId": 871856531, - "ingameEquippedId": "6844892" - }, - { - "code": "ecd6n", - "ct": 1690605473, - "e": 1982, - "f": "set_penetrate", - "g": 5, - "id": 879500420, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ] - ], - "s": "46ef", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 879500420, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6a_u", - "ct": 1690643568, - "e": 84464, - "f": "set_rage", - "g": 4, - "id": 884845052, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 690904230, - "s": "cb0a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "RageSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 884845052, - "ingameEquippedId": "690904230" - }, - { - "code": "ecd6h_u", - "ct": 1690798820, - "e": 93945, - "f": "set_penetrate", - "g": 5, - "id": 901246333, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "2866", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 27, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 901246333, - "ingameEquippedId": "undefined" - }, - { - "code": "eah15a", - "ct": 1690801483, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 901529896, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah15_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 2 - ] - ], - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 901529896, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85r_u", - "ct": 1690902137, - "e": 94687, - "f": "set_penetrate", - "g": 5, - "id": 911737411, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.06, - "c", - "change2_cri_dmg_1_1" - ] - ], - "p": 99507012, - "s": "5e57", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 911737411, - "ingameEquippedId": "99507012" - }, - { - "code": "eal85b_u", - "ct": 1690902290, - "e": 94146, - "f": "set_speed", - "g": 5, - "id": 911758443, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "u" - ] - ], - "s": "c342", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 4 - } - ], - "ingameId": 911758443, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1691074089, - "e": 94099, - "f": "set_speed", - "g": 5, - "id": 950034425, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "s": "35fd", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 25, - "rolls": 3 - } - ], - "ingameId": 950034425, - "ingameEquippedId": "undefined" - }, - { - "code": "eie18h", - "ct": 1691075357, - "e": 83405, - "f": "set_speed", - "g": 5, - "id": 950493439, - "l": true, - "level": 80, - "mainStatBaseValue": 513, - "mainStatId": "inf_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2565, - "mg": 1111, - "op": [ - [ - "max_hp", - 513 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.08 - ] - ], - "p": 403476926, - "s": "d401", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2565 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 32, - "rolls": 5 - } - ], - "ingameId": 950493439, - "ingameEquippedId": "403476926" - }, - { - "code": "ecw6w_u", - "ct": 1691121365, - "e": 101111, - "f": "set_speed", - "g": 5, - "id": 958807250, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 150271128, - "s": "19bf", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 958807250, - "ingameEquippedId": "150271128" - }, - { - "code": "eah20b", - "ct": 1691142135, - "e": 101483, - "f": "set_acc", - "g": 5, - "id": 964534414, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah20_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.09 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.09 - ] - ], - "p": 4647526, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 964534414, - "ingameEquippedId": "4647526" - }, - { - "code": "ecb6h_u", - "ct": 1691410155, - "e": 93862, - "f": "set_counter", - "g": 5, - "id": 1017122992, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "8568", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 31, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1017122992, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1691411464, - "e": 101090, - "f": "set_speed", - "g": 5, - "id": 1017307432, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "acc", - 0.05, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "s": "5a81", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 34, - "rolls": 4 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 1017307432, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6h_u", - "ct": 1691461375, - "e": 93769, - "f": "set_penetrate", - "g": 5, - "id": 1022018663, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "c", - "change1_cri_1_1" - ] - ], - "s": "d711", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 26, - "rolls": 4 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1, - "modified": true - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 1022018663, - "ingameEquippedId": "undefined" - }, - { - "code": "eih1w", - "ct": 1691487886, - "e": 97260, - "f": "set_max_hp", - "g": 5, - "id": 1024950442, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "imh_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "max_hp", - 179 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.04 - ] - ], - "s": "bdba", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Health", - "value": 179, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 22, - "rolls": 5 - } - ], - "ingameId": 1024950442, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1691503294, - "e": 97785, - "f": "set_speed", - "g": 5, - "id": 1026796743, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ] - ], - "p": 559859822, - "s": "f0b4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 1026796743, - "ingameEquippedId": "559859822" - }, - { - "code": "ecb6b_u", - "ct": 1691678257, - "e": 97121, - "f": "set_counter", - "g": 5, - "id": 1042548473, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 360878989, - "s": "1127", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 28, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 1042548473, - "ingameEquippedId": "360878989" - }, - { - "code": "eih3w", - "ct": 1691814405, - "e": 115173, - "f": "set_rage", - "g": 5, - "id": 1052966260, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "imh_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ] - ], - "s": "1bce", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 3 - } - ], - "ingameId": 1052966260, - "ingameEquippedId": "undefined" - }, - { - "code": "eeu1r", - "ct": 1691839543, - "e": 86277, - "f": "set_max_hp", - "g": 5, - "id": 1055351414, - "l": true, - "level": 80, - "mainStatBaseValue": 0.12, - "mainStatId": "eu1_ring_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.06 - ] - ], - "p": 40490456, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 30, - "rolls": 5 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 1055351414, - "ingameEquippedId": "40490456" - }, - { - "code": "eeu1w", - "ct": 1691852287, - "e": 82834, - "f": "set_max_hp", - "g": 5, - "id": 1056709008, - "l": true, - "level": 80, - "mainStatBaseValue": 95, - "mainStatId": "eu1_weap_m1", - "mainStatType": "att", - "mainStatValue": 475, - "mg": 1111, - "op": [ - [ - "att", - 95 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 475 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 1056709008, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w", - "ct": 1691907811, - "e": 39254, - "f": "set_counter", - "g": 5, - "id": 1061010023, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.04 - ] - ], - "s": "b698", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 12, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 1061010023, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1692026269, - "e": 93778, - "f": "set_speed", - "g": 5, - "id": 1071327894, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "p": 620426700, - "s": "f961", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 1071327894, - "ingameEquippedId": "620426700" - }, - { - "code": "eih2a", - "ct": 1692101668, - "e": 93913, - "f": "set_res", - "g": 5, - "id": 1076985972, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "imh_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.09 - ], - [ - "max_hp", - 198 - ], - [ - "res", - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0 - ], - [ - "res", - 0.11, - "c", - "change2_res_2_2" - ] - ], - "p": 412803674, - "s": "fbda", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 29, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Health", - "value": 198, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 11, - "rolls": 2, - "modified": true - } - ], - "ingameId": 1076985972, - "ingameEquippedId": "412803674" - }, - { - "code": "ecw6b_u", - "ct": 1692512618, - "e": 84392, - "f": "set_speed", - "g": 4, - "id": 1129638392, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.07, - "c" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "p": 590699704, - "s": "d2de", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1129638392, - "ingameEquippedId": "590699704" - }, - { - "code": "ecw6a", - "ct": 1692513162, - "e": 75600, - "f": "set_cri", - "g": 4, - "id": 1129744885, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "c18a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 21, - "rolls": 4 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1129744885, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1692548207, - "e": 93998, - "f": "set_speed", - "g": 5, - "id": 1136872192, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0 - ], - [ - "att_rate", - 0.1, - "c" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 490684210, - "s": "7de5", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 13, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 1136872192, - "ingameEquippedId": "490684210" - }, - { - "code": "ecw6n", - "ct": 1692548230, - "e": 86455, - "f": "set_acc", - "g": 5, - "id": 1136876675, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.05 - ] - ], - "p": 473350938, - "s": "8ef9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 25, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 1136876675, - "ingameEquippedId": "473350938" - }, - { - "code": "ecw6a_u", - "ct": 1692548556, - "e": 94048, - "f": "set_acc", - "g": 5, - "id": 1136939234, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.07, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "p": 899011010, - "s": "e06c", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 41, - "rolls": 5 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 1136939234, - "ingameEquippedId": "899011010" - }, - { - "code": "ecw6a", - "ct": 1692548556, - "e": 82031, - "f": "set_acc", - "g": 5, - "id": 1136939258, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.05 - ] - ], - "p": 117268286, - "s": "ff1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 1136939258, - "ingameEquippedId": "117268286" - }, - { - "code": "ecw6h_u", - "ct": 1692548594, - "e": 84411, - "f": "set_speed", - "g": 4, - "id": 1136946286, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 90857803, - "s": "7d8a", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 1136946286, - "ingameEquippedId": "90857803" - }, - { - "code": "ecw6r_u", - "ct": 1692585967, - "e": 115039, - "f": "set_cri", - "g": 5, - "id": 1142175659, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 1 - ], - [ - "max_hp_rate", - 0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.08, - "c", - "change2_max_hp_rate_1_1" - ] - ], - "p": 434015426, - "s": "9df7", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 25, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 1142175659, - "ingameEquippedId": "434015426" - }, - { - "code": "ecw6r_u", - "ct": 1692617283, - "e": 94457, - "f": "set_speed", - "g": 5, - "id": 1149229209, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 187 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp", - 165 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp", - 188 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp", - 168, - "u" - ] - ], - "s": "d043", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "Health", - "value": 708, - "rolls": 3 - } - ], - "ingameId": 1149229209, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r_u", - "ct": 1692617308, - "e": 94210, - "f": "set_speed", - "g": 5, - "id": 1149235477, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.04 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "def_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3, - "c" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ] - ], - "p": 166490, - "s": "63cb", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1, - "modified": true - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 1149235477, - "ingameEquippedId": "166490" - }, - { - "code": "eeu1a", - "ct": 1692630947, - "e": 82571, - "f": "set_max_hp", - "g": 5, - "id": 1152848167, - "l": true, - "level": 80, - "mainStatBaseValue": 57, - "mainStatId": "eu1_armo_m1", - "mainStatType": "def", - "mainStatValue": 285, - "mg": 1111, - "op": [ - [ - "def", - 57 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp", - 163, - "c", - "change2_max_hp_1_1" - ] - ], - "p": 739641017, - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 285 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 35, - "rolls": 5 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "Health", - "value": 163, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1152848167, - "ingameEquippedId": "739641017" - }, - { - "code": "eah12n", - "ct": 1692713222, - "e": 94759, - "f": "set_counter", - "g": 5, - "id": 1163632047, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ah12_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.08, - "c", - "change2_att_rate_1_2" - ] - ], - "p": 360878989, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 15, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1163632047, - "ingameEquippedId": "360878989" - }, - { - "code": "eah12w", - "ct": 1692713251, - "e": 94355, - "f": "set_counter", - "g": 5, - "id": 1163636420, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah12_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 17, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - } - ], - "ingameId": 1163636420, - "ingameEquippedId": "undefined" - }, - { - "code": "eah13h", - "ct": 1692968841, - "e": 94287, - "f": "set_cri", - "g": 5, - "id": 1196927356, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah13_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 25, - "rolls": 4 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 1196927356, - "ingameEquippedId": "undefined" - }, - { - "code": "eie18b", - "ct": 1693233259, - "e": 85966, - "f": "set_max_hp", - "g": 5, - "id": 1229545416, - "l": true, - "level": 80, - "mainStatBaseValue": 0.12, - "mainStatId": "inf_boot_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ] - ], - "p": 799495489, - "s": "167d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 1229545416, - "ingameEquippedId": "799495489" - }, - { - "code": "eih9n", - "ct": 1693236680, - "e": 94093, - "f": "set_penetrate", - "g": 5, - "id": 1230124571, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.06 - ] - ], - "p": 158971995, - "s": "253c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 1230124571, - "ingameEquippedId": "158971995" - }, - { - "code": "eal85b_u", - "ct": 1693398788, - "e": 98672, - "f": "set_speed", - "g": 5, - "id": 1246408859, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.04 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "acc", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 618609916, - "s": "b18e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 29, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 1246408859, - "ingameEquippedId": "618609916" - }, - { - "code": "ecs2h", - "ct": 1693468332, - "e": 82031, - "f": "set_immune", - "g": 5, - "id": 1254071924, - "l": true, - "level": 78, - "mainStatBaseValue": 513, - "mainStatId": "cs2_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2565, - "mg": 1111, - "op": [ - [ - "max_hp", - 513 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06, - "c", - "change2_cri_dmg_1_1" - ] - ], - "p": 559859824, - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2565 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 29, - "rolls": 5 - } - ], - "ingameId": 1254071924, - "ingameEquippedId": "559859824" - }, - { - "code": "ecs2r", - "ct": 1693468337, - "e": 84712, - "f": "set_cri", - "g": 5, - "id": 1254072762, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "cs2_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ] - ], - "p": 313179896, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 21, - "rolls": 5 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 1254072762, - "ingameEquippedId": "313179896" - }, - { - "code": "ecs2n", - "ct": 1693468341, - "e": 82921, - "f": "set_cri", - "g": 5, - "id": 1254073561, - "l": true, - "level": 78, - "mainStatBaseValue": 0.13, - "mainStatId": "cs2_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ] - ], - "p": 518421029, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 25, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 16, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 1254073561, - "ingameEquippedId": "518421029" - }, - { - "code": "eih2a", - "ct": 1693575313, - "e": 20628, - "f": "set_res", - "g": 5, - "id": 1266214181, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "imh_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.06 - ], - [ - "acc", - 0.09 - ], - [ - "cri", - 0.06 - ] - ], - "s": "1b63", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1266214181, - "ingameEquippedId": "undefined" - }, - { - "code": "ewb1h", - "ct": 1693836462, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1292938356, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "wb1_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ] - ], - "p": 583954927, - "s": "5175", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 1292938356, - "ingameEquippedId": "583954927" - }, - { - "code": "eah19n", - "ct": 1693840670, - "e": 94357, - "f": "set_speed", - "g": 5, - "id": 1293509714, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah19_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.04 - ] - ], - "p": 777666204, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 19, - "rolls": 5 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 1293509714, - "ingameEquippedId": "777666204" - }, - { - "code": "ela7b", - "ct": 1693874163, - "e": 94080, - "f": "set_vampire", - "g": 5, - "id": 1295540409, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "la7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ] - ], - "p": 326831592, - "s": "d3cb", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 34, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1295540409, - "ingameEquippedId": "326831592" - }, - { - "code": "eal85b_u", - "ct": 1693892577, - "e": 94039, - "f": "set_speed", - "g": 5, - "id": 1297578046, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.11, - "c" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 323638178, - "s": "46a4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 1297578046, - "ingameEquippedId": "323638178" - }, - { - "code": "eih9n", - "ct": 1693921011, - "e": 95760, - "f": "set_penetrate", - "g": 5, - "id": 1300670242, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.09 - ] - ], - "p": 461351155, - "s": "bdac", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 24, - "rolls": 4 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 1300670242, - "ingameEquippedId": "461351155" - }, - { - "code": "ela7r", - "ct": 1694051288, - "e": 95760, - "f": "set_immune", - "g": 5, - "id": 1311832421, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "att_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ] - ], - "s": "c359", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 27, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1311832421, - "ingameEquippedId": "undefined" - }, - { - "code": "ela7a", - "ct": 1694182220, - "e": 95760, - "f": "set_vampire", - "g": 5, - "id": 1319942405, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "la7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ] - ], - "p": 48988520, - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 1319942405, - "ingameEquippedId": "48988520" - }, - { - "code": "eiu51r", - "ct": 1694268912, - "e": 95592, - "f": "set_res", - "g": 5, - "id": 1327616181, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu51_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 0 - ], - [ - "speed", - 5, - "c", - "change2_speed_2_3" - ] - ], - "p": 90857803, - "s": "d99b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 2, - "modified": true - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 1327616181, - "ingameEquippedId": "90857803" - }, - { - "code": "ela7w", - "ct": 1694312566, - "e": 96383, - "f": "set_vampire", - "g": 5, - "id": 1330713921, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "la7_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06, - "c", - "change2_cri_dmg_1_1" - ] - ], - "p": 48988520, - "s": "4942", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 27, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 1330713921, - "ingameEquippedId": "48988520" - }, - { - "code": "ela7h", - "ct": 1694399170, - "e": 93856, - "f": "set_vampire", - "g": 5, - "id": 1339029649, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "la7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ] - ], - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 1339029649, - "ingameEquippedId": "undefined" - }, - { - "code": "eah19b", - "ct": 1694610303, - "e": 94920, - "f": "set_speed", - "g": 5, - "id": 1354490436, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah19_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.08 - ] - ], - "p": 96079748, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 1354490436, - "ingameEquippedId": "96079748" - }, - { - "code": "ela7n", - "ct": 1694693378, - "e": 93855, - "f": "set_immune", - "g": 5, - "id": 1360281980, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "la7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.06 - ] - ], - "p": 640588979, - "s": "bf97", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 28, - "rolls": 5 - } - ], - "ingameId": 1360281980, - "ingameEquippedId": "640588979" - }, - { - "code": "eah17r", - "ct": 1694710948, - "e": 94136, - "f": "set_max_hp", - "g": 5, - "id": 1362828555, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah17_ring_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ] - ], - "p": 620426700, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 25, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 30, - "rolls": 4 - } - ], - "ingameId": 1362828555, - "ingameEquippedId": "620426700" - }, - { - "code": "ess10n", - "ct": 1694785665, - "e": 82320, - "f": "set_speed", - "g": 5, - "id": 1368533909, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "ss10_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.06 - ] - ], - "p": 21884461, - "s": "d849", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 1368533909, - "ingameEquippedId": "21884461" - }, - { - "code": "eah10b", - "ct": 1694915637, - "e": 93800, - "f": "set_cri_dmg", - "g": 5, - "id": 1388427710, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah10_boot_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 3 - } - ], - "ingameId": 1388427710, - "ingameEquippedId": "undefined" - }, - { - "code": "eot2r_u1", - "ct": 1694917485, - "e": 83255, - "f": "set_rage", - "g": 5, - "id": 1388720566, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "ot2u_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "speed", - 3 - ], - [ - "def", - 32 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "p": 690904230, - "s": "1a22", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "Defense", - "value": 32, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 4 - } - ], - "ingameId": 1388720566, - "ingameEquippedId": "690904230" - }, - { - "code": "ecb6h_u", - "ct": 1694941950, - "e": 93771, - "f": "set_cri_dmg", - "g": 5, - "id": 1393005362, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ] - ], - "s": "32fe", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 20, - "rolls": 5 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 1393005362, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w", - "ct": 1694950763, - "e": 76440, - "f": "set_counter", - "g": 4, - "id": 1394544142, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 164 - ], - [ - "cri", - 0.05 - ] - ], - "s": "886d", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "Health", - "value": 164, - "rolls": 1 - } - ], - "ingameId": 1394544142, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w_u", - "ct": 1694950763, - "e": 84464, - "f": "set_res", - "g": 4, - "id": 1394544157, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.08, - "c", - "change1_att_rate_1_1" - ] - ], - "p": 306770592, - "s": "69ad", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1394544157, - "ingameEquippedId": "306770592" - }, - { - "code": "ecb6w_u", - "ct": 1694950763, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1394544167, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "f88", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 1394544167, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w_u", - "ct": 1694950851, - "e": 84375, - "f": "set_vampire", - "g": 4, - "id": 1394560081, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "75cf", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 1394560081, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w_u", - "ct": 1694950876, - "e": 84467, - "f": "set_cri_dmg", - "g": 4, - "id": 1394564468, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0 - ], - [ - "speed", - 2 - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.07, - "c", - "change2_att_rate_1_2" - ] - ], - "s": "97fa", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 19, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1394564468, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6h_u", - "ct": 1694951172, - "e": 98815, - "f": "set_res", - "g": 5, - "id": 1394616557, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 28398305, - "s": "7d62", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 36, - "rolls": 5 - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 1394616557, - "ingameEquippedId": "28398305" - }, - { - "code": "ecb6h_u", - "ct": 1694951273, - "e": 84419, - "f": "set_res", - "g": 4, - "id": 1394634189, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "res", - 0.07, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.05, - "c", - "change1_max_hp_rate_1_2" - ] - ], - "p": 566472035, - "s": "dec5", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 35, - "rolls": 5 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1394634189, - "ingameEquippedId": "566472035" - }, - { - "code": "ecb6h_u", - "ct": 1694951558, - "e": 86259, - "f": "set_cri_dmg", - "g": 4, - "id": 1394686000, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.06, - "c", - "change2_cri_dmg_1_1" - ] - ], - "s": "8a1f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 23, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1394686000, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1694956922, - "e": 95318, - "f": "set_res", - "g": 5, - "id": 1395712527, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 194 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07, - "c" - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "def_rate", - 0.07, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "f321", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "Health", - "value": 250, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 38, - "rolls": 5 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1395712527, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1694959631, - "e": 98528, - "f": "set_vampire", - "g": 5, - "id": 1396264718, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 3 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "bab7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1396264718, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6h_u", - "ct": 1695010279, - "e": 93772, - "f": "set_cri_dmg", - "g": 5, - "id": 1402663039, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.07, - "c" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "p": 158971995, - "s": "e913", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 15, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - } - ], - "ingameId": 1402663039, - "ingameEquippedId": "158971995" - }, - { - "code": "ecb6h_u", - "ct": 1695010338, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 1402672680, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.06, - "c" - ], - [ - "acc", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 6885517, - "s": "f4d", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 26, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 2, - "modified": true - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 1402672680, - "ingameEquippedId": "6885517" - }, - { - "code": "ecb6h_u", - "ct": 1695010338, - "e": 84467, - "f": "set_counter", - "g": 4, - "id": 1402672686, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.06, - "c", - "change2_def_rate_1_1" - ] - ], - "p": 568689715, - "s": "a272", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 7, - "rolls": 1, - "modified": true - }, - { - "type": "HealthPercent", - "value": 26, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1402672686, - "ingameEquippedId": "568689715" - }, - { - "code": "ecb6h", - "ct": 1695010338, - "e": 9797, - "f": "set_vampire", - "g": 5, - "id": 1402672720, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ] - ], - "s": "4ff", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 5, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1402672720, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6b_u", - "ct": 1695011147, - "e": 93799, - "f": "set_res", - "g": 5, - "id": 1402810067, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp", - 183 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp", - 162 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp", - 112, - "u" - ], - [ - "res", - 0.03, - "c", - "change1_res_1_1" - ] - ], - "p": 31856726, - "s": "8cb0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 4, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Health", - "value": 457, - "rolls": 2 - } - ], - "ingameId": 1402810067, - "ingameEquippedId": "31856726" - }, - { - "code": "ecb6h_u", - "ct": 1695011648, - "e": 97399, - "f": "set_cri_dmg", - "g": 5, - "id": 1402898503, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.06, - "c", - "change1_cri_dmg_2_2" - ] - ], - "p": 591089796, - "s": "2058", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 26, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 2, - "modified": true - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 1402898503, - "ingameEquippedId": "591089796" - }, - { - "code": "eah21n", - "ct": 1695109838, - "e": 93968, - "f": "set_cri_dmg", - "g": 5, - "id": 1415487105, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ah21_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 3 - ] - ], - "p": 738614105, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 1415487105, - "ingameEquippedId": "738614105" - }, - { - "code": "ecd6a_u", - "ct": 1695118195, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 1416222058, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.06, - "c" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 890790459, - "s": "aab2", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2, - "modified": true - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 27, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 1416222058, - "ingameEquippedId": "890790459" - }, - { - "code": "eah21a", - "ct": 1695218947, - "e": 94024, - "f": "set_cri_dmg", - "g": 5, - "id": 1424165891, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah21_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.09 - ] - ], - "p": 434015426, - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 1424165891, - "ingameEquippedId": "434015426" - }, - { - "code": "eih4a", - "ct": 1695484860, - "e": 93750, - "f": "set_att", - "g": 5, - "id": 1444890132, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "imh_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ] - ], - "s": "9e2e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 23, - "rolls": 5 - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 1444890132, - "ingameEquippedId": "undefined" - }, - { - "code": "eum13n", - "ct": 1695702216, - "e": 92232, - "f": "set_speed", - "g": 5, - "id": 1462923960, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "um13_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.04 - ] - ], - "p": 48982864, - "s": "5de", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 20, - "rolls": 4 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 1462923960, - "ingameEquippedId": "48982864" - }, - { - "code": "ecw6a", - "ct": 1695869369, - "e": 73864, - "f": "set_speed", - "g": 4, - "id": 1476441427, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.03 - ] - ], - "p": 403357976, - "s": "88df", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 1476441427, - "ingameEquippedId": "403357976" - }, - { - "code": "ecb6h_u", - "ct": 1695874459, - "e": 93815, - "f": "set_counter", - "g": 5, - "id": 1477587046, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "972d", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - } - ], - "ingameId": 1477587046, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1695874459, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1477587057, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "s": "97e7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 1477587057, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6b_u", - "ct": 1695874459, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1477587080, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "s": "c502", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 1477587080, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6n", - "ct": 1695874459, - "e": 82128, - "f": "set_counter", - "g": 5, - "id": 1477587102, - "l": true, - "level": 85, - "mainStatBaseValue": 0.13, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "6f0c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - } - ], - "ingameId": 1477587102, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6r_u", - "ct": 1695874460, - "e": 95090, - "f": "set_counter", - "g": 5, - "id": 1477587124, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ] - ], - "p": 96079743, - "s": "e14", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 23, - "rolls": 4 - } - ], - "ingameId": 1477587124, - "ingameEquippedId": "96079743" - }, - { - "code": "ecw6n", - "ct": 1695877024, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 1478142240, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp", - 180 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 0 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 0 - ], - [ - "speed", - 4, - "c", - "change2_speed_3_1" - ] - ], - "p": 590699704, - "s": "af7b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Health", - "value": 180, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 3, - "modified": true - } - ], - "ingameId": 1478142240, - "ingameEquippedId": "590699704" - }, - { - "code": "ecw6n", - "ct": 1695911806, - "e": 86688, - "f": "set_speed", - "g": 4, - "id": 1485375946, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "p": 659243748, - "s": "404f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 1485375946, - "ingameEquippedId": "659243748" - }, - { - "code": "ecw6a", - "ct": 1695914040, - "e": 87438, - "f": "set_acc", - "g": 4, - "id": 1485898799, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.05 - ] - ], - "s": "74df", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "Speed", - "value": 13, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 1485898799, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1695947410, - "e": 8161, - "f": "set_cri", - "g": 5, - "id": 1490172520, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.08 - ] - ], - "s": "a22c", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 1490172520, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1695948957, - "e": 98074, - "f": "set_speed", - "g": 5, - "id": 1490428702, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 1 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "p": 669363338, - "s": "4727", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 18, - "rolls": 3 - } - ], - "ingameId": 1490428702, - "ingameEquippedId": "669363338" - }, - { - "code": "ess11r", - "ct": 1695980630, - "e": 89880, - "f": "set_speed", - "g": 5, - "id": 1496409944, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "ss11_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.04 - ] - ], - "p": 218403497, - "s": "72a6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 25, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 1496409944, - "ingameEquippedId": "218403497" - }, - { - "code": "ecw6h_u", - "ct": 1695981528, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 1496567808, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def", - 29 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.05 - ], - [ - "att", - 40 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "def", - 29 - ], - [ - "speed", - 4 - ], - [ - "def", - 30 - ], - [ - "def", - 27, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "att", - 11, - "u" - ] - ], - "s": "e768", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Defense", - "value": 115, - "rolls": 3 - }, - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Attack", - "value": 51, - "rolls": 1 - } - ], - "ingameId": 1496567808, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h", - "ct": 1695981528, - "e": 74082, - "f": "set_speed", - "g": 4, - "id": 1496567838, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "att_rate", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.06 - ], - [ - "def", - 27 - ], - [ - "def_rate", - 0.05 - ] - ], - "p": 659243748, - "s": "33e7", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "Defense", - "value": 27, - "rolls": 1 - } - ], - "ingameId": 1496567838, - "ingameEquippedId": "659243748" - }, - { - "code": "ecw6w_u", - "ct": 1695981604, - "e": 93759, - "f": "set_speed", - "g": 5, - "id": 1496581052, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ] - ], - "p": 21884461, - "s": "15e8", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 27, - "rolls": 4 - } - ], - "ingameId": 1496581052, - "ingameEquippedId": "21884461" - }, - { - "code": "ecw6w", - "ct": 1695981634, - "e": 74592, - "f": "set_speed", - "g": 4, - "id": 1496586296, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "max_hp", - 187 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.07 - ] - ], - "s": "e914", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "Health", - "value": 187, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 1496586296, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1695981662, - "e": 84632, - "f": "set_speed", - "g": 4, - "id": 1496590728, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 795195383, - "s": "6b1e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 29, - "rolls": 4 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 1496590728, - "ingameEquippedId": "795195383" - }, - { - "code": "ecw6a", - "ct": 1695981662, - "e": 8569, - "f": "set_acc", - "g": 5, - "id": 1496590816, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.06 - ] - ], - "s": "54e5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1496590816, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n", - "ct": 1695981790, - "e": 90384, - "f": "set_speed", - "g": 5, - "id": 1496612742, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def", - 29 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def", - 28 - ], - [ - "speed", - 4 - ], - [ - "def", - 33 - ] - ], - "s": "4f67", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Defense", - "value": 90, - "rolls": 3 - } - ], - "ingameId": 1496612742, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r_u", - "ct": 1695984156, - "e": 94654, - "f": "set_speed", - "g": 5, - "id": 1497008762, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 0 - ], - [ - "speed", - 2, - "c" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "p": 389494760, - "s": "2d10", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 2, - "modified": true - } - ], - "ingameId": 1497008762, - "ingameEquippedId": "389494760" - }, - { - "code": "ecw6n", - "ct": 1695984169, - "e": 17752, - "f": "set_speed", - "g": 5, - "id": 1497010955, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def", - 29 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def", - 34 - ] - ], - "p": 545449824, - "s": "4c76", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Defense", - "value": 63, - "rolls": 2 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1497010955, - "ingameEquippedId": "545449824" - }, - { - "code": "ecw6r_u", - "ct": 1696000182, - "e": 93815, - "f": "set_speed", - "g": 5, - "id": 1500062217, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 1 - ], - [ - "speed", - 4 - ], - [ - "att", - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 1, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "att", - 46, - "c", - "change2_att_1_2" - ] - ], - "p": 494187001, - "s": "1124", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "Attack", - "value": 57, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 1500062217, - "ingameEquippedId": "494187001" - }, - { - "code": "ecw6h_u", - "ct": 1696352505, - "e": 86259, - "f": "set_speed", - "g": 4, - "id": 1541258505, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 1 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "p": 326831592, - "s": "4fff", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Speed", - "value": 15, - "rolls": 5 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 1541258505, - "ingameEquippedId": "326831592" - }, - { - "code": "ecw6a", - "ct": 1696352545, - "e": 74652, - "f": "set_speed", - "g": 4, - "id": 1541262139, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "921f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 1541262139, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu51w", - "ct": 1696429922, - "e": 3498, - "f": "set_rage", - "g": 5, - "id": 1550003470, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu51_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.07 - ] - ], - "s": "faa4", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 1550003470, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu31w", - "ct": 1696439752, - "e": 2352, - "f": "set_revenge", - "g": 5, - "id": 1551254123, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu31_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "dd48", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "RevengeSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 1551254123, - "ingameEquippedId": "undefined" - }, - { - "code": "eih7a", - "ct": 1696440299, - "e": 96600, - "f": "set_immune", - "g": 5, - "id": 1551301611, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "imh_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.09 - ], - [ - "cri", - 0.05 - ] - ], - "p": 110853212, - "s": "69dc", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 1551301611, - "ingameEquippedId": "110853212" - }, - { - "code": "ecw6w_u", - "ct": 1696693249, - "e": 103397, - "f": "set_speed", - "g": 5, - "id": 1570812246, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp", - 199 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp", - 56, - "u" - ] - ], - "p": 96079748, - "s": "92c7", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 16, - "rolls": 5 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Health", - "value": 255, - "rolls": 1 - } - ], - "ingameId": 1570812246, - "ingameEquippedId": "96079748" - }, - { - "code": "ecw6w_u", - "ct": 1696693259, - "e": 93815, - "f": "set_speed", - "g": 5, - "id": 1570813561, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 90857803, - "s": "8950", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 26, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 1570813561, - "ingameEquippedId": "90857803" - }, - { - "code": "eah21w", - "ct": 1696693632, - "e": 93823, - "f": "set_cri_dmg", - "g": 5, - "id": 1570859068, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah21_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "att_rate", - 0.09 - ], - [ - "att_rate", - 0.06 - ] - ], - "p": 591089796, - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 1570859068, - "ingameEquippedId": "591089796" - }, - { - "code": "ecs13w", - "ct": 1697089651, - "e": 82137, - "f": "set_speed", - "g": 5, - "id": 1587144632, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "cs13_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 3 - ] - ], - "s": "2eaf", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 1587144632, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6h", - "ct": 1697249128, - "e": 3094, - "f": "set_coop", - "g": 5, - "id": 1595378390, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "905a", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "UnitySet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 1595378390, - "ingameEquippedId": "undefined" - }, - { - "code": "eah19h", - "ct": 1697809217, - "e": 118324, - "f": "set_speed", - "g": 5, - "id": 1624804788, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah19_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ] - ], - "p": 897188455, - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 21, - "rolls": 5 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 1624804788, - "ingameEquippedId": "897188455" - }, - { - "code": "ecl23r", - "ct": 1698325785, - "e": 93856, - "f": "set_speed", - "g": 5, - "id": 1653826956, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "wc2023_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 1 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.03 - ] - ], - "p": 618609916, - "s": "f0e3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - } - ], - "ingameId": 1653826956, - "ingameEquippedId": "618609916" - }, - { - "code": "eiu12a", - "ct": 1698594482, - "f": "set_scar", - "g": 5, - "id": 1674412887, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu12_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "6e62", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1674412887, - "ingameEquippedId": "undefined" - }, - { - "code": "eah14b", - "ct": 1698757844, - "e": 95404, - "f": "set_res", - "g": 5, - "id": 1680890938, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah14_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.05 - ] - ], - "p": 226377978, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 1680890938, - "ingameEquippedId": "226377978" - }, - { - "code": "eiu11h", - "ct": 1698812238, - "e": 95060, - "f": "set_speed", - "g": 5, - "id": 1682787417, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu11_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ] - ], - "p": 739641017, - "s": "d736", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 27, - "rolls": 4 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1682787417, - "ingameEquippedId": "739641017" - }, - { - "code": "eda15h", - "ct": 1698812238, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 1682787418, - "l": true, - "level": 80, - "mainStatBaseValue": 513, - "mainStatId": "duna6_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2565, - "mg": 1111, - "op": [ - [ - "max_hp", - 513 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 2, - "c", - "change2_speed_1_1" - ] - ], - "p": 306859366, - "s": "6f70", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2565 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1, - "modified": true - }, - { - "type": "AttackPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 1682787418, - "ingameEquippedId": "306859366" - }, - { - "code": "eih9n", - "ct": 1698812369, - "e": 97409, - "f": "set_penetrate", - "g": 5, - "id": 1682793427, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.06 - ] - ], - "p": 306859366, - "s": "4db8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 1682793427, - "ingameEquippedId": "306859366" - }, - { - "code": "eah14r", - "ct": 1698934036, - "e": 95060, - "f": "set_res", - "g": 5, - "id": 1687751055, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah14_ring_m1", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 2 - ] - ], - "p": 279573776, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 24, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - } - ], - "ingameId": 1687751055, - "ingameEquippedId": "279573776" - }, - { - "code": "ecb6n_u", - "ct": 1699197498, - "e": 84463, - "f": "set_res", - "g": 4, - "id": 1702201074, - "l": true, - "level": 90, - "mainStatBaseValue": 0.12, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "cri", - 0.12, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "3372", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitChancePercent", - "value": 60 - }, - "substats": [ - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 1702201074, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6n_u", - "ct": 1699197520, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 1702203221, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp", - 186 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp", - 198 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "max_hp", - 112, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_1" - ] - ], - "p": 434015426, - "s": "859a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - }, - { - "type": "DefensePercent", - "value": 26, - "rolls": 3 - }, - { - "type": "Health", - "value": 496, - "rolls": 2 - } - ], - "ingameId": 1702203221, - "ingameEquippedId": "434015426" - }, - { - "code": "ecb6n_u", - "ct": 1699236439, - "e": 94231, - "f": "set_res", - "g": 5, - "id": 1703676098, - "l": true, - "level": 90, - "mainStatBaseValue": 0.12, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "cri", - 0.12, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "p": 461989175, - "s": "aba0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitChancePercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 28, - "rolls": 4 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1703676098, - "ingameEquippedId": "461989175" - }, - { - "code": "ecb6w_u", - "ct": 1699322044, - "e": 93770, - "f": "set_vampire", - "g": 5, - "id": 1707619478, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07, - "c" - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 798777729, - "s": "1b07", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 32, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 1707619478, - "ingameEquippedId": "798777729" - }, - { - "code": "ecb6h_u", - "ct": 1699322469, - "e": 93770, - "f": "set_cri_dmg", - "g": 5, - "id": 1707635213, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_2" - ] - ], - "s": "bd8f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 21, - "rolls": 5 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1707635213, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w_u", - "ct": 1699322993, - "e": 86067, - "f": "set_vampire", - "g": 4, - "id": 1707653977, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 313179896, - "s": "b375", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 1707653977, - "ingameEquippedId": "313179896" - }, - { - "code": "ecw6b", - "ct": 1699524396, - "e": 75692, - "f": "set_cri", - "g": 4, - "id": 1715726620, - "l": true, - "level": 85, - "mainStatBaseValue": 8, - "mainStatId": "cra6_boot_m", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att", - 35 - ], - [ - "def_rate", - 0.08 - ] - ], - "s": "dc71", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 40 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 2 - }, - { - "type": "Attack", - "value": 35, - "rolls": 1 - } - ], - "ingameId": 1715726620, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu31w", - "ct": 1699706143, - "e": 2292, - "f": "set_revenge", - "g": 5, - "id": 1728014892, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu31_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "eaed", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "RevengeSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 1728014892, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu51w", - "ct": 1700455409, - "e": 4664, - "f": "set_rage", - "g": 5, - "id": 1770631627, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu51_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.06 - ] - ], - "s": "a0a5", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 1770631627, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6n_u", - "ct": 1700532021, - "e": 93772, - "f": "set_rage", - "g": 5, - "id": 1773767234, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "def", - 30 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "def", - 9, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 690904230, - "s": "6105", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "Defense", - "value": 39, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 1773767234, - "ingameEquippedId": "690904230" - }, - { - "code": "eal85b_u", - "ct": 1700635875, - "e": 103685, - "f": "set_vampire", - "g": 5, - "id": 1777828559, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.05, - "c", - "change2_cri_dmg_1_1" - ] - ], - "s": "98b6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 15, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 1777828559, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85n_u", - "ct": 1700641764, - "e": 93829, - "f": "set_vampire", - "g": 5, - "id": 1778028869, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.07, - "c" - ], - [ - "acc", - 0.05, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "e7d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 32, - "rolls": 4 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1778028869, - "ingameEquippedId": "undefined" - }, - { - "code": "eah14a", - "ct": 1700803284, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 1783540481, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah14_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ] - ], - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 1783540481, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu21r", - "ct": 1700988861, - "e": 93856, - "f": "set_speed", - "g": 5, - "id": 1795607593, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu21_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ] - ], - "p": 559859822, - "s": "67f2", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - } - ], - "ingameId": 1795607593, - "ingameEquippedId": "559859822" - }, - { - "code": "eih4a", - "ct": 1700994850, - "f": "set_att", - "g": 5, - "id": 1796151091, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "imh_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "acc", - 0.09 - ] - ], - "s": "ee25", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 1796151091, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9n", - "ct": 1700994909, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 1796156402, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ] - ], - "s": "e6cb", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 1796156402, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1701103523, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1804369966, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0 - ], - [ - "res", - 0.08 - ], - [ - "att", - 42 - ], - [ - "att_rate", - 0.08 - ], - [ - "att", - 45 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "att", - 43 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.08, - "c" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "att", - 33, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "s": "d825", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Attack", - "value": 163, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 1804369966, - "ingameEquippedId": "undefined" - }, - { - "code": "eah17h", - "ct": 1701235250, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 1809176155, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah17_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ] - ], - "p": 326928979, - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 1809176155, - "ingameEquippedId": "326928979" - }, - { - "code": "eum13a", - "ct": 1701274041, - "e": 82032, - "f": "set_speed", - "g": 5, - "id": 1810869248, - "l": true, - "level": 78, - "mainStatBaseValue": 57, - "mainStatId": "um13_armo_m", - "mainStatType": "def", - "mainStatValue": 285, - "mg": 1111, - "op": [ - [ - "def", - 57 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "cri", - 0.05 - ] - ], - "p": 150271128, - "s": "68d9", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 285 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 19, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 1810869248, - "ingameEquippedId": "150271128" - }, - { - "code": "eiu12w", - "ct": 1701490284, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 1818219857, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu12_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.06 - ] - ], - "p": 795195383, - "s": "fcc0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 26, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - } - ], - "ingameId": 1818219857, - "ingameEquippedId": "795195383" - }, - { - "code": "eiu31n", - "ct": 1701506336, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 1818872512, - "l": true, - "level": 88, - "mainStatBaseValue": 0.12, - "mainStatId": "iu31_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "a31", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitChancePercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 1818872512, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1701508150, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1818940282, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "acc", - 0.07 - ], - [ - "att", - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att", - 0 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "att", - 22, - "u" - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "att", - 64, - "c", - "change2_att_2_1" - ] - ], - "s": "9ee3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Attack", - "value": 86, - "rolls": 2, - "modified": true - }, - { - "type": "AttackPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1818940282, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1701508620, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1818957037, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp", - 171 - ], - [ - "res", - 0.04 - ], - [ - "max_hp", - 160 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp", - 161 - ], - [ - "max_hp", - 191 - ], - [ - "acc", - 0.07, - "c" - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "max_hp", - 224, - "u" - ] - ], - "p": 389494760, - "s": "794b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Health", - "value": 907, - "rolls": 4 - } - ], - "ingameId": 1818957037, - "ingameEquippedId": "389494760" - }, - { - "code": "eal85b_u", - "ct": 1701508668, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1818958688, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "p": 241191727, - "s": "b2fc", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 1818958688, - "ingameEquippedId": "241191727" - }, - { - "code": "eot3r_u2", - "ct": 1701839954, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1830795504, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_ring_m2", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 180 - ], - [ - "def", - 38 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "def", - 38 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ] - ], - "p": 6885517, - "s": "165c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 8, - "rolls": 3 - }, - { - "type": "Health", - "value": 180, - "rolls": 1 - }, - { - "type": "Defense", - "value": 76, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 1830795504, - "ingameEquippedId": "6885517" - }, - { - "code": "ewb1r", - "ct": 1701935651, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1834878032, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "wb1_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "acc", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "s": "a2b8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 1834878032, - "ingameEquippedId": "undefined" - }, - { - "code": "ecs12w", - "ct": 1701953800, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 1836149988, - "l": true, - "level": 78, - "mainStatBaseValue": 95, - "mainStatId": "cs12_weap_m1", - "mainStatType": "att", - "mainStatValue": 475, - "mg": 1111, - "op": [ - [ - "att", - 95 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ] - ], - "p": 549294853, - "s": "35fc", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 475 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 1836149988, - "ingameEquippedId": "549294853" - }, - { - "code": "ere_sp_w", - "ct": 1701996691, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1838332519, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ere_sp_w_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_2" - ] - ], - "s": "c260", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 26, - "rolls": 4 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1838332519, - "ingameEquippedId": "undefined" - }, - { - "code": "ere_sp_h", - "ct": 1701996691, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1838332524, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ere_sp_h_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.05 - ] - ], - "p": 99507012, - "s": "cc6c", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 1838332524, - "ingameEquippedId": "99507012" - }, - { - "code": "ere_sp_a", - "ct": 1701996691, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1838332525, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ere_sp_a_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.06 - ] - ], - "p": 4647526, - "s": "89b4", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 1838332525, - "ingameEquippedId": "4647526" - }, - { - "code": "ere_sp_n", - "ct": 1701996691, - "e": 93856, - "f": "set_speed", - "g": 5, - "id": 1838332526, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ere_sp_n_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "max_hp", - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp", - 0 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp", - 305, - "c", - "change2_max_hp_2_1" - ] - ], - "p": 226377978, - "s": "1a8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "Health", - "value": 305, - "rolls": 2, - "modified": true - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 1838332526, - "ingameEquippedId": "226377978" - }, - { - "code": "ere_sp_r", - "ct": 1701996691, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1838332527, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ere_sp_r_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "att_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.09 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ] - ], - "p": 225876663, - "s": "3949", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 1838332527, - "ingameEquippedId": "225876663" - }, - { - "code": "ere_sp_b", - "ct": 1701996691, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1838332528, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ere_sp_b_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.09 - ], - [ - "att_rate", - 0.07 - ] - ], - "p": 518421029, - "s": "d516", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 1838332528, - "ingameEquippedId": "518421029" - }, - { - "code": "eiu51r", - "ct": 1702020029, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 1839826439, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu51_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "cri_dmg", - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0 - ], - [ - "res", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.09, - "c", - "change2_cri_dmg_2_2" - ] - ], - "s": "652a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 9, - "rolls": 2, - "modified": true - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - } - ], - "ingameId": 1839826439, - "ingameEquippedId": "undefined" - }, - { - "code": "eah19r", - "ct": 1702355451, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1858123965, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah19_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att", - 0 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "att", - 0 - ], - [ - "att", - 0 - ], - [ - "att", - 101, - "c", - "change2_att_3_1" - ] - ], - "p": 518782830, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Attack", - "value": 101, - "rolls": 3, - "modified": true - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 1858123965, - "ingameEquippedId": "518782830" - }, - { - "code": "ecd6w_u", - "ct": 1702434780, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 1862090546, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.07, - "c" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "p": 158971995, - "s": "3ff2", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 20, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1862090546, - "ingameEquippedId": "158971995" - }, - { - "code": "ecd6h_u", - "ct": 1702434780, - "e": 84462, - "f": "set_torrent", - "g": 4, - "id": 1862090550, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att", - 34 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att", - 11, - "u" - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 0, - "u" - ], - [ - "speed", - 4, - "c", - "change2_speed_1_2" - ] - ], - "p": 890790459, - "s": "4e10", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Attack", - "value": 45, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1862090550, - "ingameEquippedId": "890790459" - }, - { - "code": "ere_co_w", - "ct": 1702596384, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1870371729, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ere_co_w_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.06 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ] - ], - "s": "6a15", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 25, - "rolls": 3 - } - ], - "ingameId": 1870371729, - "ingameEquippedId": "undefined" - }, - { - "code": "ere_co_h", - "ct": 1702596384, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1870371734, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ere_co_h_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ] - ], - "p": 180232242, - "s": "b556", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 1870371734, - "ingameEquippedId": "180232242" - }, - { - "code": "ere_co_a", - "ct": 1702596384, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1870371735, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ere_co_a_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.06 - ] - ], - "s": "123b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 1870371735, - "ingameEquippedId": "undefined" - }, - { - "code": "ere_co_n", - "ct": 1702596384, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1870371737, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ere_co_n_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ] - ], - "p": 96079743, - "s": "4446", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 1870371737, - "ingameEquippedId": "96079743" - }, - { - "code": "ere_co_r", - "ct": 1702596384, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1870371742, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ere_co_r_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri_dmg", - 0.08 - ] - ], - "p": 568689715, - "s": "afdf", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 29, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 1870371742, - "ingameEquippedId": "568689715" - }, - { - "code": "ere_co_b", - "ct": 1702596384, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1870371743, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ere_co_b_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.05 - ] - ], - "p": 568689715, - "s": "ec07", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 1870371743, - "ingameEquippedId": "568689715" - }, - { - "code": "ecw6w_u", - "ct": 1702707180, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 1876168756, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "p": 360878989, - "s": "642d", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 20, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 1876168756, - "ingameEquippedId": "360878989" - }, - { - "code": "ecw6a", - "ct": 1702876091, - "e": 73828, - "f": "set_speed", - "g": 4, - "id": 1893825637, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ] - ], - "s": "57e3", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 1893825637, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n", - "ct": 1702893818, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 1895726655, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0 - ], - [ - "res", - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.06, - "c", - "change1_res_2_1" - ] - ], - "s": "ec5c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 2, - "modified": true - } - ], - "ingameId": 1895726655, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1702894050, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1895749753, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0 - ], - [ - "att_rate", - 0.14, - "c" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "p": 99507012, - "s": "bb8b", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 20, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 3, - "modified": true - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 1895749753, - "ingameEquippedId": "99507012" - }, - { - "code": "ecw6n_u", - "ct": 1702894119, - "e": 84375, - "f": "set_cri", - "g": 4, - "id": 1895756907, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0 - ], - [ - "def_rate", - 0.05 - ], - [ - "att_rate", - 0.05, - "c" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "p": 583954927, - "s": "61e5", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1895756907, - "ingameEquippedId": "583954927" - }, - { - "code": "ecw6w_u", - "ct": 1702894144, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1895759346, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "res", - 0.06 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.04 - ], - [ - "res", - 0.03, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 306859366, - "s": "57a5", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 1895759346, - "ingameEquippedId": "306859366" - }, - { - "code": "ecw6n", - "ct": 1702894249, - "f": "set_speed", - "g": 5, - "id": 1895770976, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_neck_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.07 - ] - ], - "p": 522853044, - "s": "c819", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 1895770976, - "ingameEquippedId": "522853044" - }, - { - "code": "ecw6n", - "ct": 1702894286, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 1895774983, - "level": 85, - "mainStatBaseValue": 0.13, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "def", - 32 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ] - ], - "p": 323638178, - "s": "b780", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Defense", - "value": 32, - "rolls": 1 - } - ], - "ingameId": 1895774983, - "ingameEquippedId": "323638178" - }, - { - "code": "ecw6a_u", - "ct": 1702894352, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1895781680, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 0 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "speed", - 0, - "u" - ], - [ - "speed", - 4, - "c", - "change2_speed_1_3" - ] - ], - "p": 241191727, - "s": "de72", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1895781680, - "ingameEquippedId": "241191727" - }, - { - "code": "ecw6h_u", - "ct": 1702895147, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 1895864631, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.06, - "c", - "change2_cri_dmg_1_1" - ] - ], - "p": 434015426, - "s": "6338", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1, - "modified": true - }, - { - "type": "DefensePercent", - "value": 33, - "rolls": 4 - } - ], - "ingameId": 1895864631, - "ingameEquippedId": "434015426" - }, - { - "code": "ecw6w", - "ct": 1702895239, - "e": 73828, - "f": "set_cri", - "g": 4, - "id": 1895874138, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 164 - ], - [ - "speed", - 2 - ] - ], - "s": "b84a", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "Health", - "value": 164, - "rolls": 1 - } - ], - "ingameId": 1895874138, - "ingameEquippedId": "undefined" - }, - { - "code": "euq7h", - "ct": 1703040014, - "e": 82031, - "f": "set_cri_dmg", - "g": 5, - "id": 1903537842, - "l": true, - "level": 78, - "mainStatBaseValue": 513, - "mainStatId": "uq7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2565, - "mg": 1111, - "op": [ - [ - "max_hp", - 513 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ] - ], - "s": "fb7c", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2565 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 20, - "rolls": 3 - } - ], - "ingameId": 1903537842, - "ingameEquippedId": "undefined" - }, - { - "code": "euq7a", - "ct": 1703041994, - "e": 82031, - "f": "set_cri_dmg", - "g": 5, - "id": 1903619236, - "l": true, - "level": 78, - "mainStatBaseValue": 57, - "mainStatId": "uq7_armo_m", - "mainStatType": "def", - "mainStatValue": 285, - "mg": 1111, - "op": [ - [ - "def", - 57 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "p": 784315107, - "s": "9d73", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 285 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 1903619236, - "ingameEquippedId": "784315107" - }, - { - "code": "euq7n", - "ct": 1703047131, - "e": 82031, - "f": "set_cri", - "g": 5, - "id": 1903827158, - "level": 78, - "mainStatBaseValue": 0.13, - "mainStatId": "uq7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.06 - ] - ], - "s": "e681", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 17, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 1903827158, - "ingameEquippedId": "undefined" - }, - { - "code": "euq7w", - "ct": 1703047131, - "e": 82086, - "f": "set_cri_dmg", - "g": 5, - "id": 1903827162, - "l": true, - "level": 78, - "mainStatBaseValue": 95, - "mainStatId": "uq7_weap_m", - "mainStatType": "att", - "mainStatValue": 475, - "mg": 1111, - "op": [ - [ - "att", - 95 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "a483", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 475 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 35, - "rolls": 5 - } - ], - "ingameId": 1903827162, - "ingameEquippedId": "undefined" - }, - { - "code": "euq7b", - "ct": 1703047132, - "e": 82086, - "f": "set_cri_dmg", - "g": 5, - "id": 1903827192, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "uq7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "p": 525461035, - "s": "e498", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 1903827192, - "ingameEquippedId": "525461035" - }, - { - "code": "euq7r", - "ct": 1703047132, - "e": 82031, - "f": "set_cri", - "g": 5, - "id": 1903827211, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "uq7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ] - ], - "p": 659243748, - "s": "8afb", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 14, - "rolls": 5 - } - ], - "ingameId": 1903827211, - "ingameEquippedId": "659243748" - }, - { - "code": "ecw6h_u", - "ct": 1703141661, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1906756378, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0 - ], - [ - "acc", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "att_rate", - 0.08, - "c", - "change2_att_rate_1_2" - ] - ], - "p": 494187001, - "s": "757a", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 9, - "rolls": 1, - "modified": true - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 29, - "rolls": 4 - }, - { - "type": "Speed", - "value": 14, - "rolls": 3 - } - ], - "ingameId": 1906756378, - "ingameEquippedId": "494187001" - }, - { - "code": "ecw6h", - "ct": 1703141678, - "e": 82031, - "f": "set_acc", - "g": 5, - "id": 1906757106, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.03 - ] - ], - "p": 117268286, - "s": "bd7", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 26, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 1906757106, - "ingameEquippedId": "117268286" - }, - { - "code": "ecw6a", - "ct": 1703175377, - "e": 73828, - "f": "set_speed", - "g": 4, - "id": 1908105131, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "s": "50e7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 1908105131, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1703175377, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1908105139, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "def_rate", - 0.07, - "c", - "change2_def_rate_1_2" - ] - ], - "p": 894623419, - "s": "ac7c", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 29, - "rolls": 4 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 1908105139, - "ingameEquippedId": "894623419" - }, - { - "code": "ecw6a_u", - "ct": 1703175406, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1908106285, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 218403497, - "s": "6abd", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 26, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 1908106285, - "ingameEquippedId": "218403497" - }, - { - "code": "eum13b", - "ct": 1703213230, - "e": 82080, - "f": "set_speed", - "g": 5, - "id": 1908937718, - "l": true, - "level": 78, - "mainStatBaseValue": 8, - "mainStatId": "um13_boot_m", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.04, - "c", - "change2_cri_dmg_1_1" - ] - ], - "p": 279573776, - "s": "13cd", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 40 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 18, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 4, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1908937718, - "ingameEquippedId": "279573776" - }, - { - "code": "ecs12a", - "ct": 1703308864, - "e": 82031, - "f": "set_cri", - "g": 5, - "id": 1913449308, - "l": true, - "level": 78, - "mainStatBaseValue": 57, - "mainStatId": "cs12_armo_m1", - "mainStatType": "def", - "mainStatValue": 285, - "mg": 1111, - "op": [ - [ - "def", - 57 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "p": 480028811, - "s": "9e29", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 285 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 1913449308, - "ingameEquippedId": "480028811" - }, - { - "code": "eiu21r", - "ct": 1703345070, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1918328237, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu21_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.06 - ] - ], - "s": "c163", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 1918328237, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1703431685, - "e": 73828, - "f": "set_speed", - "g": 4, - "id": 1927057511, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "p": 545449824, - "s": "4f20", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 1927057511, - "ingameEquippedId": "545449824" - }, - { - "code": "eah19a", - "ct": 1703484568, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1931044545, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah19_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ] - ], - "p": 207190343, - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 1931044545, - "ingameEquippedId": "207190343" - }, - { - "code": "eih9n", - "ct": 1703486429, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 1931224415, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.08 - ] - ], - "p": 490684210, - "s": "8b0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 1931224415, - "ingameEquippedId": "490684210" - }, - { - "code": "ecw6w", - "ct": 1703502922, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 1932781906, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 2, - "c", - "change1_speed_1_1" - ] - ], - "p": 894623419, - "s": "ca47", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1, - "modified": true - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 1932781906, - "ingameEquippedId": "894623419" - }, - { - "code": "ecw6w", - "ct": 1703502922, - "e": 82143, - "f": "set_acc", - "g": 5, - "id": 1932781920, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "res", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "p": 6911147, - "s": "d27", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 1932781920, - "ingameEquippedId": "6911147" - }, - { - "code": "ecw6h", - "ct": 1703646613, - "f": "set_cri", - "g": 5, - "id": 1940430552, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.06 - ] - ], - "s": "dd76", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1940430552, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1703646688, - "e": 84375, - "f": "set_cri", - "g": 4, - "id": 1940434100, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "182f", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1940434100, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1703646688, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1940434101, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "1ff2", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 28, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 1940434101, - "ingameEquippedId": "undefined" - }, - { - "code": "eah22n", - "ct": 1704069210, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 1957909968, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah22_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 3 - } - ], - "ingameId": 1957909968, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1704095124, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1959203877, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08, - "c" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 150271128, - "s": "a559", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 11, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 1959203877, - "ingameEquippedId": "150271128" - }, - { - "code": "eal85r_u", - "ct": 1704177759, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1962235405, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04, - "c" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "7550", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 25, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 1962235405, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1704252274, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1964804569, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "p": 279573776, - "s": "68e3", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 1964804569, - "ingameEquippedId": "279573776" - }, - { - "code": "ecw6w_u", - "ct": 1704254341, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1964886762, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "s": "b875", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 1964886762, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1704379061, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 1968811157, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 894623419, - "s": "943f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1968811157, - "ingameEquippedId": "894623419" - }, - { - "code": "ecd6n_u", - "ct": 1704609216, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 1982634674, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 2 - ], - [ - "speed", - 3 - ], - [ - "att", - 42 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.06 - ], - [ - "att", - 43 - ], - [ - "att_rate", - 0.04 - ], - [ - "att", - 39 - ], - [ - "speed", - 1, - "u" - ], - [ - "att", - 33, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "s": "ad05", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "Attack", - "value": 157, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 20, - "rolls": 3 - } - ], - "ingameId": 1982634674, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu32h", - "ct": 1704611861, - "e": 93802, - "f": "set_cri", - "g": 5, - "id": 1982871811, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu32_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "p": 549294853, - "s": "3de6", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 1982871811, - "ingameEquippedId": "549294853" - }, - { - "code": "eiu52r", - "ct": 1704616985, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1983314284, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu52_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ] - ], - "s": "bf4f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 3 - } - ], - "ingameId": 1983314284, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu11h", - "ct": 1704619286, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1983504651, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu11_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ] - ], - "p": 518421029, - "s": "cac", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 1983504651, - "ingameEquippedId": "518421029" - }, - { - "code": "eiu41a", - "ct": 1704631506, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1984528251, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu41_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.09 - ] - ], - "s": "8a4e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1984528251, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9r", - "ct": 1704631650, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 1984540949, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "imh_ring_m11", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.09 - ] - ], - "p": 28398305, - "s": "2be4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 1984540949, - "ingameEquippedId": "28398305" - }, - { - "code": "eah19w", - "ct": 1704633388, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1984695828, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah19_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.07 - ] - ], - "p": 518782830, - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 36, - "rolls": 5 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 1984695828, - "ingameEquippedId": "518782830" - }, - { - "code": "eal85b_u", - "ct": 1704636015, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1984935372, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def", - 34 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "def", - 28 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "s": "9f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Defense", - "value": 80, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 1984935372, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1704856091, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 1992544299, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0 - ], - [ - "max_hp", - 160 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp", - 190 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.07, - "c" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "max_hp", - 112, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "2c0c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "Health", - "value": 462, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 24, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 1992544299, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6a", - "ct": 1704948019, - "e": 82085, - "f": "set_torrent", - "g": 5, - "id": 1996773798, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "max_hp", - 199 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 191 - ] - ], - "s": "2b31", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "Speed", - "value": 7, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Health", - "value": 390, - "rolls": 2 - } - ], - "ingameId": 1996773798, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1704949315, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1996948269, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "res", - 0.05, - "u" - ] - ], - "p": 636577158, - "s": "cae", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 29, - "rolls": 4 - } - ], - "ingameId": 1996948269, - "ingameEquippedId": "636577158" - }, - { - "code": "ecd6a", - "ct": 1705030549, - "f": "set_torrent", - "g": 5, - "id": 2002995558, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp", - 193 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ] - ], - "s": "2a5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Health", - "value": 193, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2002995558, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6h_u", - "ct": 1705030559, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2002996261, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "49b0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 2002996261, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1705035322, - "e": 84411, - "f": "set_cri_dmg", - "g": 4, - "id": 2003362268, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "p": 48988518, - "s": "c6e3", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 2 - } - ], - "ingameId": 2003362268, - "ingameEquippedId": "48988518" - }, - { - "code": "ecb6a", - "ct": 1705038404, - "e": 9560, - "f": "set_counter", - "g": 5, - "id": 2003602517, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.05 - ] - ], - "s": "45", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 3 - } - ], - "ingameId": 2003602517, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6h_u", - "ct": 1705041755, - "e": 93804, - "f": "set_cri_dmg", - "g": 5, - "id": 2003857003, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att", - 46 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att", - 35 - ], - [ - "att", - 22, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "p": 847822619, - "s": "fc3a", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Attack", - "value": 103, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 25, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2003857003, - "ingameEquippedId": "847822619" - }, - { - "code": "ecb6w_u", - "ct": 1705050363, - "e": 84375, - "f": "set_res", - "g": 4, - "id": 2004501127, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "s": "1352", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2004501127, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1705053072, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 2004697268, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "s": "629", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 30, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2004697268, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w_u", - "ct": 1705071097, - "e": 93863, - "f": "set_res", - "g": 5, - "id": 2006249124, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "p": 218403497, - "s": "892c", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - } - ], - "ingameId": 2006249124, - "ingameEquippedId": "218403497" - }, - { - "code": "ecb6h", - "ct": 1705071109, - "e": 82031, - "f": "set_counter", - "g": 5, - "id": 2006250341, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ] - ], - "p": 717223364, - "s": "e804", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - } - ], - "ingameId": 2006250341, - "ingameEquippedId": "717223364" - }, - { - "code": "ecb6h", - "ct": 1705071109, - "e": 27342, - "f": "set_counter", - "g": 5, - "id": 2006250342, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.04 - ] - ], - "s": "23c1", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 5, - "rolls": 2 - } - ], - "ingameId": 2006250342, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w", - "ct": 1705114558, - "e": 82086, - "f": "set_cri_dmg", - "g": 5, - "id": 2008384390, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ] - ], - "s": "4a80", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 17, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 3 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - } - ], - "ingameId": 2008384390, - "ingameEquippedId": "undefined" - }, - { - "code": "eus8w", - "ct": 1705126396, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2009335986, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "un8_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.09 - ] - ], - "s": "7f6b", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 24, - "rolls": 3 - } - ], - "ingameId": 2009335986, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1705152618, - "e": 93750, - "f": "set_rage", - "g": 5, - "id": 2011430764, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0 - ], - [ - "cri", - 0.06, - "c" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "s": "a58b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 2011430764, - "ingameEquippedId": "undefined" - }, - { - "code": "eus8h", - "ct": 1705161253, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 2012198829, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "un8_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.09 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ] - ], - "s": "e7c2", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 2012198829, - "ingameEquippedId": "undefined" - }, - { - "code": "eus8a", - "ct": 1705213851, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2014873252, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "un8_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "res", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.09 - ] - ], - "p": 620426700, - "s": "4782", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 33, - "rolls": 4 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2014873252, - "ingameEquippedId": "620426700" - }, - { - "code": "eus8b", - "ct": 1705240177, - "e": 93861, - "f": "set_speed", - "g": 5, - "id": 2016902853, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "un8_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "cri", - 0.06 - ], - [ - "acc", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.05 - ] - ], - "p": 649028156, - "s": "1e29", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 2016902853, - "ingameEquippedId": "649028156" - }, - { - "code": "eal85r", - "ct": 1705243174, - "e": 82031, - "f": "set_penetrate", - "g": 5, - "id": 2017167572, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "al85_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "def", - 29 - ], - [ - "max_hp", - 196 - ], - [ - "max_hp", - 174 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.06 - ] - ], - "p": 48982864, - "s": "c570", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Defense", - "value": 29, - "rolls": 1 - }, - { - "type": "Health", - "value": 370, - "rolls": 2 - } - ], - "ingameId": 2017167572, - "ingameEquippedId": "48982864" - }, - { - "code": "ecb6r", - "ct": 1705244277, - "e": 82031, - "f": "set_res", - "g": 5, - "id": 2017265718, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "res", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "res", - 0.12 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 176 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.07 - ] - ], - "p": 403357976, - "s": "7ee0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 4 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "Health", - "value": 176, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 2017265718, - "ingameEquippedId": "403357976" - }, - { - "code": "eal85r_u", - "ct": 1705245285, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 2017356019, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "p": 798777729, - "s": "361d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 2017356019, - "ingameEquippedId": "798777729" - }, - { - "code": "ecb6w_u", - "ct": 1705304460, - "e": 93804, - "f": "set_counter", - "g": 5, - "id": 2019544740, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0 - ], - [ - "max_hp_rate", - 0 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.11, - "c", - "change2_max_hp_rate_3_1" - ] - ], - "p": 717223364, - "s": "f8a2", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 15, - "rolls": 3, - "modified": true - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 2019544740, - "ingameEquippedId": "717223364" - }, - { - "code": "ecb6a_u", - "ct": 1705304473, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2019545099, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "c", - "change1_cri_1_1" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 736028830, - "s": "1ea2", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1, - "modified": true - }, - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 2019545099, - "ingameEquippedId": "736028830" - }, - { - "code": "eah22r", - "ct": 1705390872, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2022267621, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah22_ring_m1", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.08 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 26, - "rolls": 4 - } - ], - "ingameId": 2022267621, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85n_u", - "ct": 1705391355, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2022281446, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp", - 163 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.05, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp", - 56, - "u" - ] - ], - "p": 893757497, - "s": "1287", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 33, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Health", - "value": 219, - "rolls": 1 - } - ], - "ingameId": 2022281446, - "ingameEquippedId": "893757497" - }, - { - "code": "ecw6h", - "ct": 1705478614, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2024850782, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "p": 306770592, - "s": "a694", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 2024850782, - "ingameEquippedId": "306770592" - }, - { - "code": "ecw6w_u", - "ct": 1705478628, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2024851183, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 157 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 150 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp", - 112, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_2" - ] - ], - "p": 115835449, - "s": "406a", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "Health", - "value": 419, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1, - "modified": true - } - ], - "ingameId": 2024851183, - "ingameEquippedId": "115835449" - }, - { - "code": "ecw6w", - "ct": 1705478653, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2024851848, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp", - 158 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp", - 181 - ] - ], - "s": "adb6", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Health", - "value": 339, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 25, - "rolls": 4 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - } - ], - "ingameId": 2024851848, - "ingameEquippedId": "undefined" - }, - { - "code": "ecn23r", - "ct": 1705551897, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2026412395, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "wc2023_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "c683", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2026412395, - "ingameEquippedId": "undefined" - }, - { - "code": "ecs14n", - "ct": 1705552327, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2026424962, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "cs14_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ] - ], - "p": 90857803, - "s": "4705", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 2026424962, - "ingameEquippedId": "90857803" - }, - { - "code": "ecb6h_u", - "ct": 1705570726, - "e": 93863, - "f": "set_vampire", - "g": 5, - "id": 2027220836, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def", - 34 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "def", - 9, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "p": 313179896, - "s": "57e5", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Defense", - "value": 43, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 20, - "rolls": 3 - } - ], - "ingameId": 2027220836, - "ingameEquippedId": "313179896" - }, - { - "code": "ecb6h", - "ct": 1705570759, - "e": 73828, - "f": "set_vampire", - "g": 4, - "id": 2027221801, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "speed", - 4 - ], - [ - "def", - 28 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "def", - 30 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ] - ], - "s": "edf3", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "Defense", - "value": 58, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2027221801, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6h_u", - "ct": 1705570782, - "e": 93863, - "f": "set_counter", - "g": 5, - "id": 2027222422, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "p": 360878989, - "s": "fc4a", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - } - ], - "ingameId": 2027222422, - "ingameEquippedId": "360878989" - }, - { - "code": "ecw6r", - "ct": 1705893640, - "e": 19239, - "f": "set_speed", - "g": 5, - "id": 2038111401, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "att", - 39 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.08 - ] - ], - "s": "f1a1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Attack", - "value": 39, - "rolls": 1 - } - ], - "ingameId": 2038111401, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1705903493, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 2038874253, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "b090", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2038874253, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h", - "ct": 1706000509, - "e": 3964, - "f": "set_speed", - "g": 5, - "id": 2043861084, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "att", - 44 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "att", - 38 - ] - ], - "p": 360502881, - "s": "5e9d", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "Attack", - "value": 82, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2043861084, - "ingameEquippedId": "360502881" - }, - { - "code": "ecw6w_u", - "ct": 1706001487, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 2043892879, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att_rate", - 0.05, - "u" - ] - ], - "s": "37cf", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 29, - "rolls": 4 - } - ], - "ingameId": 2043892879, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1706162050, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 2048932715, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp", - 166 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp", - 192 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "p": 549294853, - "s": "3a88", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Health", - "value": 470, - "rolls": 2 - } - ], - "ingameId": 2048932715, - "ingameEquippedId": "549294853" - }, - { - "code": "eah22b", - "ct": 1706235521, - "e": 93803, - "f": "set_immune", - "g": 5, - "id": 2051113296, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah22_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ] - ], - "p": 713583798, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2051113296, - "ingameEquippedId": "713583798" - }, - { - "code": "ecw6b_u", - "ct": 1706353874, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2055869382, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "res", - 0.08, - "c", - "change2_res_1_2" - ] - ], - "p": 110838566, - "s": "62af", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 19, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1, - "modified": true - } - ], - "ingameId": 2055869382, - "ingameEquippedId": "110838566" - }, - { - "code": "eal85b_u", - "ct": 1706378560, - "e": 93803, - "f": "set_speed", - "g": 5, - "id": 2057530391, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ] - ], - "s": "53c2", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - } - ], - "ingameId": 2057530391, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1706414991, - "e": 82031, - "f": "set_cri", - "g": 5, - "id": 2058772361, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.04 - ] - ], - "s": "4f6a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2058772361, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1706415536, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 2058805133, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05, - "c" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "f3dc", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 25, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 2058805133, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w", - "ct": 1706441913, - "f": "set_acc", - "g": 4, - "id": 2060434624, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "p": 522853044, - "s": "be10", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2060434624, - "ingameEquippedId": "522853044" - }, - { - "code": "ecw6a_u", - "ct": 1706541353, - "e": 93802, - "f": "set_cri", - "g": 5, - "id": 2064216941, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "10e6", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 2064216941, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w", - "ct": 1706541435, - "e": 82144, - "f": "set_speed", - "g": 5, - "id": 2064220982, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "p": 403357976, - "s": "f782", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2064220982, - "ingameEquippedId": "403357976" - }, - { - "code": "ecw6h", - "ct": 1706620357, - "f": "set_cri", - "g": 5, - "id": 2066291963, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "d519", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2066291963, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h", - "ct": 1706620525, - "e": 82085, - "f": "set_cri", - "g": 5, - "id": 2066298537, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04 - ] - ], - "s": "6589", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "Speed", - "value": 2, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - } - ], - "ingameId": 2066298537, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w_u", - "ct": 1706620599, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2066301482, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "p": 389494760, - "s": "b666", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 32, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2066301482, - "ingameEquippedId": "389494760" - }, - { - "code": "ecb6b", - "ct": 1706657162, - "e": 82031, - "f": "set_vampire", - "g": 5, - "id": 2067112315, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "cri", - 0.05 - ], - [ - "def", - 33 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "def", - 31 - ], - [ - "def", - 32 - ] - ], - "p": 313179896, - "s": "74e9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "Defense", - "value": 96, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2067112315, - "ingameEquippedId": "313179896" - }, - { - "code": "eiu21a", - "ct": 1706684102, - "e": 2332, - "f": "set_vampire", - "g": 5, - "id": 2067869313, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu21_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.08 - ] - ], - "s": "55f6", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 2067869313, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu21n", - "ct": 1706778716, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2071394636, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "iu21_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ] - ], - "p": 591089796, - "s": "1f1f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 2071394636, - "ingameEquippedId": "591089796" - }, - { - "code": "ess13n", - "ct": 1706780572, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2071559998, - "l": true, - "level": 78, - "mainStatBaseValue": 0.13, - "mainStatId": "ss13_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ] - ], - "s": "7337", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2071559998, - "ingameEquippedId": "undefined" - }, - { - "code": "eus8n", - "ct": 1706889460, - "e": 93860, - "f": "set_speed", - "g": 5, - "id": 2078298748, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "un8_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 3 - ] - ], - "s": "fc05", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 26, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 2078298748, - "ingameEquippedId": "undefined" - }, - { - "code": "eus8r", - "ct": 1706892248, - "e": 93861, - "f": "set_speed", - "g": 5, - "id": 2078474272, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "un8_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 3 - ] - ], - "p": 596366779, - "s": "ad26", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 2078474272, - "ingameEquippedId": "596366779" - }, - { - "code": "eiu12b", - "ct": 1706925455, - "f": "set_shield", - "g": 5, - "id": 2079299987, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "iu12_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ] - ], - "s": "e3a1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ProtectionSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2079299987, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1707100081, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2084745648, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "def_rate", - 0 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.07, - "u" - ], - [ - "def_rate", - 0.07, - "c", - "change2_def_rate_1_1" - ] - ], - "s": "2ccb", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 35, - "rolls": 5 - } - ], - "ingameId": 2084745648, - "ingameEquippedId": "undefined" - }, - { - "code": "eah22a", - "ct": 1707290467, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2089731577, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah22_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.05 - ] - ], - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 27, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 2089731577, - "ingameEquippedId": "undefined" - }, - { - "code": "eot3n_u3", - "ct": 1707293465, - "e": 93750, - "f": "set_att", - "g": 5, - "id": 2089861086, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ot3u_neck_m3", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "def", - 35 - ], - [ - "cri", - 0.06 - ], - [ - "def", - 32 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "def", - 36 - ], - [ - "att_rate", - 0.08 - ] - ], - "s": "990e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 18, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Defense", - "value": 103, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 2089861086, - "ingameEquippedId": "undefined" - }, - { - "code": "eot3r_u1", - "ct": 1707293472, - "f": "set_att", - "g": 5, - "id": 2089861315, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def", - 36 - ] - ], - "s": "eab", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Defense", - "value": 36, - "rolls": 1 - } - ], - "ingameId": 2089861315, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1707487214, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2097373980, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "s": "bac1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 2097373980, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1707493083, - "f": "set_speed", - "g": 5, - "id": 2097839766, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp", - 188 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "p": 568417281, - "s": "a73f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Health", - "value": 188, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2097839766, - "ingameEquippedId": "568417281" - }, - { - "code": "ecw6h_u", - "ct": 1707493091, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2097840413, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "def", - 29 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "def", - 32 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 559859822, - "s": "c2a1", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 17, - "rolls": 5 - }, - { - "type": "Defense", - "value": 79, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2097840413, - "ingameEquippedId": "559859822" - }, - { - "code": "ecw6a_u", - "ct": 1707570325, - "e": 93862, - "f": "set_cri", - "g": 5, - "id": 2102818293, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "s": "91f3", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - } - ], - "ingameId": 2102818293, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1707579459, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2103561103, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 3, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "dc70", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2103561103, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1707582380, - "f": "set_acc", - "g": 5, - "id": 2103767124, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp", - 164 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.03 - ] - ], - "p": 323638178, - "s": "2ec1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Health", - "value": 164, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 2103767124, - "ingameEquippedId": "323638178" - }, - { - "code": "ecw6r", - "ct": 1707585479, - "f": "set_acc", - "g": 4, - "id": 2103945239, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "acc", - 0.12 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp", - 179 - ] - ], - "p": 360502881, - "s": "edff", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "EffectivenessPercent", - "value": 60 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Health", - "value": 179, - "rolls": 1 - } - ], - "ingameId": 2103945239, - "ingameEquippedId": "360502881" - }, - { - "code": "ecw6w", - "ct": 1707595052, - "e": 1865, - "f": "set_speed", - "g": 4, - "id": 2104279288, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.05 - ] - ], - "p": 545449824, - "s": "d700", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2104279288, - "ingameEquippedId": "545449824" - }, - { - "code": "ecw6a", - "ct": 1707634837, - "e": 12476, - "f": "set_speed", - "g": 5, - "id": 2106228453, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.05 - ] - ], - "s": "9df3", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2106228453, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6w_u", - "ct": 1707730599, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2110924322, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 326831592, - "s": "35f3", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 29, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2110924322, - "ingameEquippedId": "326831592" - }, - { - "code": "ecd6b", - "ct": 1707831482, - "f": "set_scar", - "g": 4, - "id": 2114759155, - "level": 85, - "mainStatBaseValue": 8, - "mainStatId": "cra6_boot_m", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att", - 41 - ], - [ - "def_rate", - 0.07 - ] - ], - "p": 545449824, - "s": "2be3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Heroic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Speed", - "value": 40 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Attack", - "value": 41, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2114759155, - "ingameEquippedId": "545449824" - }, - { - "code": "ecw6w_u", - "ct": 1707984836, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2121257472, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 793619248, - "s": "ef9c", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 26, - "rolls": 5 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2121257472, - "ingameEquippedId": "793619248" - }, - { - "code": "ecw6b_u", - "ct": 1707986961, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2121373185, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.09, - "c", - "change2_cri_dmg_2_2" - ] - ], - "p": 583954927, - "s": "ad1e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2, - "modified": true - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2121373185, - "ingameEquippedId": "583954927" - }, - { - "code": "eot3r_u1", - "ct": 1707988277, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2121441876, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "att", - 38 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "p": 96079748, - "s": "be42", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "Attack", - "value": 38, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 2121441876, - "ingameEquippedId": "96079748" - }, - { - "code": "ecw6h", - "ct": 1708148701, - "f": "set_speed", - "g": 4, - "id": 2126739471, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.08 - ] - ], - "p": 627243561, - "s": "6d3a", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2126739471, - "ingameEquippedId": "627243561" - }, - { - "code": "ecw6w", - "ct": 1708148770, - "e": 1982, - "f": "set_acc", - "g": 5, - "id": 2126741481, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ] - ], - "p": 360502881, - "s": "3b96", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2126741481, - "ingameEquippedId": "360502881" - }, - { - "code": "ecw6a", - "ct": 1708148803, - "f": "set_speed", - "g": 5, - "id": 2126742492, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.05 - ] - ], - "p": 360502881, - "s": "a309", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2126742492, - "ingameEquippedId": "360502881" - }, - { - "code": "ecw6h_u", - "ct": 1708148813, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2126742800, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 590699704, - "s": "3a6", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 29, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2126742800, - "ingameEquippedId": "590699704" - }, - { - "code": "ela8n", - "ct": 1708488110, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2135372005, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la8_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.08 - ] - ], - "p": 899011010, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 31, - "rolls": 4 - } - ], - "ingameId": 2135372005, - "ingameEquippedId": "899011010" - }, - { - "code": "ela8b", - "ct": 1708594531, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 2139237574, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "la8_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ] - ], - "p": 218403497, - "s": "c625", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 2139237574, - "ingameEquippedId": "218403497" - }, - { - "code": "ela8a", - "ct": 1708699865, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2142093452, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "la8_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.09 - ], - [ - "res", - 0.07 - ] - ], - "p": 389494760, - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 2142093452, - "ingameEquippedId": "389494760" - }, - { - "code": "eah22h", - "ct": 1708700141, - "e": 93863, - "f": "set_immune", - "g": 5, - "id": 2142102830, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah22_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.09 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.06 - ] - ], - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2142102830, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1708835823, - "e": 84471, - "f": "set_speed", - "g": 4, - "id": 2149094317, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 2, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "77d8", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2149094317, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w", - "ct": 1708836357, - "e": 73828, - "f": "set_cri", - "g": 4, - "id": 2149133295, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ] - ], - "s": "1a8", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2149133295, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1708836571, - "e": 82031, - "f": "set_acc", - "g": 5, - "id": 2149149204, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "res", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "res", - 0.12 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.03 - ] - ], - "s": "b2bf", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2149149204, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1708849487, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2150114260, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "6983", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - } - ], - "ingameId": 2150114260, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1708854407, - "e": 73982, - "f": "set_speed", - "g": 4, - "id": 2150481857, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp", - 181 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 172 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "15bc", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "Health", - "value": 353, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2150481857, - "ingameEquippedId": "undefined" - }, - { - "code": "ela8w", - "ct": 1708858417, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2150775127, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "la8_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "max_hp", - 0 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 183, - "c", - "change2_max_hp_1_2" - ] - ], - "p": 739641017, - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Health", - "value": 183, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2150775127, - "ingameEquippedId": "739641017" - }, - { - "code": "ecw6w_u", - "ct": 1708858507, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2150781870, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 518421029, - "s": "2e53", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2150781870, - "ingameEquippedId": "518421029" - }, - { - "code": "eiu32w", - "ct": 1708869824, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2151692442, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu32_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "2197", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 29, - "rolls": 4 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2151692442, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1708870404, - "e": 82031, - "f": "set_acc", - "g": 5, - "id": 2151743407, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "b5bb", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2151743407, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w", - "ct": 1708872038, - "e": 39993, - "f": "set_acc", - "g": 5, - "id": 2151884103, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "6e87", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 12, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - } - ], - "ingameId": 2151884103, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1708872272, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 2151903486, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "s": "ba01", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2151903486, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1708873580, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2152014884, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.11, - "c" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ] - ], - "p": 21884461, - "s": "dcc0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 27, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2, - "modified": true - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 2152014884, - "ingameEquippedId": "21884461" - }, - { - "code": "eal85b_u", - "ct": 1708918581, - "e": 93863, - "f": "set_speed", - "g": 5, - "id": 2153414067, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp", - 0 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp", - 0 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "max_hp", - 112, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp", - 309, - "c", - "change2_max_hp_2_2" - ] - ], - "p": 899011010, - "s": "baf4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "Health", - "value": 421, - "rolls": 2, - "modified": true - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 2153414067, - "ingameEquippedId": "899011010" - }, - { - "code": "ecw6n", - "ct": 1708935431, - "e": 73922, - "f": "set_speed", - "g": 4, - "id": 2154045784, - "l": true, - "level": 85, - "mainStatBaseValue": 0.11, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.55, - "mg": 1111, - "op": [ - [ - "cri", - 0.11 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 2 - ] - ], - "s": "da64", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitChancePercent", - "value": 55 - }, - "substats": [ - { - "type": "Speed", - "value": 11, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2154045784, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1709015810, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2156211616, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 0, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 3, - "c", - "change2_speed_1_2" - ] - ], - "s": "6566", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 26, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2156211616, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9n", - "ct": 1709016391, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2156226369, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ] - ], - "p": 618609916, - "s": "2f74", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 18, - "rolls": 5 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2156226369, - "ingameEquippedId": "618609916" - }, - { - "code": "ela8r", - "ct": 1709021074, - "e": 93862, - "f": "set_max_hp", - "g": 5, - "id": 2156341348, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la8_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.07 - ] - ], - "p": 893757497, - "s": "35eb", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 36, - "rolls": 5 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2156341348, - "ingameEquippedId": "893757497" - }, - { - "code": "ecs15w", - "ct": 1709198551, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2159926269, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "cs15_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.06 - ] - ], - "p": 110838566, - "s": "aea6", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 2159926269, - "ingameEquippedId": "110838566" - }, - { - "code": "eih4h", - "ct": 1709214188, - "e": 3498, - "f": "set_def", - "g": 5, - "id": 2160337152, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "imh_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.05 - ] - ], - "s": "3efb", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DefenseSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2160337152, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85n_u", - "ct": 1709274459, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2161464314, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "3f41", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 28, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 26, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2161464314, - "ingameEquippedId": "undefined" - }, - { - "code": "ela8h", - "ct": 1709366505, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 2163380815, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "la8_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.09 - ] - ], - "p": 713631381, - "s": "82d1", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2163380815, - "ingameEquippedId": "713631381" - }, - { - "code": "ecw6a", - "ct": 1709889907, - "e": 73922, - "f": "set_speed", - "g": 4, - "id": 2176808434, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 1 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "dec7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 10, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2176808434, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1709890142, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2176821438, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "p": 713631381, - "s": "7840", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 25, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 2176821438, - "ingameEquippedId": "713631381" - }, - { - "code": "ecq6b", - "ct": 1709952472, - "f": "set_coop", - "g": 5, - "id": 2179311086, - "l": true, - "level": 85, - "mainStatBaseValue": 8, - "mainStatId": "cra6_boot_m", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "att_rate", - 0.06 - ] - ], - "s": "8c35", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "UnitySet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Speed", - "value": 40 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2179311086, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu32h", - "ct": 1709988234, - "e": 93862, - "f": "set_cri", - "g": 5, - "id": 2180478765, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu32_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.04 - ] - ], - "p": 115835449, - "s": "7e2c", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 24, - "rolls": 4 - } - ], - "ingameId": 2180478765, - "ingameEquippedId": "115835449" - }, - { - "code": "ecw6r_u", - "ct": 1710049208, - "e": 93863, - "f": "set_acc", - "g": 5, - "id": 2182640389, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "acc", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 590699704, - "s": "247", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectivenessPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 27, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 2182640389, - "ingameEquippedId": "590699704" - }, - { - "code": "ecw6h", - "ct": 1710054409, - "e": 73828, - "f": "set_acc", - "g": 4, - "id": 2183027208, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "s": "8d48", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2183027208, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1710056355, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2183176619, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "p": 225876663, - "s": "4bc9", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 15, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2183176619, - "ingameEquippedId": "225876663" - }, - { - "code": "ecw6h", - "ct": 1710072742, - "e": 73924, - "f": "set_acc", - "g": 4, - "id": 2184381870, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "speed", - 3 - ], - [ - "att", - 35 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "att", - 39 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.04 - ], - [ - "att", - 42 - ] - ], - "p": 323638178, - "s": "c78", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "Attack", - "value": 116, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2184381870, - "ingameEquippedId": "323638178" - }, - { - "code": "ecw6h", - "ct": 1710081673, - "f": "set_speed", - "g": 4, - "id": 2185097428, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.08 - ] - ], - "p": 440334191, - "s": "3662", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2185097428, - "ingameEquippedId": "440334191" - }, - { - "code": "ecw6r_u", - "ct": 1710082271, - "e": 84375, - "f": "set_acc", - "g": 4, - "id": 2185148258, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "acc", - 0.13, - null, - null, - 0 - ], - [ - "def", - 30 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0 - ], - [ - "def", - 9, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.11, - "c", - "change2_max_hp_rate_2_2" - ] - ], - "p": 403476926, - "s": "52a4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectivenessPercent", - "value": 65 - }, - "substats": [ - { - "type": "Defense", - "value": 39, - "rolls": 1 - }, - { - "type": "Speed", - "value": 15, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2185148258, - "ingameEquippedId": "403476926" - }, - { - "code": "ecw6h_u", - "ct": 1710125285, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2186430690, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ] - ], - "p": 769932771, - "s": "cb87", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 31, - "rolls": 4 - } - ], - "ingameId": 2186430690, - "ingameEquippedId": "769932771" - }, - { - "code": "ecw6h_u", - "ct": 1710125326, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2186431865, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "p": 899011010, - "s": "55c3", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 28, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 2186431865, - "ingameEquippedId": "899011010" - }, - { - "code": "ecw6w", - "ct": 1710126616, - "e": 18655, - "f": "set_speed", - "g": 5, - "id": 2186466517, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.05 - ] - ], - "p": 440334191, - "s": "3a5", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 3 - } - ], - "ingameId": 2186466517, - "ingameEquippedId": "440334191" - }, - { - "code": "ecs11r", - "ct": 1710463521, - "e": 93861, - "f": "set_max_hp", - "g": 5, - "id": 2194259314, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "cs11_ring_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.07 - ] - ], - "p": 226377978, - "s": "5794", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2194259314, - "ingameEquippedId": "226377978" - }, - { - "code": "eot3r_u4", - "ct": 1710507219, - "e": 91773, - "f": "set_vampire", - "g": 5, - "id": 2196695880, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_ring_m4", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def", - 33 - ], - [ - "def", - 35 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.07 - ] - ], - "s": "22e8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 12, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Defense", - "value": 68, - "rolls": 2 - } - ], - "ingameId": 2196695880, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a", - "ct": 1710765143, - "e": 3964, - "f": "set_counter", - "g": 5, - "id": 2208228998, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.03 - ] - ], - "s": "28f8", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2208228998, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6b_u", - "ct": 1710768062, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2208462837, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp", - 0 - ], - [ - "def", - 29 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "def", - 28 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp", - 160, - "c", - "change2_max_hp_1_1" - ] - ], - "p": 893757497, - "s": "d4a2", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Health", - "value": 216, - "rolls": 1, - "modified": true - }, - { - "type": "Defense", - "value": 75, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 26, - "rolls": 3 - } - ], - "ingameId": 2208462837, - "ingameEquippedId": "893757497" - }, - { - "code": "ecb6h", - "ct": 1710812221, - "e": 1982, - "f": "set_cri_dmg", - "g": 5, - "id": 2210102316, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "75b9", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2210102316, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w_u", - "ct": 1710812279, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2210103803, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_1" - ] - ], - "p": 11185757, - "s": "3b71", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2210103803, - "ingameEquippedId": "11185757" - }, - { - "code": "ecb6a_u", - "ct": 1710812307, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 2210104511, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "p": 568689715, - "s": "9e27", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2210104511, - "ingameEquippedId": "568689715" - }, - { - "code": "ecb6a", - "ct": 1710812307, - "e": 73828, - "f": "set_vampire", - "g": 4, - "id": 2210104515, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 159 - ], - [ - "cri", - 0.04 - ] - ], - "s": "32f0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2 - }, - { - "type": "Health", - "value": 159, - "rolls": 1 - } - ], - "ingameId": 2210104515, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w", - "ct": 1710812698, - "e": 73828, - "f": "set_res", - "g": 4, - "id": 2210115802, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.03 - ] - ], - "s": "696b", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2210115802, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6h", - "ct": 1710897942, - "e": 6704, - "f": "set_vampire", - "g": 5, - "id": 2212150491, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def", - 33 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.03 - ] - ], - "s": "ef25", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Defense", - "value": 33, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2212150491, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85n_u", - "ct": 1711087559, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2216419210, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "res", - 0 - ], - [ - "def", - 31 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "res", - 0 - ], - [ - "def", - 32 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "res", - 0.1, - "c", - "change2_res_2_2" - ] - ], - "s": "99e1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2, - "modified": true - }, - { - "type": "Defense", - "value": 81, - "rolls": 2 - } - ], - "ingameId": 2216419210, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85n", - "ct": 1711088204, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2216442796, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "al85_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "att_rate", - 0.05 - ], - [ - "att", - 34 - ], - [ - "max_hp", - 163 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "att", - 33 - ], - [ - "max_hp", - 196 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp", - 189 - ] - ], - "p": 166490, - "s": "e1b7", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Attack", - "value": 67, - "rolls": 2 - }, - { - "type": "Health", - "value": 548, - "rolls": 3 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - } - ], - "ingameId": 2216442796, - "ingameEquippedId": "166490" - }, - { - "code": "ecb6a", - "ct": 1711340064, - "e": 73828, - "f": "set_counter", - "g": 4, - "id": 2224920636, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.06 - ] - ], - "s": "6003", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2224920636, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a", - "ct": 1711356508, - "e": 2973, - "f": "set_vampire", - "g": 5, - "id": 2225731924, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "s": "5f92", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 2225731924, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w", - "ct": 1711368370, - "e": 73923, - "f": "set_vampire", - "g": 4, - "id": 2226334464, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.08 - ] - ], - "s": "811e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2226334464, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a", - "ct": 1711425671, - "e": 82031, - "f": "set_vampire", - "g": 5, - "id": 2228126615, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.07 - ] - ], - "s": "60b4", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 31, - "rolls": 5 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2228126615, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1711425706, - "e": 84375, - "f": "set_res", - "g": 4, - "id": 2228127402, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 713631381, - "s": "4541", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 33, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2228127402, - "ingameEquippedId": "713631381" - }, - { - "code": "eiu12b", - "ct": 1711460956, - "f": "set_shield", - "g": 5, - "id": 2228948935, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "iu12_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ] - ], - "s": "d956", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ProtectionSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2228948935, - "ingameEquippedId": "undefined" - }, - { - "code": "eih6r", - "ct": 1711524757, - "e": 93862, - "f": "set_immune", - "g": 5, - "id": 2230045201, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "imh_ring_m3", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.05 - ] - ], - "s": "8c17", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 2230045201, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu51b", - "ct": 1711524757, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2230045203, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "iu51_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.09 - ], - [ - "acc", - 0.06 - ] - ], - "s": "2f25", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2230045203, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu22a", - "ct": 1711631354, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2232095205, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu22_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.06 - ] - ], - "p": 847822619, - "s": "fddd", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 2232095205, - "ingameEquippedId": "847822619" - }, - { - "code": "eih9r", - "ct": 1711631477, - "e": 93920, - "f": "set_res", - "g": 5, - "id": 2232099646, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "imh_ring_m11", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.09 - ], - [ - "speed", - 4 - ] - ], - "p": 636577158, - "s": "a953", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 27, - "rolls": 3 - } - ], - "ingameId": 2232099646, - "ingameEquippedId": "636577158" - }, - { - "code": "ecb6a_u", - "ct": 1711681401, - "e": 93862, - "f": "set_counter", - "g": 5, - "id": 2233107404, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "d6ee", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2233107404, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1711681457, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 2233108959, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "s": "b2c1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 28, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 2233108959, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1711681520, - "e": 84375, - "f": "set_res", - "g": 4, - "id": 2233110737, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "p": 28398305, - "s": "6e31", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2233110737, - "ingameEquippedId": "28398305" - }, - { - "code": "eal85n_u", - "ct": 1711858473, - "e": 93863, - "f": "set_counter", - "g": 5, - "id": 2237115399, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "5465", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 24, - "rolls": 3 - } - ], - "ingameId": 2237115399, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w_u", - "ct": 1711934480, - "e": 93862, - "f": "set_res", - "g": 5, - "id": 2238763993, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.04, - "u" - ] - ], - "p": 6885517, - "s": "1c49", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 25, - "rolls": 3 - } - ], - "ingameId": 2238763993, - "ingameEquippedId": "6885517" - }, - { - "code": "ecb6h", - "ct": 1711934480, - "e": 3964, - "f": "set_vampire", - "g": 5, - "id": 2238763994, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "att", - 43 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ] - ], - "s": "cd1", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "Attack", - "value": 43, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2238763994, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85n_u", - "ct": 1711943062, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2238992507, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "att_rate", - 0.07, - "u" - ] - ], - "s": "8141", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 37, - "rolls": 5 - } - ], - "ingameId": 2238992507, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu41a", - "ct": 1711961614, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 2239472709, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu41_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.09 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "p": 559859824, - "s": "f7c", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 28, - "rolls": 4 - } - ], - "ingameId": 2239472709, - "ingameEquippedId": "559859824" - }, - { - "code": "eah22w", - "ct": 1712021329, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2240779763, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah22_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.09 - ] - ], - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - } - ], - "ingameId": 2240779763, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1712314770, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2249488507, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.04, - "c" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "p": 704271358, - "s": "bb5d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - }, - { - "type": "DefensePercent", - "value": 19, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 3 - } - ], - "ingameId": 2249488507, - "ingameEquippedId": "704271358" - }, - { - "code": "ecg6a", - "ct": 1712451845, - "e": 9852, - "f": "set_shield", - "g": 5, - "id": 2253346580, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "a51", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ProtectionSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 10, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 2253346580, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85r_u", - "ct": 1712542817, - "e": 93862, - "f": "set_cri_dmg", - "g": 5, - "id": 2257469979, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0 - ], - [ - "cri_dmg", - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.12, - "c", - "change2_cri_dmg_3_2" - ] - ], - "p": 591089796, - "s": "2c24", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 3, - "modified": true - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 20, - "rolls": 3 - } - ], - "ingameId": 2257469979, - "ingameEquippedId": "591089796" - }, - { - "code": "eal85b_u", - "ct": 1712736647, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2263136846, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "def", - 32 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "def", - 9, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "4378", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 32, - "rolls": 4 - }, - { - "type": "Defense", - "value": 41, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2263136846, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1712892905, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 2265984311, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att", - 38 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "s": "44b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 27, - "rolls": 4 - }, - { - "type": "Attack", - "value": 49, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2265984311, - "ingameEquippedId": "undefined" - }, - { - "code": "eah21r", - "ct": 1713025254, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2268832536, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah21_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ] - ], - "p": 899521626, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 30, - "rolls": 5 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2268832536, - "ingameEquippedId": "899521626" - }, - { - "code": "eal85n_u", - "ct": 1713147840, - "e": 93803, - "f": "set_vampire", - "g": 5, - "id": 2271281400, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri", - 0.06, - "c", - "change2_cri_2_1" - ] - ], - "s": "707a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2, - "modified": true - }, - { - "type": "Speed", - "value": 5, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 2271281400, - "ingameEquippedId": "undefined" - }, - { - "code": "eah23n", - "ct": 1713776806, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 2284288170, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ah23_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.05 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Speed", - "value": 15, - "rolls": 4 - } - ], - "ingameId": 2284288170, - "ingameEquippedId": "undefined" - }, - { - "code": "ecs5w", - "ct": 1714049426, - "f": "set_scar", - "g": 5, - "id": 2290581263, - "l": true, - "level": 78, - "mainStatBaseValue": 95, - "mainStatId": "cs5_weap_m1", - "mainStatType": "att", - "mainStatValue": 475, - "mg": 1111, - "op": [ - [ - "att", - 95 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.07 - ] - ], - "s": "c0ca", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Attack", - "value": 475 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2290581263, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu21r", - "ct": 1714122430, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2292196268, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu21_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.06 - ] - ], - "p": 350226992, - "s": "3b64", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 19, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2292196268, - "ingameEquippedId": "350226992" - }, - { - "code": "ecb6n_u", - "ct": 1714231161, - "e": 84375, - "f": "set_res", - "g": 4, - "id": 2296597756, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.06, - "c", - "change2_max_hp_rate_1_1" - ] - ], - "s": "e075", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 30, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1, - "modified": true - } - ], - "ingameId": 2296597756, - "ingameEquippedId": "undefined" - }, - { - "code": "eep_w", - "ct": 1714284409, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2298865302, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ep_weapon_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp", - 188 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp", - 196 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp", - 178 - ], - [ - "max_hp", - 202 - ] - ], - "s": "2add", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Health", - "value": 764, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 2298865302, - "ingameEquippedId": "undefined" - }, - { - "code": "eep_a", - "ct": 1714284422, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 2298866017, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ep_armor_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 3 - ] - ], - "p": 279573776, - "s": "6db7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2298866017, - "ingameEquippedId": "279573776" - }, - { - "code": "eep_n", - "ct": 1714284436, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2298866778, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ep_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "att", - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "att", - 43, - "c", - "change2_att_1_2" - ] - ], - "p": 518782830, - "s": "b7b8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "Attack", - "value": 43, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "Speed", - "value": 15, - "rolls": 4 - } - ], - "ingameId": 2298866778, - "ingameEquippedId": "518782830" - }, - { - "code": "eal85n_u", - "ct": 1714284692, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2298881181, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "p": 6885517, - "s": "aa0f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2298881181, - "ingameEquippedId": "6885517" - }, - { - "code": "eiu52r", - "ct": 1714293950, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 2299390917, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu52_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "edab", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2299390917, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9n", - "ct": 1714294051, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2299396303, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ] - ], - "p": 568689715, - "s": "b570", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 22, - "rolls": 5 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2299396303, - "ingameEquippedId": "568689715" - }, - { - "code": "eal85n_u", - "ct": 1714295058, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2299448611, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "res", - 0 - ], - [ - "speed", - 2 - ], - [ - "att", - 34 - ], - [ - "att_rate", - 0.07 - ], - [ - "att", - 37 - ], - [ - "att", - 41 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "res", - 0 - ], - [ - "res", - 0.1, - "c" - ], - [ - "res", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "att", - 33, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "p": 49161666, - "s": "e0c1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2, - "modified": true - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "Attack", - "value": 145, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2299448611, - "ingameEquippedId": "49161666" - }, - { - "code": "eiu31n", - "ct": 1714357889, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 2302140953, - "l": true, - "level": 88, - "mainStatBaseValue": 0.12, - "mainStatId": "iu31_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "s": "ba6c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitChancePercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 2302140953, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1714372187, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2302877324, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ] - ], - "s": "25b2", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 32, - "rolls": 4 - } - ], - "ingameId": 2302877324, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1714372449, - "f": "set_acc", - "g": 5, - "id": 2302890195, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0.07 - ] - ], - "s": "f6eb", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2302890195, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1714372535, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2302894522, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.07, - "c", - "change2_max_hp_rate_1_2" - ] - ], - "p": 403476926, - "s": "9a31", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 28, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 26, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2302894522, - "ingameEquippedId": "403476926" - }, - { - "code": "ecw6a", - "ct": 1714372736, - "e": 73828, - "f": "set_speed", - "g": 4, - "id": 2302903744, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.04 - ] - ], - "s": "f38b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2302903744, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1714372736, - "e": 73863, - "f": "set_cri", - "g": 4, - "id": 2302903748, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.08 - ] - ], - "s": "a5d7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2302903748, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1714372767, - "f": "set_speed", - "g": 5, - "id": 2302905160, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp", - 165 - ], - [ - "max_hp_rate", - 0.04 - ] - ], - "p": 440334191, - "s": "a10b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Health", - "value": 165, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2302905160, - "ingameEquippedId": "440334191" - }, - { - "code": "ecw6a_u", - "ct": 1714372767, - "e": 84375, - "f": "set_acc", - "g": 4, - "id": 2302905165, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 184 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 559859822, - "s": "9502", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "Health", - "value": 240, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2302905165, - "ingameEquippedId": "559859822" - }, - { - "code": "ecw6a", - "ct": 1714372794, - "e": 82031, - "f": "set_acc", - "g": 5, - "id": 2302906497, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ] - ], - "s": "be91", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 36, - "rolls": 5 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2302906497, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1714372845, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 2302908784, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "p": 350226992, - "s": "ac27", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 28, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 2302908784, - "ingameEquippedId": "350226992" - }, - { - "code": "ecw6a_u", - "ct": 1714372977, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 2302915221, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 1, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "38c2", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 2302915221, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1714654886, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2313852169, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "def", - 30 - ], - [ - "max_hp", - 191 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp", - 166 - ], - [ - "max_hp", - 187 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp", - 196 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "def", - 9, - "u" - ], - [ - "max_hp", - 224, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 739641017, - "s": "ea97", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Defense", - "value": 39, - "rolls": 1 - }, - { - "type": "Health", - "value": 964, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2313852169, - "ingameEquippedId": "739641017" - }, - { - "code": "eal85b_u", - "ct": 1714654912, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 2313853560, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att", - 38 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp", - 193 - ], - [ - "max_hp", - 201 - ], - [ - "att", - 39 - ], - [ - "att", - 46 - ], - [ - "max_hp", - 200 - ], - [ - "max_hp", - 161 - ], - [ - "att", - 33, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp", - 224, - "u" - ] - ], - "p": 898971885, - "s": "bd02", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "Attack", - "value": 156, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Health", - "value": 979, - "rolls": 4 - } - ], - "ingameId": 2313853560, - "ingameEquippedId": "898971885" - }, - { - "code": "ecb6a", - "ct": 1714656508, - "e": 1982, - "f": "set_cri_dmg", - "g": 5, - "id": 2313936220, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "p": 28393107, - "s": "2ec5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2313936220, - "ingameEquippedId": "28393107" - }, - { - "code": "ecw6h", - "ct": 1714795035, - "e": 73828, - "f": "set_acc", - "g": 4, - "id": 2319231336, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "6835", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2319231336, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1714795035, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2319231341, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 166490, - "s": "78f9", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 26, - "rolls": 3 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 2319231341, - "ingameEquippedId": "166490" - }, - { - "code": "ecw6h_u", - "ct": 1714795252, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2319240618, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.05, - "c", - "change2_cri_2_1" - ] - ], - "s": "15d9", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2, - "modified": true - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2319240618, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu41a", - "ct": 1714803060, - "e": 93862, - "f": "set_counter", - "g": 5, - "id": 2319570044, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu41_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.07 - ] - ], - "s": "9091", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 2319570044, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1714869304, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 2321814545, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 3, - "c" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "1b53", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 25, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2321814545, - "ingameEquippedId": "undefined" - }, - { - "code": "eah23r", - "ct": 1715070139, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 2327785535, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah23_ring_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.09 - ], - [ - "att_rate", - 0.05 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 23, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2327785535, - "ingameEquippedId": "undefined" - }, - { - "code": "ecs16n", - "ct": 1715325668, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 2335875526, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "cs16_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.09 - ] - ], - "p": 110853212, - "s": "23e3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2335875526, - "ingameEquippedId": "110853212" - }, - { - "code": "ecd6b", - "ct": 1715333083, - "e": 1982, - "f": "set_penetrate", - "g": 5, - "id": 2336073694, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_boot_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ] - ], - "s": "8fb7", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2336073694, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6w_u", - "ct": 1715349307, - "e": 93805, - "f": "set_penetrate", - "g": 5, - "id": 2336602419, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 736028830, - "s": "f6b2", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 33, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2336602419, - "ingameEquippedId": "736028830" - }, - { - "code": "ecw6a", - "ct": 1715351899, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2336706788, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ] - ], - "s": "fe32", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2336706788, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1715351924, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2336707733, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 0 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 0 - ], - [ - "speed", - 4, - "c" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "p": 306770592, - "s": "ffba", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 5, - "rolls": 2, - "modified": true - }, - { - "type": "EffectivenessPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 2336707733, - "ingameEquippedId": "306770592" - }, - { - "code": "ecw6r", - "ct": 1715396094, - "e": 9852, - "f": "set_speed", - "g": 5, - "id": 2338046039, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "def", - 28 - ], - [ - "acc", - 0.06 - ], - [ - "att_rate", - 0.04 - ], - [ - "def", - 29 - ] - ], - "s": "6216", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Defense", - "value": 57, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2338046039, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu52w", - "ct": 1715409594, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2338606438, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu52_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ] - ], - "p": 354206748, - "s": "1f9e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2338606438, - "ingameEquippedId": "354206748" - }, - { - "code": "eiu21h", - "ct": 1715413306, - "e": 3498, - "f": "set_res", - "g": 5, - "id": 2338748442, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu21_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "15fd", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2338748442, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu11b", - "ct": 1715416248, - "e": 35679, - "f": "set_def", - "g": 5, - "id": 2338856716, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu11_boot_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.03 - ] - ], - "s": "b8b0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DefenseSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "DefensePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2 - } - ], - "ingameId": 2338856716, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6r", - "ct": 1715435678, - "f": "set_penetrate", - "g": 5, - "id": 2339655257, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "acc", - 0.12 - ], - [ - "att", - 42 - ], - [ - "res", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "p": 440334191, - "s": "5278", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "EffectivenessPercent", - "value": 60 - }, - "substats": [ - { - "type": "Attack", - "value": 42, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2339655257, - "ingameEquippedId": "440334191" - }, - { - "code": "ecd6a", - "ct": 1715440165, - "e": 6996, - "f": "set_penetrate", - "g": 5, - "id": 2339877851, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.06 - ] - ], - "s": "9572", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2339877851, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n", - "ct": 1715613061, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2345668837, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ] - ], - "s": "c071", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 22, - "rolls": 4 - }, - { - "type": "Speed", - "value": 5, - "rolls": 2 - } - ], - "ingameId": 2345668837, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1715615453, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2345753123, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "fdfe", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Speed", - "value": 15, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2345753123, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1715697730, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2347798000, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "att", - 39 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "p": 892353109, - "s": "249b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Attack", - "value": 50, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 23, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 2347798000, - "ingameEquippedId": "892353109" - }, - { - "code": "eal85b_u", - "ct": 1715740101, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2348733488, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "p": 897188455, - "s": "7a14", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 2348733488, - "ingameEquippedId": "897188455" - }, - { - "code": "ecs16h", - "ct": 1715935840, - "e": 82143, - "f": "set_cri", - "g": 5, - "id": 2353346116, - "l": true, - "level": 78, - "mainStatBaseValue": 513, - "mainStatId": "cs16_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2565, - "mg": 1111, - "op": [ - [ - "max_hp", - 513 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.05 - ] - ], - "s": "3939", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2565 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 4 - } - ], - "ingameId": 2353346116, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1716017682, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2355528955, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "def", - 32 - ], - [ - "res", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.04 - ] - ], - "s": "f079", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "Defense", - "value": 32, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 23, - "rolls": 4 - } - ], - "ingameId": 2355528955, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1716017699, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 2355529586, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "p": 225876663, - "s": "4302", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 27, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 25, - "rolls": 3 - } - ], - "ingameId": 2355529586, - "ingameEquippedId": "225876663" - }, - { - "code": "eih9n", - "ct": 1716102374, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2358228066, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 4 - ] - ], - "p": 350226992, - "s": "2207", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2358228066, - "ingameEquippedId": "350226992" - }, - { - "code": "eih6w", - "ct": 1716102377, - "e": 93861, - "f": "set_speed", - "g": 5, - "id": 2358228155, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "imh_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "p": 241191727, - "s": "86b5", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 2358228155, - "ingameEquippedId": "241191727" - }, - { - "code": "ecw6a", - "ct": 1716176034, - "e": 2973, - "f": "set_speed", - "g": 5, - "id": 2360180905, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp", - 186 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.04 - ] - ], - "p": 627243561, - "s": "8acc", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Health", - "value": 186, - "rolls": 1 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 2360180905, - "ingameEquippedId": "627243561" - }, - { - "code": "ecw6r", - "ct": 1716791646, - "f": "set_speed", - "g": 5, - "id": 2374695794, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp", - 194 - ] - ], - "p": 627243561, - "s": "9b0e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Health", - "value": 194, - "rolls": 1 - } - ], - "ingameId": 2374695794, - "ingameEquippedId": "627243561" - }, - { - "code": "ecw6n_u", - "ct": 1716823981, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2375949179, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "def", - 32 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.05 - ], - [ - "def", - 34 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ] - ], - "p": 559859822, - "s": "d8f4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Defense", - "value": 84, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 2375949179, - "ingameEquippedId": "559859822" - }, - { - "code": "ecw6w_u", - "ct": 1716963954, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 2379388704, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.1, - "c" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 583954927, - "s": "25b3", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2, - "modified": true - }, - { - "type": "Speed", - "value": 18, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2379388704, - "ingameEquippedId": "583954927" - }, - { - "code": "ecw6h", - "ct": 1716982540, - "e": 73922, - "f": "set_speed", - "g": 4, - "id": 2379804268, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "def", - 28 - ], - [ - "acc", - 0.07 - ] - ], - "s": "c39e", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "Defense", - "value": 28, - "rolls": 1 - } - ], - "ingameId": 2379804268, - "ingameEquippedId": "undefined" - }, - { - "code": "ela9b", - "ct": 1717033015, - "e": 93863, - "f": "set_acc", - "g": 5, - "id": 2381087442, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "la9_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "att_rate", - 0.06 - ] - ], - "p": 313109293, - "s": "bf1f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 20, - "rolls": 3 - } - ], - "ingameId": 2381087442, - "ingameEquippedId": "313109293" - }, - { - "code": "ela9n", - "ct": 1717033038, - "e": 93804, - "f": "set_torrent", - "g": 5, - "id": 2381088269, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "la9_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.07 - ] - ], - "p": 11185757, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - } - ], - "ingameId": 2381088269, - "ingameEquippedId": "11185757" - }, - { - "code": "ela9w", - "ct": 1717126810, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2384321147, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "la9_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ] - ], - "p": 897188455, - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 24, - "rolls": 6 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2384321147, - "ingameEquippedId": "897188455" - }, - { - "code": "eal85b_u", - "ct": 1717292946, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 2389222320, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.04 - ], - [ - "cri", - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_1" - ] - ], - "p": 110853212, - "s": "df4a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 19, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 27, - "rolls": 4 - } - ], - "ingameId": 2389222320, - "ingameEquippedId": "110853212" - }, - { - "code": "eot3r_u4", - "ct": 1717293099, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2389227867, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_ring_m4", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ] - ], - "s": "1ce9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 29, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2389227867, - "ingameEquippedId": "undefined" - }, - { - "code": "eot3n_u1", - "ct": 1717313918, - "e": 26118, - "f": "set_rage", - "g": 5, - "id": 2389962315, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_neck_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "s": "443a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 2, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 27, - "rolls": 3 - } - ], - "ingameId": 2389962315, - "ingameEquippedId": "undefined" - }, - { - "code": "ela9r", - "ct": 1717381132, - "e": 93862, - "f": "set_penetrate", - "g": 5, - "id": 2391749502, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la9_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ] - ], - "p": 736028830, - "s": "980b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2391749502, - "ingameEquippedId": "736028830" - }, - { - "code": "ela9a", - "ct": 1717465891, - "e": 93804, - "f": "set_acc", - "g": 5, - "id": 2393491274, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "la9_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.09 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.08 - ] - ], - "p": 21884461, - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 30, - "rolls": 4 - } - ], - "ingameId": 2393491274, - "ingameEquippedId": "21884461" - }, - { - "code": "ewb1a", - "ct": 1717580352, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2395265189, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "wb1_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "p": 793619248, - "s": "e096", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2395265189, - "ingameEquippedId": "793619248" - }, - { - "code": "ecw6w_u", - "ct": 1717645802, - "e": 93863, - "f": "set_speed", - "g": 5, - "id": 2397005545, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "p": 713583798, - "s": "9f03", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 18, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2397005545, - "ingameEquippedId": "713583798" - }, - { - "code": "ela9h", - "ct": 1717651578, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2397281783, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "la9_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_2" - ] - ], - "s": "8739", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 2397281783, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu32w", - "ct": 1717741955, - "e": 10727, - "f": "set_acc", - "g": 5, - "id": 2399461241, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu32_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "att_rate", - 0.06 - ] - ], - "s": "a351", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2399461241, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1717814960, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2401205762, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "p": 590699704, - "s": "bb94", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 18, - "rolls": 3 - } - ], - "ingameId": 2401205762, - "ingameEquippedId": "590699704" - }, - { - "code": "ecw6a_u", - "ct": 1717817895, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2401323560, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "p": 326831592, - "s": "257a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 2401323560, - "ingameEquippedId": "326831592" - }, - { - "code": "eiu21h", - "ct": 1717824156, - "e": 46173, - "f": "set_res", - "g": 5, - "id": 2401581262, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu21_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ] - ], - "s": "7828", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 12, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2401581262, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6a_u", - "ct": 1717833500, - "e": 93804, - "f": "set_torrent", - "g": 5, - "id": 2401942133, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "7d95", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2401942133, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1717835283, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2402010097, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "s": "e35e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 2402010097, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1717835294, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 2402010455, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "acc", - 0.06 - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "p": 494187001, - "s": "7b6c", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 30, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 2402010455, - "ingameEquippedId": "494187001" - }, - { - "code": "ecw6a", - "ct": 1717835315, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2402011272, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp", - 201 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 192 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "7ff6", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 2 - }, - { - "type": "Health", - "value": 393, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - } - ], - "ingameId": 2402011272, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n", - "ct": 1717835322, - "e": 1982, - "f": "set_speed", - "g": 5, - "id": 2402011498, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.08 - ] - ], - "s": "6109", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 2402011498, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1718024331, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2408627998, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ] - ], - "s": "2fc1", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 19, - "rolls": 5 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2408627998, - "ingameEquippedId": "undefined" - }, - { - "code": "eot3r_u1", - "ct": 1718371449, - "e": 20287, - "f": "set_rage", - "g": 5, - "id": 2416330492, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def", - 37 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.09 - ], - [ - "def", - 32 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def", - 33 - ] - ], - "p": 28393107, - "s": "d93a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Defense", - "value": 102, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2416330492, - "ingameEquippedId": "28393107" - }, - { - "code": "eot3r_u4", - "ct": 1718371474, - "e": 93861, - "f": "set_vampire", - "g": 5, - "id": 2416331183, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_ring_m4", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.08 - ] - ], - "s": "444d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2416331183, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1718371501, - "e": 82031, - "f": "set_cri", - "g": 5, - "id": 2416331971, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.04 - ] - ], - "s": "a87e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2416331971, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1718371626, - "e": 73828, - "f": "set_speed", - "g": 4, - "id": 2416335396, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "22c6", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2416335396, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1718371626, - "e": 73828, - "f": "set_acc", - "g": 4, - "id": 2416335401, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 161 - ], - [ - "max_hp", - 167 - ] - ], - "s": "c5ad", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 13, - "rolls": 4 - }, - { - "type": "Health", - "value": 328, - "rolls": 2 - } - ], - "ingameId": 2416335401, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n", - "ct": 1718510279, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2420182942, - "l": true, - "level": 85, - "mainStatBaseValue": 0.11, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.55, - "mg": 1111, - "op": [ - [ - "cri", - 0.11 - ], - [ - "def_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ] - ], - "s": "5e3b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitChancePercent", - "value": 55 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2420182942, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n_u", - "ct": 1718510288, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 2420183248, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "att", - 35 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "def", - 31 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "att", - 11, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "def", - 9, - "u" - ] - ], - "p": 713583798, - "s": "d60", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "Attack", - "value": 46, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 24, - "rolls": 6 - }, - { - "type": "Defense", - "value": 40, - "rolls": 1 - } - ], - "ingameId": 2420183248, - "ingameEquippedId": "713583798" - }, - { - "code": "ecw6r", - "ct": 1718587586, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2422195744, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ] - ], - "s": "dc48", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "Speed", - "value": 8, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2422195744, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6w_u", - "ct": 1718758772, - "e": 84469, - "f": "set_revenge", - "g": 4, - "id": 2425807121, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "a9ef", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "RevengeSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 18, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 2425807121, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r_u", - "ct": 1718810780, - "e": 93802, - "f": "set_speed", - "g": 5, - "id": 2426959799, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 769932771, - "s": "21da", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2426959799, - "ingameEquippedId": "769932771" - }, - { - "code": "ecw6w_u", - "ct": 1718811420, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 2426978551, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.04 - ], - [ - "acc", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 2, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 480028811, - "s": "ada9", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2426978551, - "ingameEquippedId": "480028811" - }, - { - "code": "ezl1_w", - "ct": 1718876359, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2430463987, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ezl1_weapon_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.09 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.05 - ] - ], - "p": 738614105, - "s": "f111", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 30, - "rolls": 4 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2430463987, - "ingameEquippedId": "738614105" - }, - { - "code": "ecq6b", - "ct": 1718936983, - "e": 82086, - "f": "set_rage", - "g": 5, - "id": 2434660966, - "level": 85, - "mainStatBaseValue": 8, - "mainStatId": "cra6_boot_m", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.06 - ] - ], - "s": "9173", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 40 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 22, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2434660966, - "ingameEquippedId": "undefined" - }, - { - "code": "ezl1_h", - "ct": 1718957082, - "e": 93863, - "f": "set_cri_dmg", - "g": 5, - "id": 2436387238, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ezl1_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ] - ], - "s": "93e3", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 2436387238, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1718960067, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2436630810, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp", - 181 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "cri", - 0.06, - "c", - "change2_cri_2_2" - ] - ], - "p": 99507012, - "s": "d74c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2, - "modified": true - }, - { - "type": "AttackPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "Health", - "value": 237, - "rolls": 1 - } - ], - "ingameId": 2436630810, - "ingameEquippedId": "99507012" - }, - { - "code": "ezl1_r", - "ct": 1719022481, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2440984992, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ezl1_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ] - ], - "p": 613630545, - "s": "74c8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 2440984992, - "ingameEquippedId": "613630545" - }, - { - "code": "ecw6h_u", - "ct": 1719038304, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2442445949, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 0 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 0, - "u" - ], - [ - "speed", - 4, - "c", - "change2_speed_1_3" - ] - ], - "s": "e0de", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1, - "modified": true - } - ], - "ingameId": 2442445949, - "ingameEquippedId": "undefined" - }, - { - "code": "ezl1_b", - "ct": 1719049059, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2443370535, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ezl1_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.06 - ] - ], - "s": "ccee", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - } - ], - "ingameId": 2443370535, - "ingameEquippedId": "undefined" - }, - { - "code": "ezl1_a", - "ct": 1719049065, - "e": 93862, - "f": "set_cri_dmg", - "g": 5, - "id": 2443370994, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ezl1_armor_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ] - ], - "s": "68dd", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 31, - "rolls": 4 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2443370994, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6w_u", - "ct": 1719150364, - "e": 84375, - "f": "set_torrent", - "g": 4, - "id": 2450639997, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ] - ], - "p": 890790459, - "s": "355f", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 27, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - } - ], - "ingameId": 2450639997, - "ingameEquippedId": "890790459" - }, - { - "code": "ezl1_n", - "ct": 1719186343, - "e": 93863, - "f": "set_cri_dmg", - "g": 5, - "id": 2452477065, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ezl1_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ] - ], - "p": 613630545, - "s": "efe1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2452477065, - "ingameEquippedId": "613630545" - }, - { - "code": "ecd6w_u", - "ct": 1719193962, - "e": 93803, - "f": "set_penetrate", - "g": 5, - "id": 2452995627, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "96b9", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2452995627, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6h_u", - "ct": 1719199545, - "e": 93750, - "f": "set_rage", - "g": 5, - "id": 2453405847, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0 - ], - [ - "cri", - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.06, - "c" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 690904230, - "s": "8e33", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 31, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2, - "modified": true - } - ], - "ingameId": 2453405847, - "ingameEquippedId": "690904230" - }, - { - "code": "ecq6w_u", - "ct": 1719232739, - "e": 93862, - "f": "set_rage", - "g": 5, - "id": 2455851429, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.08, - "c", - "change2_att_rate_1_2" - ] - ], - "s": "6243", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 9, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 2 - } - ], - "ingameId": 2455851429, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6h_u", - "ct": 1719234897, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2456052972, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.04 - ], - [ - "acc", - 0.01, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "a217", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 28, - "rolls": 4 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2456052972, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6w_u", - "ct": 1719239271, - "e": 84469, - "f": "set_torrent", - "g": 4, - "id": 2456477299, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "s": "6885", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 17, - "rolls": 5 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2456477299, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6w_u", - "ct": 1719280987, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2458542739, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "c28b", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - } - ], - "ingameId": 2458542739, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1719372442, - "e": 84375, - "f": "set_acc", - "g": 4, - "id": 2462401078, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp", - 170 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp", - 182 - ], - [ - "max_hp", - 112, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "acc", - 0.07, - "c", - "change2_acc_1_2" - ] - ], - "s": "4343", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Health", - "value": 464, - "rolls": 2 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2462401078, - "ingameEquippedId": "undefined" - }, - { - "code": "ewb1n", - "ct": 1719373040, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2462429274, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "wb1_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "att", - 53 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ] - ], - "p": 494187001, - "s": "72b5", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Attack", - "value": 53, - "rolls": 1 - } - ], - "ingameId": 2462429274, - "ingameEquippedId": "494187001" - }, - { - "code": "ecd6a_u", - "ct": 1719545658, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2469310601, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_2" - ] - ], - "s": "e4ef", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1, - "modified": true - } - ], - "ingameId": 2469310601, - "ingameEquippedId": "undefined" - }, - { - "code": "eah23a", - "ct": 1719553415, - "e": 93862, - "f": "set_counter", - "g": 5, - "id": 2469796401, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah23_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "p": 96079743, - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 21, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2469796401, - "ingameEquippedId": "96079743" - }, - { - "code": "eiu11h", - "ct": 1719565819, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2470498110, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu11_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ] - ], - "p": 795195383, - "s": "d9e8", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - } - ], - "ingameId": 2470498110, - "ingameEquippedId": "795195383" - }, - { - "code": "eiu51b", - "ct": 1719567555, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 2470583605, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "iu51_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.07 - ] - ], - "p": 90857803, - "s": "7648", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 27, - "rolls": 4 - } - ], - "ingameId": 2470583605, - "ingameEquippedId": "90857803" - }, - { - "code": "ecw6h_u", - "ct": 1719752713, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2480610051, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.08, - "c" - ], - [ - "speed", - 1, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "p": 31856726, - "s": "f4c8", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 25, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1, - "modified": true - } - ], - "ingameId": 2480610051, - "ingameEquippedId": "31856726" - }, - { - "code": "ecb6a", - "ct": 1719902979, - "e": 73828, - "f": "set_vampire", - "g": 4, - "id": 2485637611, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 2 - ] - ], - "s": "a136", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "Speed", - "value": 5, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2485637611, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu32h", - "ct": 1719935096, - "f": "set_cri", - "g": 5, - "id": 2486622720, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu32_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "e072", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2486622720, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1720061020, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 2489697243, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "s": "e4b7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 2489697243, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1720061268, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2489711284, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 713583798, - "s": "562f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2489711284, - "ingameEquippedId": "713583798" - }, - { - "code": "ecw6n", - "ct": 1720227089, - "e": 73923, - "f": "set_speed", - "g": 4, - "id": 2496081670, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.04 - ] - ], - "s": "1c2f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2496081670, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1720272643, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2497717407, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 2, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.06, - "c", - "change2_max_hp_rate_1_1" - ] - ], - "s": "8082", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 24, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1, - "modified": true - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2497717407, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1720273081, - "e": 93861, - "f": "set_speed", - "g": 5, - "id": 2497736090, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0 - ], - [ - "cri_dmg", - 0 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.11, - "c", - "change2_cri_dmg_3_1" - ] - ], - "p": 115835449, - "s": "9c58", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 3, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 2497736090, - "ingameEquippedId": "115835449" - }, - { - "code": "eah20n", - "ct": 1720502478, - "e": 93863, - "f": "set_acc", - "g": 5, - "id": 2506099821, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah20_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "acc", - 0.06 - ] - ], - "p": 403476926, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 2506099821, - "ingameEquippedId": "403476926" - }, - { - "code": "eah24w", - "ct": 1720767971, - "e": 93860, - "f": "set_cri", - "g": 5, - "id": 2512093832, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah24_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "s": "3cad", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2512093832, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6h_u", - "ct": 1721292681, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 2523943597, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def", - 33 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def", - 9, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.06, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "s": "1b3f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Defense", - "value": 42, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 33, - "rolls": 5 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2523943597, - "ingameEquippedId": "undefined" - }, - { - "code": "eah24h", - "ct": 1721306197, - "e": 93861, - "f": "set_cri", - "g": 5, - "id": 2524849777, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah24_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "att_rate", - 0.07, - "c", - "change2_att_rate_2_1" - ] - ], - "p": 480028811, - "s": "b4c0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 7, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 2524849777, - "ingameEquippedId": "480028811" - }, - { - "code": "eal85n_u", - "ct": 1721353543, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 2526689173, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 0 - ], - [ - "res", - 0.08 - ], - [ - "max_hp", - 187 - ], - [ - "res", - 0.04 - ], - [ - "max_hp", - 159 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp", - 201 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 0, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp", - 168, - "u" - ], - [ - "speed", - 3, - "c", - "change2_speed_1_2" - ] - ], - "p": 636577158, - "s": "bf49", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Health", - "value": 715, - "rolls": 3 - } - ], - "ingameId": 2526689173, - "ingameEquippedId": "636577158" - }, - { - "code": "eah20w", - "ct": 1721451814, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2531573716, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah20_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.09 - ], - [ - "acc", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.09 - ] - ], - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 2531573716, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1721653192, - "e": 84375, - "f": "set_acc", - "g": 4, - "id": 2542210000, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.07, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "p": 225876663, - "s": "de0f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 37, - "rolls": 5 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2542210000, - "ingameEquippedId": "225876663" - }, - { - "code": "ecw6a_u", - "ct": 1721653344, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2542225851, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "a47e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2542225851, - "ingameEquippedId": "undefined" - }, - { - "code": "eah24a", - "ct": 1721696924, - "e": 93860, - "f": "set_cri", - "g": 5, - "id": 2544307147, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah24_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ] - ], - "p": 115835449, - "s": "aa0a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2544307147, - "ingameEquippedId": "115835449" - }, - { - "code": "ecw6r_u", - "ct": 1721721230, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2545118660, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0 - ], - [ - "max_hp", - 166 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0 - ], - [ - "def_rate", - 0.14, - "c" - ], - [ - "speed", - 2, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 110838566, - "s": "3c3e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 14, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 18, - "rolls": 3, - "modified": true - }, - { - "type": "Health", - "value": 222, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2545118660, - "ingameEquippedId": "110838566" - }, - { - "code": "ecw6a_u", - "ct": 1721722484, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2545154009, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ] - ], - "p": 829105288, - "s": "8336", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 2545154009, - "ingameEquippedId": "829105288" - }, - { - "code": "ecw6a_u", - "ct": 1721722510, - "e": 84375, - "f": "set_cri", - "g": 4, - "id": 2545154611, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.03, - "c", - "change2_cri_1_1" - ] - ], - "s": "7f0a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 2545154611, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b", - "ct": 1721724441, - "e": 82085, - "f": "set_speed", - "g": 5, - "id": 2545205227, - "l": true, - "level": 85, - "mainStatBaseValue": 8, - "mainStatId": "al85_boot_m", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "def", - 30 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.04 - ] - ], - "p": 659243748, - "s": "1bfa", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 40 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 22, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Defense", - "value": 30, - "rolls": 1 - } - ], - "ingameId": 2545205227, - "ingameEquippedId": "659243748" - }, - { - "code": "eot3r_u1", - "ct": 1721749061, - "e": 93861, - "f": "set_att", - "g": 5, - "id": 2546038921, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ] - ], - "p": 140659207, - "s": "5b88", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 30, - "rolls": 4 - } - ], - "ingameId": 2546038921, - "ingameEquippedId": "140659207" - }, - { - "code": "eot3r_u4", - "ct": 1721749094, - "f": "set_revenge", - "g": 5, - "id": 2546040131, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_ring_m4", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.05 - ] - ], - "s": "8d34", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "RevengeSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2546040131, - "ingameEquippedId": "undefined" - }, - { - "code": "eot3n_u3", - "ct": 1721749108, - "e": 7695, - "f": "set_att", - "g": 5, - "id": 2546040595, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ot3u_neck_m3", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "att", - 43 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ] - ], - "s": "77fe", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "Speed", - "value": 5, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Attack", - "value": 43, - "rolls": 1 - } - ], - "ingameId": 2546040595, - "ingameEquippedId": "undefined" - }, - { - "code": "ess14n", - "ct": 1721985072, - "e": 82144, - "f": "set_cri", - "g": 5, - "id": 2552544383, - "l": true, - "level": 78, - "mainStatBaseValue": 0.13, - "mainStatId": "ss14_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ] - ], - "s": "9258", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 2552544383, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu12w", - "ct": 1722088742, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2555333537, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu12_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.08 - ] - ], - "p": 96079743, - "s": "c4b0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - } - ], - "ingameId": 2555333537, - "ingameEquippedId": "96079743" - }, - { - "code": "eal85b_u", - "ct": 1722227834, - "e": 93863, - "f": "set_res", - "g": 5, - "id": 2558797681, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att", - 37 - ], - [ - "res", - 0 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0 - ], - [ - "att", - 42 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "att", - 22, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "res", - 0.1, - "c", - "change2_res_3_1" - ] - ], - "p": 713631381, - "s": "c15a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "Attack", - "value": 101, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 3, - "modified": true - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 2558797681, - "ingameEquippedId": "713631381" - }, - { - "code": "ecw6n_u", - "ct": 1722349812, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 2561932090, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_2_1" - ] - ], - "s": "583b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 2561932090, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n", - "ct": 1722349848, - "e": 6704, - "f": "set_speed", - "g": 5, - "id": 2561933357, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "def_rate", - 0.07 - ], - [ - "att", - 41 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.07 - ] - ], - "s": "6a5d", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Attack", - "value": 41, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 2561933357, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1722406686, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 2563269116, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ] - ], - "s": "4939", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - } - ], - "ingameId": 2563269116, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9r", - "ct": 1722577894, - "e": 93804, - "f": "set_res", - "g": 5, - "id": 2567721286, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "imh_ring_m11", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.05 - ] - ], - "p": 31856726, - "s": "7df0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 26, - "rolls": 4 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 2567721286, - "ingameEquippedId": "31856726" - }, - { - "code": "eih6w", - "ct": 1722577901, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2567721609, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "imh_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "cri_dmg", - 0 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_2" - ] - ], - "p": 669363338, - "s": "8590", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1, - "modified": true - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 18, - "rolls": 4 - } - ], - "ingameId": 2567721609, - "ingameEquippedId": "669363338" - }, - { - "code": "eah24b", - "ct": 1722581009, - "e": 93861, - "f": "set_cri", - "g": 5, - "id": 2567885380, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah24_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.09 - ], - [ - "cri", - 0.05 - ] - ], - "s": "2596", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2567885380, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w", - "ct": 1722643907, - "e": 73828, - "f": "set_cri", - "g": 4, - "id": 2570293611, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.08 - ] - ], - "s": "e531", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 13, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2570293611, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1722659748, - "e": 93805, - "f": "set_acc", - "g": 5, - "id": 2571078711, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 590699704, - "s": "88b3", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 2571078711, - "ingameEquippedId": "590699704" - }, - { - "code": "ecw6r_u", - "ct": 1722690036, - "e": 93862, - "f": "set_cri", - "g": 5, - "id": 2572775896, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "att", - 40 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "att", - 38 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "att", - 22, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "f349", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "Attack", - "value": 100, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2572775896, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1722818820, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 2578315782, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "bce9", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 21, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 2578315782, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85r_u", - "ct": 1722843929, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2579922070, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ] - ], - "p": 829105288, - "s": "b79", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - } - ], - "ingameId": 2579922070, - "ingameEquippedId": "829105288" - }, - { - "code": "eal85n_u", - "ct": 1722844022, - "e": 93803, - "f": "set_speed", - "g": 5, - "id": 2579927769, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp", - 189 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 4, - "c", - "change2_speed_1_3" - ] - ], - "p": 829105288, - "s": "6344", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 4, - "rolls": 1, - "modified": true - }, - { - "type": "DefensePercent", - "value": 34, - "rolls": 4 - }, - { - "type": "Health", - "value": 245, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 2579927769, - "ingameEquippedId": "829105288" - }, - { - "code": "eal85b_u", - "ct": 1722844552, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2579962083, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "att_rate", - 0.08, - "c", - "change2_att_rate_2_1" - ] - ], - "p": 777666204, - "s": "5b4d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 11, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 2579962083, - "ingameEquippedId": "777666204" - }, - { - "code": "eal85b_u", - "ct": 1722845028, - "e": 93805, - "f": "set_res", - "g": 5, - "id": 2579992439, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0 - ], - [ - "res", - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "res", - 0.11, - "c", - "change2_res_2_2" - ] - ], - "p": 48988520, - "s": "f7a4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 27, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2, - "modified": true - } - ], - "ingameId": 2579992439, - "ingameEquippedId": "48988520" - }, - { - "code": "eiu12b", - "ct": 1722929538, - "e": 93750, - "f": "set_shield", - "g": 5, - "id": 2583468205, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "iu12_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.06 - ] - ], - "s": "4bc2", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ProtectionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 31, - "rolls": 4 - } - ], - "ingameId": 2583468205, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1723011712, - "e": 93861, - "f": "set_cri", - "g": 5, - "id": 2585297243, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "s": "90b3", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 2585297243, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6b_u", - "ct": 1723081251, - "e": 84470, - "f": "set_immune", - "g": 4, - "id": 2586884783, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.05, - "c", - "change2_cri_dmg_1_1" - ] - ], - "s": "ab5c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Heroic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2586884783, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n", - "ct": 1723081376, - "e": 73828, - "f": "set_speed", - "g": 4, - "id": 2586889573, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.04 - ] - ], - "p": 4647526, - "s": "c8b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2586889573, - "ingameEquippedId": "4647526" - }, - { - "code": "ecq6a_u", - "ct": 1723081562, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2586896646, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp", - 178 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "p": 798777729, - "s": "f4bc", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 29, - "rolls": 4 - }, - { - "type": "Health", - "value": 234, - "rolls": 1 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 2586896646, - "ingameEquippedId": "798777729" - }, - { - "code": "ecw6n", - "ct": 1723083271, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2586962259, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "p": 326831592, - "s": "9d5a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 2586962259, - "ingameEquippedId": "326831592" - }, - { - "code": "eah24r", - "ct": 1723100901, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 2587779548, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah24_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.08 - ] - ], - "s": "2006", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2587779548, - "ingameEquippedId": "undefined" - }, - { - "code": "eah21h", - "ct": 1723106139, - "e": 93802, - "f": "set_cri_dmg", - "g": 5, - "id": 2587958401, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah21_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "speed", - 5 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ] - ], - "p": 784315107, - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1, - "modified": true - } - ], - "ingameId": 2587958401, - "ingameEquippedId": "784315107" - }, - { - "code": "eah24n", - "ct": 1723213899, - "e": 93861, - "f": "set_cri", - "g": 5, - "id": 2591378030, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ah24_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 5 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.05, - "c", - "change2_att_rate_1_1" - ] - ], - "p": 96079748, - "s": "8b5b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 5, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 2591378030, - "ingameEquippedId": "96079748" - }, - { - "code": "ecq6a_u", - "ct": 1723725342, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2605318044, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp", - 187 - ], - [ - "max_hp_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 171 - ], - [ - "max_hp", - 177 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp", - 166 - ], - [ - "speed", - 1, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp", - 224, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.05, - "c", - "change2_max_hp_rate_1_1" - ] - ], - "s": "932f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Health", - "value": 925, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1, - "modified": true - } - ], - "ingameId": 2605318044, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1723963404, - "e": 73828, - "f": "set_speed", - "g": 4, - "id": 2612661692, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 3 - ] - ], - "s": "3b04", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 23, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2612661692, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1723972747, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 2613190111, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "s": "b90e", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 2613190111, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6h_u", - "ct": 1724030071, - "e": 93750, - "f": "set_rage", - "g": 5, - "id": 2615160698, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.07, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 28393107, - "s": "aa77", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 35, - "rolls": 5 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2615160698, - "ingameEquippedId": "28393107" - }, - { - "code": "ecw6w_u", - "ct": 1724219835, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2618702426, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 559859822, - "s": "15fc", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2618702426, - "ingameEquippedId": "559859822" - }, - { - "code": "ecw6a_u", - "ct": 1724219865, - "e": 84470, - "f": "set_speed", - "g": 4, - "id": 2618702984, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 166 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "s": "f394", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 18, - "rolls": 5 - }, - { - "type": "Health", - "value": 222, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2618702984, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r_u", - "ct": 1724219888, - "e": 93803, - "f": "set_speed", - "g": 5, - "id": 2618703315, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.07, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ] - ], - "s": "b104", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 34, - "rolls": 5 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 2618703315, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1724221408, - "e": 84470, - "f": "set_speed", - "g": 4, - "id": 2618727007, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "p": 96079748, - "s": "e4b7", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 19, - "rolls": 2 - } - ], - "ingameId": 2618727007, - "ingameEquippedId": "96079748" - }, - { - "code": "ecd6a", - "ct": 1724290138, - "f": "set_penetrate", - "g": 5, - "id": 2619906285, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.05 - ] - ], - "s": "e69c", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2619906285, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n", - "ct": 1724291185, - "e": 2973, - "f": "set_speed", - "g": 5, - "id": 2619935254, - "l": true, - "level": 85, - "mainStatBaseValue": 0.13, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "max_hp", - 185 - ], - [ - "acc", - 0.07 - ] - ], - "s": "544c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Health", - "value": 185, - "rolls": 1 - } - ], - "ingameId": 2619935254, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1724291488, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2619943639, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "acc", - 0.07, - "c", - "change2_acc_1_2" - ] - ], - "p": 225876663, - "s": "8f37", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1, - "modified": true - } - ], - "ingameId": 2619943639, - "ingameEquippedId": "225876663" - }, - { - "code": "eal85b_u", - "ct": 1724415131, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2624623095, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_1" - ] - ], - "p": 434015426, - "s": "f74a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 33, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 2624623095, - "ingameEquippedId": "434015426" - }, - { - "code": "eal85b_u", - "ct": 1724418596, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2624757745, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "att", - 41 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "att", - 43 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "att", - 22, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "p": 494187001, - "s": "a736", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Attack", - "value": 106, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 24, - "rolls": 3 - } - ], - "ingameId": 2624757745, - "ingameEquippedId": "494187001" - }, - { - "code": "ecw6a_u", - "ct": 1724418796, - "e": 84375, - "f": "set_cri", - "g": 4, - "id": 2624766450, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "p": 96079748, - "s": "fb11", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "Speed", - "value": 15, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2624766450, - "ingameEquippedId": "96079748" - }, - { - "code": "eal85r_u", - "ct": 1724419767, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2624806455, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 0 - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 5, - "c", - "change2_speed_3_2" - ] - ], - "p": 669363338, - "s": "dd4b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 7, - "rolls": 3, - "modified": true - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 22, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2624806455, - "ingameEquippedId": "669363338" - }, - { - "code": "ecg6a_u", - "ct": 1724634647, - "e": 93804, - "f": "set_max_hp", - "g": 5, - "id": 2632932257, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp", - 180 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp", - 198 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "s": "e5a0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Health", - "value": 490, - "rolls": 2 - } - ], - "ingameId": 2632932257, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu51w", - "ct": 1724678510, - "f": "set_rage", - "g": 5, - "id": 2633919631, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu51_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ] - ], - "s": "9dfe", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2633919631, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r_u", - "ct": 1724678657, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2633923246, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "acc", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 195 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 171 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 163 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp", - 168, - "u" - ] - ], - "s": "5bb1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectivenessPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "Health", - "value": 697, - "rolls": 3 - } - ], - "ingameId": 2633923246, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r_u", - "ct": 1724678676, - "e": 84468, - "f": "set_speed", - "g": 4, - "id": 2633923676, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 156 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp", - 56, - "u" - ] - ], - "p": 566472035, - "s": "e1af", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "Health", - "value": 212, - "rolls": 1 - } - ], - "ingameId": 2633923676, - "ingameEquippedId": "566472035" - }, - { - "code": "ecw6h", - "ct": 1724678708, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2633924624, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 2 - ] - ], - "p": 742543115, - "s": "8c0b", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 10, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2633924624, - "ingameEquippedId": "742543115" - }, - { - "code": "eih7a", - "ct": 1724679037, - "e": 93862, - "f": "set_immune", - "g": 5, - "id": 2633932344, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "imh_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ] - ], - "s": "f519", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 2633932344, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n_u", - "ct": 1724679701, - "e": 84410, - "f": "set_cri", - "g": 4, - "id": 2633949204, - "l": true, - "level": 90, - "mainStatBaseValue": 0.12, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "cri", - 0.12, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "s": "a331", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitChancePercent", - "value": 60 - }, - "substats": [ - { - "type": "Speed", - "value": 20, - "rolls": 5 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2633949204, - "ingameEquippedId": "undefined" - }, - { - "code": "eot3n_u4", - "ct": 1724681007, - "e": 93803, - "f": "set_vampire", - "g": 5, - "id": 2633982774, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_neck_m4", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0 - ], - [ - "res", - 0.09 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0 - ], - [ - "def_rate", - 0.08, - "c", - "change2_def_rate_2_1" - ] - ], - "s": "a9c3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 2, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 2633982774, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1724726609, - "e": 93863, - "f": "set_speed", - "g": 5, - "id": 2634795450, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "acc", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "p": 4647526, - "s": "cc4e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 30, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 2634795450, - "ingameEquippedId": "4647526" - }, - { - "code": "ecw6n_u", - "ct": 1724727095, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2634807446, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 0 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "max_hp", - 177, - "c", - "change2_max_hp_1_1" - ] - ], - "p": 620426700, - "s": "9c62", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Health", - "value": 233, - "rolls": 1, - "modified": true - } - ], - "ingameId": 2634807446, - "ingameEquippedId": "620426700" - }, - { - "code": "eal85b_u", - "ct": 1724728260, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2634834095, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "def", - 29 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp", - 0 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp", - 0 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "def", - 9, - "u" - ], - [ - "acc", - 0.07, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp", - 112, - "u" - ], - [ - "max_hp", - 323, - "c", - "change2_max_hp_2_2" - ] - ], - "p": 403476926, - "s": "43e9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "Defense", - "value": 38, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 37, - "rolls": 5 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Health", - "value": 435, - "rolls": 2, - "modified": true - } - ], - "ingameId": 2634834095, - "ingameEquippedId": "403476926" - }, - { - "code": "eiu32n", - "ct": 1724730510, - "e": 93862, - "f": "set_torrent", - "g": 5, - "id": 2634885294, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu32_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.03 - ] - ], - "s": "d140", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2634885294, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85r_u", - "ct": 1724736483, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2635023678, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ] - ], - "s": "780c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - } - ], - "ingameId": 2635023678, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85r_u", - "ct": 1724737524, - "e": 93863, - "f": "set_speed", - "g": 5, - "id": 2635045827, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 6844892, - "s": "b380", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 2635045827, - "ingameEquippedId": "6844892" - }, - { - "code": "eiu21a", - "ct": 1724749883, - "e": 12359, - "f": "set_vampire", - "g": 5, - "id": 2635285328, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu21_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.05 - ] - ], - "s": "fb88", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2635285328, - "ingameEquippedId": "undefined" - }, - { - "code": "eih6w", - "ct": 1724749927, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2635286170, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "imh_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.05 - ] - ], - "p": 445022861, - "s": "f0ec", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 2635286170, - "ingameEquippedId": "445022861" - }, - { - "code": "eah17w", - "ct": 1724812999, - "e": 93861, - "f": "set_max_hp", - "g": 5, - "id": 2636470290, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah17_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ] - ], - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2636470290, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6a_u", - "ct": 1724836561, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2636942538, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "max_hp", - 202 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "s": "60a9", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Health", - "value": 258, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 21, - "rolls": 4 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - } - ], - "ingameId": 2636942538, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu42h", - "ct": 1725005436, - "e": 7695, - "f": "set_coop", - "g": 5, - "id": 2640767308, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu42_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.09 - ] - ], - "s": "4932", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "UnitySet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2640767308, - "ingameEquippedId": "undefined" - }, - { - "code": "ela10n", - "ct": 1725439613, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2651059268, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "la10_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.09 - ] - ], - "p": 736028830, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 37, - "rolls": 5 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2651059268, - "ingameEquippedId": "736028830" - }, - { - "code": "ela10b", - "ct": 1725507245, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2652931540, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "la10_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ] - ], - "p": 306770592, - "s": "a67e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2652931540, - "ingameEquippedId": "306770592" - }, - { - "code": "ecw6n_u", - "ct": 1725603875, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2656306221, - "l": true, - "level": 90, - "mainStatBaseValue": 0.12, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "cri", - 0.12, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "def", - 31 - ], - [ - "def", - 29 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "def", - 18, - "u" - ] - ], - "s": "7906", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitChancePercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Defense", - "value": 78, - "rolls": 2 - } - ], - "ingameId": 2656306221, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6w_u", - "ct": 1725605008, - "e": 93805, - "f": "set_penetrate", - "g": 5, - "id": 2656357198, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "p": 568417281, - "s": "e5ea", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 3 - } - ], - "ingameId": 2656357198, - "ingameEquippedId": "568417281" - }, - { - "code": "ela10a", - "ct": 1725636483, - "e": 93862, - "f": "set_cri_dmg", - "g": 5, - "id": 2657825562, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "la10_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 18, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2657825562, - "ingameEquippedId": "undefined" - }, - { - "code": "ela10w", - "ct": 1725695323, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2659693589, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "la10_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ] - ], - "p": 28398305, - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 24, - "rolls": 3 - } - ], - "ingameId": 2659693589, - "ingameEquippedId": "28398305" - }, - { - "code": "ela10r", - "ct": 1725848392, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2666109978, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la10_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ] - ], - "p": 640588979, - "s": "fc3e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 25, - "rolls": 4 - } - ], - "ingameId": 2666109978, - "ingameEquippedId": "640588979" - }, - { - "code": "esh2_w", - "ct": 1726127600, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2675663243, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "esh2_weapon_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.05 - ] - ], - "p": 434015426, - "s": "c897", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 15, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2675663243, - "ingameEquippedId": "434015426" - }, - { - "code": "esh2_h", - "ct": 1726127614, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2675665113, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "esh2_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.05 - ] - ], - "p": 461351155, - "s": "60f5", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 15, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2675665113, - "ingameEquippedId": "461351155" - }, - { - "code": "ecq6a_u", - "ct": 1726129494, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2675911892, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "426e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - } - ], - "ingameId": 2675911892, - "ingameEquippedId": "undefined" - }, - { - "code": "ela10h", - "ct": 1726146915, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2677739007, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "la10_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "s": "cdc8", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2677739007, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6a", - "ct": 1726184072, - "f": "set_torrent", - "g": 5, - "id": 2679949564, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp", - 162 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "4750", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Health", - "value": 162, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2679949564, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r_u", - "ct": 1726194389, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2680882753, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp", - 198 - ], - [ - "res", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "max_hp", - 199 - ], - [ - "max_hp", - 202 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "max_hp", - 168, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "p": 490684210, - "s": "bb82", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Health", - "value": 767, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 2680882753, - "ingameEquippedId": "490684210" - }, - { - "code": "ecd6b_u", - "ct": 1726194514, - "e": 93862, - "f": "set_penetrate", - "g": 5, - "id": 2680893341, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp", - 175 - ], - [ - "att_rate", - 0 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp", - 178 - ], - [ - "max_hp", - 179 - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp", - 168, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.07, - "c", - "change2_att_rate_2_1" - ] - ], - "p": 591089796, - "s": "d017", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Health", - "value": 700, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 10, - "rolls": 2, - "modified": true - } - ], - "ingameId": 2680893341, - "ingameEquippedId": "591089796" - }, - { - "code": "ecb6h_u", - "ct": 1726194873, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2680923640, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "res", - 0.08, - "c" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "s": "90a4", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1, - "modified": true - }, - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 2680923640, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1726196318, - "e": 93803, - "f": "set_speed", - "g": 5, - "id": 2681045515, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 568417281, - "s": "c218", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 26, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2681045515, - "ingameEquippedId": "568417281" - }, - { - "code": "ecs17h", - "ct": 1726214399, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2682312400, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "cs17_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ] - ], - "p": 279573776, - "s": "4008", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2682312400, - "ingameEquippedId": "279573776" - }, - { - "code": "ecd6w_u", - "ct": 1726283282, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2686636878, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "res", - 0.07, - "u" - ] - ], - "s": "de89", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 39, - "rolls": 5 - } - ], - "ingameId": 2686636878, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1726313462, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2688489404, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "def_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "p": 323638178, - "s": "f2e6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2688489404, - "ingameEquippedId": "323638178" - }, - { - "code": "ecw6r_u", - "ct": 1726313474, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2688490204, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "att", - 38 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "att", - 43 - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "att", - 22, - "u" - ] - ], - "p": 326831592, - "s": "c95b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "Attack", - "value": 103, - "rolls": 2 - } - ], - "ingameId": 2688490204, - "ingameEquippedId": "326831592" - }, - { - "code": "ecw6a", - "ct": 1726313506, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2688491984, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp", - 195 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp", - 169 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp", - 158 - ], - [ - "acc", - 0.05 - ] - ], - "s": "32c5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 3 - }, - { - "type": "Health", - "value": 522, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2688491984, - "ingameEquippedId": "undefined" - }, - { - "code": "ess15r", - "ct": 1726314517, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2688553281, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "ss15_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.05 - ] - ], - "s": "67c1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 26, - "rolls": 5 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 2688553281, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6b_u", - "ct": 1726319020, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2688850767, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.08, - "c", - "change2_max_hp_rate_1_2" - ] - ], - "p": 566472035, - "s": "a1d8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 32, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2688850767, - "ingameEquippedId": "566472035" - }, - { - "code": "edd6b", - "ct": 1726329177, - "f": "set_torrent", - "g": 5, - "id": 2689550756, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "edw6_boot_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ] - ], - "s": "6b31", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2689550756, - "ingameEquippedId": "undefined" - }, - { - "code": "esh2_a", - "ct": 1726367875, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2692206689, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "esh2_armor_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "p": 704271358, - "s": "6257", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2692206689, - "ingameEquippedId": "704271358" - }, - { - "code": "ecw6n", - "ct": 1726378990, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2693476479, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.03 - ] - ], - "s": "3843", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 26, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 2 - } - ], - "ingameId": 2693476479, - "ingameEquippedId": "undefined" - }, - { - "code": "edb6h", - "ct": 1726386511, - "e": 82086, - "f": "set_res", - "g": 5, - "id": 2694238022, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "edw6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ] - ], - "s": "98bf", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 4 - } - ], - "ingameId": 2694238022, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6h_u", - "ct": 1726389383, - "e": 93803, - "f": "set_res", - "g": 5, - "id": 2694514807, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "5daf", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 2694514807, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a", - "ct": 1726390271, - "e": 82085, - "f": "set_res", - "g": 5, - "id": 2694599816, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp", - 186 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp", - 201 - ], - [ - "max_hp", - 176 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "s": "adac", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Health", - "value": 563, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2694599816, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6h_u", - "ct": 1726391583, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2694723564, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "att", - 45 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att", - 41 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att", - 22, - "u" - ] - ], - "s": "6cf", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 28, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "Attack", - "value": 108, - "rolls": 2 - } - ], - "ingameId": 2694723564, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6n", - "ct": 1726393242, - "e": 3964, - "f": "set_penetrate", - "g": 5, - "id": 2694880757, - "l": true, - "level": 85, - "mainStatBaseValue": 0.11, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.55, - "mg": 1111, - "op": [ - [ - "cri", - 0.11 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "aa3c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "CriticalHitChancePercent", - "value": 55 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1 - } - ], - "ingameId": 2694880757, - "ingameEquippedId": "undefined" - }, - { - "code": "esh2_b", - "ct": 1726456289, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2699991803, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "esh2_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.08 - ] - ], - "p": 738614105, - "s": "a7b3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2699991803, - "ingameEquippedId": "738614105" - }, - { - "code": "ecw6w", - "ct": 1726480262, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2702530260, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "att_rate", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.05 - ], - [ - "res", - 0.06 - ] - ], - "s": "bbbc", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 10, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - } - ], - "ingameId": 2702530260, - "ingameEquippedId": "undefined" - }, - { - "code": "esh2_r", - "ct": 1726709847, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2718024954, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "esh2_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "p": 738614105, - "s": "850", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2718024954, - "ingameEquippedId": "738614105" - }, - { - "code": "ecw6w_u", - "ct": 1726710104, - "e": 84469, - "f": "set_speed", - "g": 4, - "id": 2718044032, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "p": 649028156, - "s": "9d4d", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2718044032, - "ingameEquippedId": "649028156" - }, - { - "code": "esh2_n", - "ct": 1726710107, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2718044295, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "esh2_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ] - ], - "s": "3b5", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 4 - } - ], - "ingameId": 2718044295, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a", - "ct": 1726710492, - "e": 73828, - "f": "set_res", - "g": 4, - "id": 2718072924, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.05 - ] - ], - "s": "dda", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2718072924, - "ingameEquippedId": "undefined" - }, - { - "code": "edw6b_u", - "ct": 1726714321, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2718350089, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "65de", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 2718350089, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1726716294, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2718495589, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_2" - ] - ], - "s": "b180", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 20, - "rolls": 4 - } - ], - "ingameId": 2718495589, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1726718102, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2718616445, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ] - ], - "s": "25c6", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 27, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 2718616445, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6h_u", - "ct": 1726718102, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2718616448, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "att_rate", - 0.07, - "c", - "change2_att_rate_1_2" - ] - ], - "p": 11185757, - "s": "2f4b", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 2718616448, - "ingameEquippedId": "11185757" - }, - { - "code": "eiu41w", - "ct": 1726731113, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2719411286, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu41_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.09 - ] - ], - "p": 559859824, - "s": "a293", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 27, - "rolls": 4 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2719411286, - "ingameEquippedId": "559859824" - }, - { - "code": "eiu32h", - "ct": 1726736225, - "f": "set_cri", - "g": 5, - "id": 2719666637, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu32_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "1e45", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2719666637, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6h_u", - "ct": 1726736489, - "e": 93862, - "f": "set_immune", - "g": 5, - "id": 2719679101, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "s": "8891", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 27, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 2719679101, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h", - "ct": 1726737959, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2719749549, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "79a9", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2719749549, - "ingameEquippedId": "undefined" - }, - { - "code": "edd6a", - "ct": 1726795423, - "e": 6704, - "f": "set_torrent", - "g": 5, - "id": 2722631365, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "edw6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.04 - ] - ], - "s": "f796", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2 - } - ], - "ingameId": 2722631365, - "ingameEquippedId": "undefined" - }, - { - "code": "esh2_w", - "ct": 1727019785, - "e": 93803, - "f": "set_penetrate", - "g": 5, - "id": 2740001755, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "esh2_weapon_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.09 - ], - [ - "att_rate", - 0.06 - ] - ], - "p": 704271358, - "s": "47cc", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2740001755, - "ingameEquippedId": "704271358" - }, - { - "code": "ecw6a_u", - "ct": 1727053282, - "e": 93803, - "f": "set_speed", - "g": 5, - "id": 2742107825, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "acc", - 0.07, - "u" - ] - ], - "s": "61b7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 36, - "rolls": 5 - } - ], - "ingameId": 2742107825, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1727056905, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2742433564, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 4, - "u" - ] - ], - "p": 713583798, - "s": "b3f8", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 19, - "rolls": 5 - } - ], - "ingameId": 2742433564, - "ingameEquippedId": "713583798" - }, - { - "code": "ecd6w", - "ct": 1727061158, - "e": 73828, - "f": "set_torrent", - "g": 4, - "id": 2742813770, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.08 - ] - ], - "s": "dd1e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2742813770, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6h", - "ct": 1727061399, - "f": "set_immune", - "g": 5, - "id": 2742835320, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "att", - 41 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.05 - ] - ], - "s": "120f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "Attack", - "value": 41, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2742835320, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6n_u", - "ct": 1727062000, - "e": 84411, - "f": "set_immune", - "g": 4, - "id": 2742885924, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "att", - 38 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "def", - 27 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "def", - 9, - "u" - ] - ], - "s": "71a8", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Attack", - "value": 49, - "rolls": 1 - }, - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "Defense", - "value": 36, - "rolls": 1 - } - ], - "ingameId": 2742885924, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6a_u", - "ct": 1727064990, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2743133933, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "p": 525461035, - "s": "d0c1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - } - ], - "ingameId": 2743133933, - "ingameEquippedId": "525461035" - }, - { - "code": "esh2_h", - "ct": 1727135902, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2747790086, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "esh2_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ] - ], - "s": "c762", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2747790086, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6r_u", - "ct": 1727234411, - "e": 84375, - "f": "set_immune", - "g": 4, - "id": 2753718178, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 713583798, - "s": "5b61", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Heroic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 18, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2753718178, - "ingameEquippedId": "713583798" - }, - { - "code": "ecd6w_u", - "ct": 1727328848, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2757717606, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "417e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 2757717606, - "ingameEquippedId": "undefined" - }, - { - "code": "esh2_a", - "ct": 1727354610, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2759299905, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "esh2_armor_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "s": "19cb", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2759299905, - "ingameEquippedId": "undefined" - }, - { - "code": "edw6h_u", - "ct": 1727449335, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2763713599, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "p": 829105288, - "s": "5003", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 2763713599, - "ingameEquippedId": "829105288" - }, - { - "code": "esh2_b", - "ct": 1727484946, - "e": 93861, - "f": "set_penetrate", - "g": 5, - "id": 2765283125, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "esh2_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.06 - ] - ], - "s": "2b01", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 2765283125, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w_u", - "ct": 1727490726, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2765718636, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ] - ], - "p": 784315107, - "s": "4f9e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 28, - "rolls": 4 - } - ], - "ingameId": 2765718636, - "ingameEquippedId": "784315107" - }, - { - "code": "ecw6a_u", - "ct": 1727514575, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2767325455, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp", - 0 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp", - 0 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "max_hp", - 112, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "max_hp", - 323, - "c", - "change2_max_hp_2_2" - ] - ], - "p": 566472035, - "s": "7e2a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Health", - "value": 435, - "rolls": 2, - "modified": true - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 33, - "rolls": 4 - } - ], - "ingameId": 2767325455, - "ingameEquippedId": "566472035" - }, - { - "code": "eiu12a", - "ct": 1727580903, - "f": "set_scar", - "g": 5, - "id": 2770828016, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu12_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "e32a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2770828016, - "ingameEquippedId": "undefined" - }, - { - "code": "esh2_r", - "ct": 1727701394, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2776372648, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "esh2_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "p": 704271358, - "s": "8a98", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2776372648, - "ingameEquippedId": "704271358" - }, - { - "code": "eiu51r", - "ct": 1727704201, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2776521515, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu51_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "acc", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ] - ], - "p": 412803674, - "s": "6d13", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - } - ], - "ingameId": 2776521515, - "ingameEquippedId": "412803674" - }, - { - "code": "edd6n", - "ct": 1727705256, - "e": 8161, - "f": "set_torrent", - "g": 5, - "id": 2776578064, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "edw6_neck_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ] - ], - "s": "e98f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2776578064, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6h", - "ct": 1727705422, - "e": 17723, - "f": "set_penetrate", - "g": 5, - "id": 2776586425, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "def_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ] - ], - "s": "629c", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 2776586425, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9n", - "ct": 1727749318, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2779416145, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "8a38", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 29, - "rolls": 4 - } - ], - "ingameId": 2779416145, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1727755249, - "f": "set_speed", - "g": 5, - "id": 2780143769, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.04 - ] - ], - "s": "4e0d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2780143769, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1727765164, - "e": 84469, - "f": "set_cri", - "g": 4, - "id": 2781271794, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 583954927, - "s": "c0d2", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 22, - "rolls": 5 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2781271794, - "ingameEquippedId": "583954927" - }, - { - "code": "ecw6n", - "ct": 1727839580, - "e": 7229, - "f": "set_speed", - "g": 5, - "id": 2787291270, - "level": 85, - "mainStatBaseValue": 0.13, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "def", - 34 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "def", - 32 - ] - ], - "p": 313109293, - "s": "524a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "Defense", - "value": 66, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 10, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2787291270, - "ingameEquippedId": "313109293" - }, - { - "code": "edq6a_u", - "ct": 1727846797, - "e": 93861, - "f": "set_immune", - "g": 5, - "id": 2787922297, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "fc64", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 26, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2787922297, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6w_u", - "ct": 1727847366, - "e": 93804, - "f": "set_immune", - "g": 5, - "id": 2787971093, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "93ef", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2787971093, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6n_u", - "ct": 1727847764, - "e": 84375, - "f": "set_immune", - "g": 4, - "id": 2788003768, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "s": "eb0e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 16, - "rolls": 5 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2788003768, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1727848096, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2788030981, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "p": 769932771, - "s": "2b08", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 29, - "rolls": 4 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - } - ], - "ingameId": 2788030981, - "ingameEquippedId": "769932771" - }, - { - "code": "ecw6w", - "ct": 1727848846, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2788092014, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 180 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp", - 200 - ] - ], - "s": "b701", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "Health", - "value": 380, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - } - ], - "ingameId": 2788092014, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6h_u", - "ct": 1727849475, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2788143526, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_1" - ] - ], - "p": 738614105, - "s": "f661", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 19, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "HealthPercent", - "value": 28, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - } - ], - "ingameId": 2788143526, - "ingameEquippedId": "738614105" - }, - { - "code": "esh2_n", - "ct": 1727850630, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2788238042, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "esh2_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "p": 704271358, - "s": "e2cb", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2788238042, - "ingameEquippedId": "704271358" - }, - { - "code": "ecd6n_u", - "ct": 1727868519, - "e": 93862, - "f": "set_penetrate", - "g": 5, - "id": 2789534797, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp", - 189 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp", - 181 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp", - 169 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "max_hp", - 168, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 784315107, - "s": "b536", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Health", - "value": 707, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2789534797, - "ingameEquippedId": "784315107" - }, - { - "code": "ecq6a", - "ct": 1727873979, - "e": 82086, - "f": "set_immune", - "g": 5, - "id": 2789937479, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "s": "b93", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - } - ], - "ingameId": 2789937479, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n_u", - "ct": 1727875446, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2790054639, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_neck_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp", - 151 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 56, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "p": 649028156, - "s": "4cd6", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Health", - "value": 207, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 17, - "rolls": 5 - }, - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2790054639, - "ingameEquippedId": "649028156" - }, - { - "code": "ecq6w_u", - "ct": 1727875720, - "e": 93805, - "f": "set_immune", - "g": 5, - "id": 2790077347, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 690904230, - "s": "25b0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2790077347, - "ingameEquippedId": "690904230" - }, - { - "code": "ecw6w_u", - "ct": 1728032289, - "e": 93863, - "f": "set_acc", - "g": 5, - "id": 2800092852, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "93fd", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 26, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - } - ], - "ingameId": 2800092852, - "ingameEquippedId": "undefined" - }, - { - "code": "esh2_w", - "ct": 1728044263, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2800777188, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "esh2_weapon_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "p": 892353109, - "s": "bfb7", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 30, - "rolls": 4 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2800777188, - "ingameEquippedId": "892353109" - }, - { - "code": "esh2_h", - "ct": 1728045162, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2800834495, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "esh2_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "p": 412803674, - "s": "19d8", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 25, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2800834495, - "ingameEquippedId": "412803674" - }, - { - "code": "eah21b", - "ct": 1728216109, - "e": 93862, - "f": "set_cri_dmg", - "g": 5, - "id": 2808918406, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah21_boot_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ] - ], - "p": 640588979, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 2808918406, - "ingameEquippedId": "640588979" - }, - { - "code": "edq6a_u", - "ct": 1728218342, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2809025952, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "s": "6011", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 27, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 2809025952, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1728281646, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2811860719, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 6885517, - "s": "5256", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 27, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 2811860719, - "ingameEquippedId": "6885517" - }, - { - "code": "esh2_a", - "ct": 1728430729, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2818037837, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "esh2_armor_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 4 - ] - ], - "p": 354206748, - "s": "2c6b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2818037837, - "ingameEquippedId": "354206748" - }, - { - "code": "ecg6r_u", - "ct": 1728437115, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2818365284, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "p": 326928979, - "s": "9667", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 2818365284, - "ingameEquippedId": "326928979" - }, - { - "code": "esh2_b", - "ct": 1728516165, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2821437906, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "esh2_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ] - ], - "p": 781837305, - "s": "c034", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2821437906, - "ingameEquippedId": "781837305" - }, - { - "code": "ecd6h_u", - "ct": 1728565154, - "e": 93862, - "f": "set_penetrate", - "g": 5, - "id": 2824899877, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "4bfa", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 2824899877, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6n", - "ct": 1728565775, - "e": 82031, - "f": "set_torrent", - "g": 5, - "id": 2824952545, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.06 - ] - ], - "s": "4598", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 24, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 2824952545, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6a_u", - "ct": 1728565890, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2824962390, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "2cb5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 2824962390, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6a_u", - "ct": 1728566307, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2824998894, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.07, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.08, - "c", - "change2_max_hp_rate_1_2" - ] - ], - "p": 893757497, - "s": "79dd", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 38, - "rolls": 5 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2824998894, - "ingameEquippedId": "893757497" - }, - { - "code": "edg6n_u", - "ct": 1728609377, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2827188730, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "acc", - 0.05, - "u" - ] - ], - "s": "359e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 32, - "rolls": 4 - } - ], - "ingameId": 2827188730, - "ingameEquippedId": "undefined" - }, - { - "code": "ecl24r", - "ct": 1728609529, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2827197935, - "l": true, - "level": 0, - "mg": 1111, - "name": "Unknown", - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 1 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "p": 795195383, - "s": "7f65", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 0 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 2827197935, - "ingameEquippedId": "795195383" - }, - { - "code": "ecg6r_u", - "ct": 1728610221, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2827241316, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp", - 193 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp", - 195 - ], - [ - "acc", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "p": 894623419, - "s": "e6a3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Health", - "value": 500, - "rolls": 2 - } - ], - "ingameId": 2827241316, - "ingameEquippedId": "894623419" - }, - { - "code": "edw6r_u", - "ct": 1728610816, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 2827277223, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 306770592, - "s": "51df", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 27, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 2827277223, - "ingameEquippedId": "306770592" - }, - { - "code": "ecw6a_u", - "ct": 1728635548, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2828581943, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 6844892, - "s": "3524", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 26, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 2 - } - ], - "ingameId": 2828581943, - "ingameEquippedId": "6844892" - }, - { - "code": "esh2_r", - "ct": 1728637605, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2828680058, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "esh2_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ] - ], - "p": 781837305, - "s": "30ec", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 25, - "rolls": 4 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2828680058, - "ingameEquippedId": "781837305" - }, - { - "code": "esh2_n", - "ct": 1728637606, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2828680059, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "esh2_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ] - ], - "p": 326928979, - "s": "5466", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 25, - "rolls": 4 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2828680059, - "ingameEquippedId": "326928979" - }, - { - "code": "ecw6a_u", - "ct": 1728703904, - "e": 84411, - "f": "set_speed", - "g": 4, - "id": 2832195210, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "p": 897188455, - "s": "4f03", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 21, - "rolls": 5 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2832195210, - "ingameEquippedId": "897188455" - }, - { - "code": "ecg6r_u", - "ct": 1728738185, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2834678494, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "p": 830235768, - "s": "710a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 2834678494, - "ingameEquippedId": "830235768" - }, - { - "code": "ecd6w", - "ct": 1728738295, - "e": 12476, - "f": "set_penetrate", - "g": 5, - "id": 2834687413, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ] - ], - "s": "61a1", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2834687413, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6n_u", - "ct": 1728790459, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2837773180, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "p": 354206748, - "s": "5e77", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2837773180, - "ingameEquippedId": "354206748" - }, - { - "code": "edd6h", - "ct": 1728792784, - "f": "set_penetrate", - "g": 5, - "id": 2837962220, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "edw6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.08 - ] - ], - "s": "ee19", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2837962220, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a", - "ct": 1728794401, - "e": 56142, - "f": "set_max_hp", - "g": 5, - "id": 2838096063, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp", - 182 - ], - [ - "max_hp", - 199 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp", - 168 - ], - [ - "speed", - 4 - ] - ], - "s": "aea4", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 12, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Health", - "value": 549, - "rolls": 3 - } - ], - "ingameId": 2838096063, - "ingameEquippedId": "undefined" - }, - { - "code": "edq6a_u", - "ct": 1728800631, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2838573453, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "e057", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 26, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 19, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2838573453, - "ingameEquippedId": "undefined" - }, - { - "code": "esh2_w", - "ct": 1729003675, - "e": 93861, - "f": "set_speed", - "g": 5, - "id": 2847469456, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "esh2_weapon_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 3 - ] - ], - "s": "2df0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 2847469456, - "ingameEquippedId": "undefined" - }, - { - "code": "edw6h_u", - "ct": 1729065540, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2849715538, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "s": "ccbf", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2849715538, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6w_u", - "ct": 1729066577, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2849753468, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "8db9", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 2849753468, - "ingameEquippedId": "undefined" - }, - { - "code": "esh2_h", - "ct": 1729081917, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2850363854, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "esh2_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ] - ], - "p": 793619248, - "s": "9522", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2850363854, - "ingameEquippedId": "793619248" - }, - { - "code": "eal85b_u", - "ct": 1729085889, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 2850566307, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "d5f4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 2850566307, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1729178994, - "f": "set_acc", - "g": 5, - "id": 2854743652, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_ring_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "p": 207190343, - "s": "2044", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2854743652, - "ingameEquippedId": "207190343" - }, - { - "code": "ecs13w", - "ct": 1729249784, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2857373510, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "cs13_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ] - ], - "p": 490684210, - "s": "438f", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 2857373510, - "ingameEquippedId": "490684210" - }, - { - "code": "eal85r_u", - "ct": 1729252222, - "e": 93803, - "f": "set_cri_dmg", - "g": 5, - "id": 2857485116, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri", - 0.06, - "c", - "change2_cri_2_2" - ] - ], - "s": "2aa0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 25, - "rolls": 3 - } - ], - "ingameId": 2857485116, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1729253068, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2857525900, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0 - ], - [ - "cri", - 0 - ], - [ - "cri", - 0 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri", - 0.09, - "c", - "change2_cri_4_1" - ] - ], - "p": 784315107, - "s": "189b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 4, - "modified": true - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2857525900, - "ingameEquippedId": "784315107" - }, - { - "code": "ecq6a_u", - "ct": 1729259791, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2857870806, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "s": "5ef8", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 14, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2857870806, - "ingameEquippedId": "undefined" - }, - { - "code": "esh2_a", - "ct": 1729267806, - "e": 93861, - "f": "set_speed", - "g": 5, - "id": 2858331716, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "esh2_armor_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.09 - ] - ], - "s": "d552", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 22, - "rolls": 4 - } - ], - "ingameId": 2858331716, - "ingameEquippedId": "undefined" - }, - { - "code": "esh2_b", - "ct": 1729267806, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2858331717, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "esh2_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.07 - ] - ], - "p": 350226992, - "s": "eea9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2858331717, - "ingameEquippedId": "350226992" - }, - { - "code": "edq6r_u", - "ct": 1729314695, - "e": 93862, - "f": "set_immune", - "g": 5, - "id": 2860741627, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ] - ], - "s": "711d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 17, - "rolls": 4 - } - ], - "ingameId": 2860741627, - "ingameEquippedId": "undefined" - }, - { - "code": "ezl2_b", - "ct": 1729325449, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2861546987, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ezl2_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 1 - ], - [ - "att_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ] - ], - "p": 596366779, - "s": "38b3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 24, - "rolls": 3 - } - ], - "ingameId": 2861546987, - "ingameEquippedId": "596366779" - }, - { - "code": "ecq6a_u", - "ct": 1729401683, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2866159055, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 738614105, - "s": "66f1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 5, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2866159055, - "ingameEquippedId": "738614105" - }, - { - "code": "ezl2_n", - "ct": 1729414176, - "e": 93804, - "f": "set_torrent", - "g": 5, - "id": 2867089835, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ezl2_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.07 - ] - ], - "p": 890790459, - "s": "a7d7", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 2867089835, - "ingameEquippedId": "890790459" - }, - { - "code": "edg6w_u", - "ct": 1729512730, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2872134014, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 769932771, - "s": "d47d", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2872134014, - "ingameEquippedId": "769932771" - }, - { - "code": "esh2_r", - "ct": 1729612059, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2876701657, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "esh2_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ] - ], - "p": 583954927, - "s": "67e3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2876701657, - "ingameEquippedId": "583954927" - }, - { - "code": "esh2_n", - "ct": 1729687213, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 2879432772, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "esh2_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ] - ], - "s": "d227", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 31, - "rolls": 4 - } - ], - "ingameId": 2879432772, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6n_u", - "ct": 1729688054, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2879477753, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "def", - 32 - ], - [ - "def", - 34 - ], - [ - "def", - 30 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "def", - 27, - "u" - ] - ], - "s": "5944", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Defense", - "value": 123, - "rolls": 3 - } - ], - "ingameId": 2879477753, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1729765849, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 2882078797, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "p": 636577158, - "s": "ec24", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 2882078797, - "ingameEquippedId": "636577158" - }, - { - "code": "edd6a_u", - "ct": 1729833710, - "e": 93862, - "f": "set_penetrate", - "g": 5, - "id": 2884841146, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "p": 591089796, - "s": "17a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2884841146, - "ingameEquippedId": "591089796" - }, - { - "code": "ecw6h_u", - "ct": 1729836070, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2884937115, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att_rate", - 0.07, - "c", - "change2_att_rate_1_1" - ] - ], - "s": "6240", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - } - ], - "ingameId": 2884937115, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6w", - "ct": 1729836292, - "e": 73923, - "f": "set_immune", - "g": 4, - "id": 2884944836, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.07 - ] - ], - "s": "f6a9", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2884944836, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6w_u", - "ct": 1729923972, - "e": 93863, - "f": "set_penetrate", - "g": 5, - "id": 2888555024, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ] - ], - "s": "8650", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - }, - { - "type": "AttackPercent", - "value": 35, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2888555024, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6h_u", - "ct": 1729924706, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2888592342, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "def_rate", - 0.08, - "c", - "change2_def_rate_1_2" - ] - ], - "p": 354206748, - "s": "f8c7", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 31, - "rolls": 4 - } - ], - "ingameId": 2888592342, - "ingameEquippedId": "354206748" - }, - { - "code": "ecw6a_u", - "ct": 1729924928, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2888604282, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "def_rate", - 0.06, - "c", - "change2_def_rate_1_1" - ] - ], - "s": "cb2e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - } - ], - "ingameId": 2888604282, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6r_u", - "ct": 1729925999, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2888657346, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_ring_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ] - ], - "p": 897188455, - "s": "aa8a", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 19, - "rolls": 5 - } - ], - "ingameId": 2888657346, - "ingameEquippedId": "897188455" - }, - { - "code": "edw6b_u", - "ct": 1729927171, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2888717109, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "s": "542f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 2888717109, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1729957631, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2890193131, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp", - 163 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp", - 168 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp", - 171 - ], - [ - "max_hp", - 168, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "s": "3d00", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Health", - "value": 670, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 2890193131, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1729999859, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2891750814, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.05, - "u" - ] - ], - "s": "78f4", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 26, - "rolls": 5 - } - ], - "ingameId": 2891750814, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6h_u", - "ct": 1730000169, - "e": 93862, - "f": "set_penetrate", - "g": 5, - "id": 2891769837, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "s": "9d99", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 28, - "rolls": 4 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2891769837, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu31n", - "ct": 1730021478, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 2892903535, - "l": true, - "level": 88, - "mainStatBaseValue": 0.12, - "mainStatId": "iu31_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "s": "f405", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitChancePercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 24, - "rolls": 4 - } - ], - "ingameId": 2892903535, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6b_u", - "ct": 1730025656, - "e": 93861, - "f": "set_max_hp", - "g": 5, - "id": 2893083603, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.1, - "c", - "change2_max_hp_rate_2_2" - ] - ], - "p": 354206748, - "s": "2015", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 2893083603, - "ingameEquippedId": "354206748" - }, - { - "code": "ecd6r_u", - "ct": 1730025773, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2893088949, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "acc", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ] - ], - "s": "8e07", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectivenessPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 31, - "rolls": 4 - } - ], - "ingameId": 2893088949, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6a_u", - "ct": 1730031544, - "e": 93803, - "f": "set_penetrate", - "g": 5, - "id": 2893366288, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 461351155, - "s": "d0f5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 27, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2893366288, - "ingameEquippedId": "461351155" - }, - { - "code": "ecw6a", - "ct": 1730031544, - "e": 73865, - "f": "set_speed", - "g": 4, - "id": 2893366289, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "acc", - 0.06 - ] - ], - "p": 313109293, - "s": "395f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2893366289, - "ingameEquippedId": "313109293" - }, - { - "code": "ecd6w_u", - "ct": 1730032347, - "e": 93805, - "f": "set_penetrate", - "g": 5, - "id": 2893408942, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp", - 189 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ] - ], - "p": 568689715, - "s": "ad53", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "Health", - "value": 245, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 30, - "rolls": 4 - } - ], - "ingameId": 2893408942, - "ingameEquippedId": "568689715" - }, - { - "code": "ecb6a_u", - "ct": 1730102072, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 2896095837, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "s": "e3f7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2896095837, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6r", - "ct": 1730113762, - "e": 82031, - "f": "set_penetrate", - "g": 5, - "id": 2896559962, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "res", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "res", - 0.12 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 165 - ], - [ - "att", - 43 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "att", - 37 - ], - [ - "att", - 44 - ] - ], - "s": "5cd5", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 60 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "Health", - "value": 165, - "rolls": 1 - }, - { - "type": "Attack", - "value": 124, - "rolls": 3 - } - ], - "ingameId": 2896559962, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n", - "ct": 1730218022, - "e": 73828, - "f": "set_cri", - "g": 4, - "id": 2900880233, - "l": true, - "level": 85, - "mainStatBaseValue": 0.13, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ] - ], - "s": "1ee6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 18, - "rolls": 4 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2900880233, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6w", - "ct": 1730252978, - "e": 22970, - "f": "set_penetrate", - "g": 5, - "id": 2901841663, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ] - ], - "s": "ed4f", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 16, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 2901841663, - "ingameEquippedId": "undefined" - }, - { - "code": "edd6b", - "ct": 1730342595, - "f": "set_penetrate", - "g": 5, - "id": 2905127600, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "edw6_boot_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ] - ], - "s": "5203", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2905127600, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h", - "ct": 1730343007, - "f": "set_speed", - "g": 5, - "id": 2905144991, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "res", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "p": 568417281, - "s": "230b", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2905144991, - "ingameEquippedId": "568417281" - }, - { - "code": "eih9n", - "ct": 1730376412, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2908902062, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ] - ], - "p": 99507012, - "s": "162b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 2908902062, - "ingameEquippedId": "99507012" - }, - { - "code": "ecw6h_u", - "ct": 1730376955, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2908946579, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "s": "154f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 30, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2908946579, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1730377070, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2908956268, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.04, - "u" - ] - ], - "s": "f18e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 20, - "rolls": 4 - } - ], - "ingameId": 2908956268, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b", - "ct": 1730387997, - "e": 82031, - "f": "set_penetrate", - "g": 5, - "id": 2909860807, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "al85_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "acc", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "att", - 39 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.07 - ] - ], - "p": 96079743, - "s": "e977", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 26, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 3 - }, - { - "type": "Attack", - "value": 39, - "rolls": 1 - } - ], - "ingameId": 2909860807, - "ingameEquippedId": "96079743" - }, - { - "code": "ecb6r_u", - "ct": 1730388342, - "e": 84375, - "f": "set_res", - "g": 4, - "id": 2909888627, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "acc", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 180 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp", - 176 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp", - 112, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "c028", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Heroic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectivenessPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "Health", - "value": 468, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2909888627, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85r_u", - "ct": 1730388550, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2909905157, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "def_rate", - 0.1, - "c", - "change2_def_rate_2_2" - ] - ], - "p": 784315107, - "s": "466d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 13, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - } - ], - "ingameId": 2909905157, - "ingameEquippedId": "784315107" - }, - { - "code": "ess16w", - "ct": 1730442254, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2912237093, - "l": true, - "level": 78, - "mainStatBaseValue": 95, - "mainStatId": "ss16_weap_m", - "mainStatType": "att", - "mainStatValue": 475, - "mg": 1111, - "op": [ - [ - "att", - 95 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "s": "4587", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 475 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 2912237093, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6a_u", - "ct": 1730618060, - "e": 93803, - "f": "set_penetrate", - "g": 5, - "id": 2919857177, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp", - 195 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ] - ], - "p": 306859366, - "s": "583d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Health", - "value": 251, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 15, - "rolls": 4 - } - ], - "ingameId": 2919857177, - "ingameEquippedId": "306859366" - }, - { - "code": "ecg6r_u", - "ct": 1730619261, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2919913866, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "c04a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 33, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 27, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2919913866, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6w_u", - "ct": 1730639478, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2920804333, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "684d", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 26, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2920804333, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1730641513, - "e": 93863, - "f": "set_speed", - "g": 5, - "id": 2920906372, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ] - ], - "p": 226377978, - "s": "967a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 31, - "rolls": 4 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 2920906372, - "ingameEquippedId": "226377978" - }, - { - "code": "edd6h_u", - "ct": 1730646849, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2921171740, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "63c5", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 33, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - } - ], - "ingameId": 2921171740, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a", - "ct": 1730647322, - "e": 82084, - "f": "set_max_hp", - "g": 5, - "id": 2921193986, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.03 - ] - ], - "s": "9379", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 2921193986, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6h_u", - "ct": 1730725563, - "e": 93803, - "f": "set_immune", - "g": 5, - "id": 2923922512, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "844e", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 2923922512, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6a_u", - "ct": 1730725768, - "e": 93862, - "f": "set_immune", - "g": 5, - "id": 2923932580, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.05, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "s": "3701", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 34, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 2923932580, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6a_u", - "ct": 1730860316, - "e": 93804, - "f": "set_immune", - "g": 5, - "id": 2928905503, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.04 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "s": "cbd1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 26, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 2928905503, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6h_u", - "ct": 1730860974, - "e": 84375, - "f": "set_max_hp", - "g": 4, - "id": 2928939270, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "3371", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2928939270, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1730902335, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2930825312, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ] - ], - "s": "5eff", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 2930825312, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1731564633, - "e": 84375, - "f": "set_acc", - "g": 4, - "id": 2952219767, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "def", - 32 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "def", - 9, - "u" - ] - ], - "p": 649028156, - "s": "c078", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 21, - "rolls": 5 - }, - { - "type": "Defense", - "value": 41, - "rolls": 1 - } - ], - "ingameId": 2952219767, - "ingameEquippedId": "649028156" - }, - { - "code": "eah25w", - "ct": 1731567964, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2952380458, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah25_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "p": 636577158, - "s": "dae3", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 2952380458, - "ingameEquippedId": "636577158" - }, - { - "code": "eah25h", - "ct": 1731743367, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2959319273, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah25_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "a42a", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2959319273, - "ingameEquippedId": "undefined" - }, - { - "code": "eah25a", - "ct": 1732283728, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2976075051, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah25_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.08 - ] - ], - "s": "9cec", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2976075051, - "ingameEquippedId": "undefined" - }, - { - "code": "eah25b", - "ct": 1732698166, - "e": 93862, - "f": "set_res", - "g": 5, - "id": 2987909286, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah25_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.07 - ] - ], - "s": "9e88", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 2987909286, - "ingameEquippedId": "undefined" - }, - { - "code": "eah25r", - "ct": 1732859569, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2992021256, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah25_ring_m1", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.09 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ] - ], - "s": "fa20", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 30, - "rolls": 4 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2992021256, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu12b", - "ct": 1732884545, - "f": "set_shield", - "g": 5, - "id": 2992817612, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "iu12_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ] - ], - "s": "e4dd", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ProtectionSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2992817612, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9n", - "ct": 1732950790, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2994929770, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.06 - ] - ], - "p": 795195383, - "s": "5237", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 19, - "rolls": 4 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 2994929770, - "ingameEquippedId": "795195383" - }, - { - "code": "ecw6h", - "ct": 1733031623, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2997684519, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "p": 313109293, - "s": "b5e7", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 2 - } - ], - "ingameId": 2997684519, - "ingameEquippedId": "313109293" - }, - { - "code": "ecw6w_u", - "ct": 1733034826, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2997826071, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "p": 323638178, - "s": "3657", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2997826071, - "ingameEquippedId": "323638178" - }, - { - "code": "eah25n", - "ct": 1733202530, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 3003626806, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah25_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.05 - ] - ], - "p": 28398305, - "s": "cb19", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 3003626806, - "ingameEquippedId": "28398305" - }, - { - "code": "ecw6w", - "ct": 1733453611, - "f": "set_speed", - "g": 5, - "id": 3009780724, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "att_rate", - 0.06 - ], - [ - "acc", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "p": 313109293, - "s": "cf58", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3009780724, - "ingameEquippedId": "313109293" - }, - { - "code": "ecq6a_u", - "ct": 1733453670, - "e": 84375, - "f": "set_immune", - "g": 4, - "id": 3009782638, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "s": "1be3", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 17, - "rolls": 5 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3009782638, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1733454311, - "f": "set_speed", - "g": 5, - "id": 3009803071, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "def", - 35 - ] - ], - "p": 568417281, - "s": "89a3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Defense", - "value": 35, - "rolls": 1 - } - ], - "ingameId": 3009803071, - "ingameEquippedId": "568417281" - }, - { - "code": "ecg6n_u", - "ct": 1733454790, - "e": 84375, - "f": "set_max_hp", - "g": 4, - "id": 3009817004, - "l": true, - "level": 90, - "mainStatBaseValue": 0.12, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "cri", - 0.12, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "18e2", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitChancePercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 18, - "rolls": 5 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 3009817004, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6w_u", - "ct": 1733455486, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3009837190, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 829105288, - "s": "8daa", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 25, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 3009837190, - "ingameEquippedId": "829105288" - }, - { - "code": "edg6w_u", - "ct": 1733464746, - "e": 93862, - "f": "set_max_hp", - "g": 5, - "id": 3010108417, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 781837305, - "s": "fb3b", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 29, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 2 - } - ], - "ingameId": 3010108417, - "ingameEquippedId": "781837305" - }, - { - "code": "ecd6a_u", - "ct": 1733645493, - "e": 93805, - "f": "set_torrent", - "g": 5, - "id": 3014591877, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.06, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ] - ], - "p": 494187001, - "s": "33c5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 34, - "rolls": 5 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - } - ], - "ingameId": 3014591877, - "ingameEquippedId": "494187001" - }, - { - "code": "ecw6a", - "ct": 1733647059, - "e": 82086, - "f": "set_speed", - "g": 5, - "id": 3014632987, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "7398", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 3014632987, - "ingameEquippedId": "undefined" - }, - { - "code": "edg6r_u", - "ct": 1733655484, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3014865229, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "p": 354206748, - "s": "efef", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 3014865229, - "ingameEquippedId": "354206748" - }, - { - "code": "eal85b_u", - "ct": 1733722137, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3016467392, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp", - 192 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "acc", - 0.05, - "u" - ] - ], - "s": "5fa1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Health", - "value": 248, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 27, - "rolls": 4 - } - ], - "ingameId": 3016467392, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1733722153, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 3016467781, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "s": "6bcd", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 3016467781, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6a_u", - "ct": 1733722816, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 3016485045, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ] - ], - "p": 781837305, - "s": "4ab1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 29, - "rolls": 4 - } - ], - "ingameId": 3016485045, - "ingameEquippedId": "781837305" - }, - { - "code": "edq6h_u", - "ct": 1733793249, - "e": 93803, - "f": "set_immune", - "g": 5, - "id": 3018034125, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "p": 798777729, - "s": "3649", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 26, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 25, - "rolls": 3 - } - ], - "ingameId": 3018034125, - "ingameEquippedId": "798777729" - }, - { - "code": "ela11n", - "ct": 1733799304, - "e": 93750, - "f": "set_def", - "g": 5, - "id": 3018188598, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la11_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 3 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "DefenseSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 34, - "rolls": 4 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 3018188598, - "ingameEquippedId": "undefined" - }, - { - "code": "edw6r", - "ct": 1733885736, - "f": "set_speed", - "g": 5, - "id": 3020008154, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "edw6_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.05 - ] - ], - "s": "dd13", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 3020008154, - "ingameEquippedId": "undefined" - }, - { - "code": "ela11b", - "ct": 1733985253, - "e": 93750, - "f": "set_def", - "g": 5, - "id": 3022748232, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la11_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.09 - ] - ], - "p": 604874070, - "s": "87ba", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DefenseSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 25, - "rolls": 3 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 3022748232, - "ingameEquippedId": "604874070" - }, - { - "code": "ela11w", - "ct": 1733986660, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3022819464, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "la11_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.09 - ] - ], - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 3022819464, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a_u", - "ct": 1734064408, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3025572911, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "c28b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 17, - "rolls": 5 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3025572911, - "ingameEquippedId": "undefined" - }, - { - "code": "ela11r", - "ct": 1734354105, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3034403750, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la11_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ] - ], - "p": 799495489, - "s": "a5db", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 3034403750, - "ingameEquippedId": "799495489" - }, - { - "code": "ela11a", - "ct": 1734354119, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3034404358, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "la11_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ] - ], - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 3034404358, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6w_u", - "ct": 1734413300, - "e": 93862, - "f": "set_max_hp", - "g": 5, - "id": 3036014604, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "p": 604874070, - "s": "8309", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - } - ], - "ingameId": 3036014604, - "ingameEquippedId": "604874070" - }, - { - "code": "edw6b_u", - "ct": 1734504623, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3038579662, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0 - ], - [ - "max_hp_rate", - 0 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.14, - "c", - "change2_max_hp_rate_3_1" - ] - ], - "p": 620426700, - "s": "2ca6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 3, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 3038579662, - "ingameEquippedId": "620426700" - }, - { - "code": "ecd6n", - "ct": 1734505606, - "f": "set_torrent", - "g": 5, - "id": 3038608646, - "level": 85, - "mainStatBaseValue": 0.11, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.55, - "mg": 1111, - "op": [ - [ - "cri", - 0.11 - ], - [ - "res", - 0.07 - ], - [ - "att", - 35 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ] - ], - "s": "59af", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "CriticalHitChancePercent", - "value": 55 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Attack", - "value": 35, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3038608646, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a_u", - "ct": 1734506997, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3038648278, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "s": "cd59", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - } - ], - "ingameId": 3038648278, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6w_u", - "ct": 1734507251, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3038655513, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "s": "2329", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 3038655513, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1734525497, - "e": 93921, - "f": "set_speed", - "g": 5, - "id": 3039251103, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "p": 596366779, - "s": "924d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - } - ], - "ingameId": 3039251103, - "ingameEquippedId": "596366779" - }, - { - "code": "ela11h", - "ct": 1734656339, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3041542218, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "la11_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.09 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "p": 799495489, - "s": "4842", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 32, - "rolls": 4 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 3041542218, - "ingameEquippedId": "799495489" - }, - { - "code": "ecw6h", - "ct": 1734699359, - "e": 28217, - "f": "set_speed", - "g": 5, - "id": 3042345319, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ] - ], - "p": 207190343, - "s": "d01", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 3042345319, - "ingameEquippedId": "207190343" - }, - { - "code": "ecw6w_u", - "ct": 1734699687, - "e": 93863, - "f": "set_speed", - "g": 5, - "id": 3042353591, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "res", - 0.04, - "u" - ] - ], - "s": "7d28", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 26, - "rolls": 3 - } - ], - "ingameId": 3042353591, - "ingameEquippedId": "undefined" - }, - { - "code": "edg6n", - "ct": 1734759052, - "f": "set_max_hp", - "g": 5, - "id": 3043275465, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "edw6_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "517f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3043275465, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6w_u", - "ct": 1734760016, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 3043296212, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ] - ], - "s": "aa6c", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 3043296212, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a_u", - "ct": 1734760381, - "e": 93862, - "f": "set_max_hp", - "g": 5, - "id": 3043303519, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "s": "8b32", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - } - ], - "ingameId": 3043303519, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6w_u", - "ct": 1734770403, - "e": 84375, - "f": "set_max_hp", - "g": 4, - "id": 3043504095, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "63b4", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3043504095, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu52h", - "ct": 1735371018, - "e": 93861, - "f": "set_cri_dmg", - "g": 5, - "id": 3057509140, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu52_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "p": 6911147, - "s": "55b6", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 28, - "rolls": 5 - } - ], - "ingameId": 3057509140, - "ingameEquippedId": "6911147" - }, - { - "code": "eiu11a", - "ct": 1735634820, - "e": 93803, - "f": "set_max_hp", - "g": 5, - "id": 3064171046, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu11_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.09 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.08 - ] - ], - "s": "4f8d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 17, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 3064171046, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9n", - "ct": 1735634891, - "e": 93802, - "f": "set_penetrate", - "g": 5, - "id": 3064172375, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ] - ], - "p": 669363338, - "s": "b093", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 26, - "rolls": 3 - } - ], - "ingameId": 3064172375, - "ingameEquippedId": "669363338" - }, - { - "code": "ecw6b_u", - "ct": 1736067498, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3073835153, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "319c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 3073835153, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1736082229, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 3074234480, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "a443", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 32, - "rolls": 5 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3074234480, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1736129971, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3075130467, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "5a8d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 29, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 3075130467, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w", - "ct": 1736595889, - "e": 40460, - "f": "set_speed", - "g": 5, - "id": 3090308165, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.04 - ] - ], - "p": 207190343, - "s": "a97e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 12, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - } - ], - "ingameId": 3090308165, - "ingameEquippedId": "207190343" - }, - { - "code": "ecw6n", - "ct": 1736596826, - "f": "set_speed", - "g": 5, - "id": 3090352829, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_neck_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.05 - ] - ], - "p": 207190343, - "s": "7b4b", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 3090352829, - "ingameEquippedId": "207190343" - }, - { - "code": "ecw6r_u", - "ct": 1736779219, - "e": 93863, - "f": "set_acc", - "g": 5, - "id": 3097347334, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "9b79", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 31, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 3097347334, - "ingameEquippedId": "undefined" - }, - { - "code": "ecs18n", - "ct": 1736951477, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 3102946982, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "cs18_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ] - ], - "p": 445022861, - "s": "5548", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 3102946982, - "ingameEquippedId": "445022861" - }, - { - "code": "ecw6w_u", - "ct": 1737468152, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3113926876, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ] - ], - "s": "5d69", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 21, - "rolls": 5 - } - ], - "ingameId": 3113926876, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu31r", - "ct": 1737887007, - "e": 93862, - "f": "set_scar", - "g": 5, - "id": 3125874171, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu31_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "s": "cab7", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - } - ], - "ingameId": 3125874171, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu41a", - "ct": 1738304926, - "f": "set_counter", - "g": 5, - "id": 3138332158, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu41_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ] - ], - "p": 717223364, - "s": "e26f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3138332158, - "ingameEquippedId": "717223364" - }, - { - "code": "eiu12w", - "ct": 1738309540, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3138489428, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu12_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ] - ], - "s": "94d5", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - } - ], - "ingameId": 3138489428, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1738487563, - "e": 84375, - "f": "set_cri", - "g": 4, - "id": 3143494229, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "att", - 44 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "b332", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Speed", - "value": 18, - "rolls": 5 - }, - { - "type": "Attack", - "value": 55, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3143494229, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1738488130, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3143507304, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "s": "4400", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 3143507304, - "ingameEquippedId": "undefined" - }, - { - "code": "ess13n", - "ct": 1738489811, - "e": 82144, - "f": "set_speed", - "g": 5, - "id": 3143543526, - "l": true, - "level": 78, - "mainStatBaseValue": 0.13, - "mainStatId": "ss13_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ] - ], - "p": 596366779, - "s": "a7cc", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 4 - } - ], - "ingameId": 3143543526, - "ingameEquippedId": "596366779" - }, - { - "code": "ecw6w_u", - "ct": 1738588296, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 3145709811, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_2_1" - ] - ], - "p": 596366779, - "s": "c938", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 9, - "rolls": 2, - "modified": true - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 34, - "rolls": 4 - } - ], - "ingameId": 3145709811, - "ingameEquippedId": "596366779" - }, - { - "code": "ecs14n", - "ct": 1738595169, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3145909262, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "cs14_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.09 - ] - ], - "p": 110838566, - "s": "aa30", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 38, - "rolls": 5 - } - ], - "ingameId": 3145909262, - "ingameEquippedId": "110838566" - }, - { - "code": "eah26w", - "ct": 1738749296, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3148997935, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah26_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.09 - ], - [ - "att_rate", - 0.08 - ] - ], - "p": 742543115, - "s": "12bf", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 3148997935, - "ingameEquippedId": "742543115" - }, - { - "code": "ecw6w_u", - "ct": 1738749541, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 3149002851, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.05, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "s": "3736", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 32, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 26, - "rolls": 3 - } - ], - "ingameId": 3149002851, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1738750478, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 3149023177, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "att", - 43 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att", - 38 - ], - [ - "att", - 37 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att", - 39 - ], - [ - "att", - 34 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "att", - 55, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "3e15", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "Attack", - "value": 246, - "rolls": 5 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3149023177, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85r_u", - "ct": 1738750758, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 3149029539, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "s": "70c0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 3149029539, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1738846919, - "e": 93805, - "f": "set_cri", - "g": 5, - "id": 3152011446, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "p": 613630545, - "s": "fd21", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Speed", - "value": 8, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 23, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3152011446, - "ingameEquippedId": "613630545" - }, - { - "code": "ecd6n_u", - "ct": 1738996873, - "e": 84470, - "f": "set_penetrate", - "g": 4, - "id": 3156124168, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_neck_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp", - 163 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 56, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "fc05", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Health", - "value": 219, - "rolls": 1 - }, - { - "type": "Speed", - "value": 20, - "rolls": 5 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 3156124168, - "ingameEquippedId": "undefined" - }, - { - "code": "eah26h", - "ct": 1739025892, - "e": 93862, - "f": "set_penetrate", - "g": 5, - "id": 3157611187, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah26_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.05 - ] - ], - "p": 704271358, - "s": "3ad2", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 3157611187, - "ingameEquippedId": "704271358" - }, - { - "code": "ecg6h_u", - "ct": 1739027653, - "e": 84411, - "f": "set_max_hp", - "g": 4, - "id": 3157711127, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "att", - 32 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 1 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "s": "e12f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Speed", - "value": 21, - "rolls": 5 - }, - { - "type": "Attack", - "value": 43, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 3157711127, - "ingameEquippedId": "undefined" - }, - { - "code": "ewb1h", - "ct": 1739081066, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 3159488393, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "wb1_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ] - ], - "p": 596366779, - "s": "3eb9", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3159488393, - "ingameEquippedId": "596366779" - }, - { - "code": "ecg6a_u", - "ct": 1739081914, - "e": 84375, - "f": "set_max_hp", - "g": 4, - "id": 3159532319, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "d7d0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 19, - "rolls": 5 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3159532319, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6a_u", - "ct": 1739085716, - "e": 93862, - "f": "set_penetrate", - "g": 5, - "id": 3159728901, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ] - ], - "s": "1e2d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 25, - "rolls": 4 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 3159728901, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6h_u", - "ct": 1739452905, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3168939629, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.08, - "c", - "change2_cri_dmg_2_1" - ] - ], - "s": "8172", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 10, - "rolls": 2, - "modified": true - }, - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 3168939629, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1739457970, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3169174652, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.08 - ] - ], - "s": "b1a5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 32, - "rolls": 4 - } - ], - "ingameId": 3169174652, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r_u", - "ct": 1739706315, - "e": 84471, - "f": "set_speed", - "g": 4, - "id": 3175654151, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_ring_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "def", - 29 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "def", - 9, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 649028156, - "s": "1b74", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Defense", - "value": 38, - "rolls": 1 - }, - { - "type": "Speed", - "value": 18, - "rolls": 5 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3175654151, - "ingameEquippedId": "649028156" - }, - { - "code": "eah26a", - "ct": 1739706589, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3175666068, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah26_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "p": 490684210, - "s": "a09b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 27, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3175666068, - "ingameEquippedId": "490684210" - }, - { - "code": "ecw6w_u", - "ct": 1739707104, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3175688179, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 190 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.05, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp", - 56, - "u" - ] - ], - "p": 898971885, - "s": "4f5f", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 33, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "Health", - "value": 246, - "rolls": 1 - } - ], - "ingameId": 3175688179, - "ingameEquippedId": "898971885" - }, - { - "code": "ecw6n_u", - "ct": 1739944879, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3180299346, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp", - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 56, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp", - 170, - "c", - "change2_max_hp_1_1" - ] - ], - "p": 739641017, - "s": "1aa3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "Health", - "value": 226, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 21, - "rolls": 5 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 3180299346, - "ingameEquippedId": "739641017" - }, - { - "code": "eah26b", - "ct": 1740143390, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3184327459, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah26_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "p": 669363338, - "s": "8d57", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 3184327459, - "ingameEquippedId": "669363338" - }, - { - "code": "eah26r", - "ct": 1740221813, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3186369253, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah26_ring_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.08 - ] - ], - "p": 847822619, - "s": "dd0e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 3186369253, - "ingameEquippedId": "847822619" - }, - { - "code": "ecb6w_u", - "ct": 1740274029, - "e": 93862, - "f": "set_cri_dmg", - "g": 5, - "id": 3187637280, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 461351155, - "s": "8f41", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 3187637280, - "ingameEquippedId": "461351155" - }, - { - "code": "ecg6h_u", - "ct": 1740274953, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3187659883, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 781837305, - "s": "45ed", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 28, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 3187659883, - "ingameEquippedId": "781837305" - }, - { - "code": "ecb6h_u", - "ct": 1740276347, - "e": 93804, - "f": "set_cri_dmg", - "g": 5, - "id": 3187694618, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "a0dc", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 3187694618, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6h_u", - "ct": 1740282191, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3187874031, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "3f69", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 20, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 3187874031, - "ingameEquippedId": "undefined" - }, - { - "code": "ewb1n", - "ct": 1740635250, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3195549081, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "wb1_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "speed", - 5 - ], - [ - "def_rate", - 0.09 - ], - [ - "def", - 40 - ], - [ - "max_hp", - 229 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ] - ], - "p": 218403497, - "s": "f660", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 25, - "rolls": 3 - }, - { - "type": "Defense", - "value": 40, - "rolls": 1 - }, - { - "type": "Health", - "value": 229, - "rolls": 1 - } - ], - "ingameId": 3195549081, - "ingameEquippedId": "218403497" - }, - { - "code": "eal85r_u", - "ct": 1740639600, - "e": 93804, - "f": "set_cri_dmg", - "g": 5, - "id": 3195779873, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ] - ], - "p": 461351155, - "s": "6d8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - } - ], - "ingameId": 3195779873, - "ingameEquippedId": "461351155" - }, - { - "code": "eah26n", - "ct": 1740708259, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3197659888, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ah26_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 5 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ] - ], - "p": 717223364, - "s": "16a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 3197659888, - "ingameEquippedId": "717223364" - }, - { - "code": "ecw6w_u", - "ct": 1740710069, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 3197717735, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 226377978, - "s": "24a6", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 3197717735, - "ingameEquippedId": "226377978" - }, - { - "code": "eiu11b", - "ct": 1740754046, - "e": 93750, - "f": "set_def", - "g": 5, - "id": 3199240802, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu11_boot_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "res", - 0 - ], - [ - "res", - 0.11, - "c", - "change2_res_2_2" - ] - ], - "s": "938", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DefenseSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 11, - "rolls": 2, - "modified": true - } - ], - "ingameId": 3199240802, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a_u", - "ct": 1740829681, - "e": 93805, - "f": "set_max_hp", - "g": 5, - "id": 3201796554, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "res", - 0.05, - "u" - ] - ], - "s": "408a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 26, - "rolls": 4 - } - ], - "ingameId": 3201796554, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6b_u", - "ct": 1740880935, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3203293846, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "42e1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 3203293846, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h", - "ct": 1741015149, - "e": 1865, - "f": "set_acc", - "g": 4, - "id": 3207574523, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "3149", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3207574523, - "ingameEquippedId": "undefined" - }, - { - "code": "ela12w", - "ct": 1742386877, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 3237390039, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "la12_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 3237390039, - "ingameEquippedId": "undefined" - }, - { - "code": "ela12b", - "ct": 1742540715, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 3239610284, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la12_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "p": 559859824, - "s": "fbb2", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 3239610284, - "ingameEquippedId": "559859824" - }, - { - "code": "ela12a", - "ct": 1742544154, - "e": 93803, - "f": "set_counter", - "g": 5, - "id": 3239657261, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "la12_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 20, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3239657261, - "ingameEquippedId": "undefined" - }, - { - "code": "ela12n", - "ct": 1742544157, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 3239657322, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la12_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.09 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.07 - ] - ], - "p": 781837305, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 28, - "rolls": 4 - } - ], - "ingameId": 3239657322, - "ingameEquippedId": "781837305" - }, - { - "code": "ela12r", - "ct": 1742707661, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 3242125320, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la12_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "p": 559859824, - "s": "4fb8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 3242125320, - "ingameEquippedId": "559859824" - }, - { - "code": "ecs19a", - "ct": 1742906483, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 3245041888, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "cs19_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "def_rate", - 0.09 - ], - [ - "cri_dmg", - 0.08 - ] - ], - "p": 640588979, - "s": "3146", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 3245041888, - "ingameEquippedId": "640588979" - }, - { - "code": "ela12h", - "ct": 1743136320, - "e": 93862, - "f": "set_immune", - "g": 5, - "id": 3249190635, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "la12_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 3 - ] - ], - "s": "ba73", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 3249190635, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9n", - "ct": 1743410389, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3257150932, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ] - ], - "p": 847822619, - "s": "a72f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 15, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 3257150932, - "ingameEquippedId": "847822619" - }, - { - "code": "eih6w", - "ct": 1743410398, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3257151092, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "imh_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "8e99", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 3257151092, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu21r", - "ct": 1743410407, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3257151282, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu21_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.09 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ] - ], - "p": 892353109, - "s": "f430", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 3257151282, - "ingameEquippedId": "892353109" - }, - { - "code": "eih9r", - "ct": 1743410569, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 3257155015, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "imh_ring_m11", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "318b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 3257155015, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1744436055, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3280222776, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "att", - 44 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att", - 11, - "u" - ] - ], - "s": "5673", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 29, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Attack", - "value": 55, - "rolls": 1 - } - ], - "ingameId": 3280222776, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6h_u", - "ct": 1744447701, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3280658690, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "431c", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3280658690, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a_u", - "ct": 1744453039, - "e": 93805, - "f": "set_max_hp", - "g": 5, - "id": 3280838468, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "c9b5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 17, - "rolls": 5 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3280838468, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6w_u", - "ct": 1744453982, - "e": 84375, - "f": "set_penetrate", - "g": 4, - "id": 3280870641, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0 - ], - [ - "speed", - 2 - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.08, - "c", - "change2_att_rate_1_2" - ] - ], - "s": "2f4e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 23, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1, - "modified": true - } - ], - "ingameId": 3280870641, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1744454440, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3280887042, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 898971885, - "s": "8d0b", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 25, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 3280887042, - "ingameEquippedId": "898971885" - }, - { - "code": "edd6r_u", - "ct": 1744454954, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3280905233, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "eaf4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 38, - "rolls": 5 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 3280905233, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1744461566, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3281151044, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp", - 163 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp", - 174 - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "s": "e34", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Health", - "value": 449, - "rolls": 2 - } - ], - "ingameId": 3281151044, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1744463749, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3281237276, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "50e7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - } - ], - "ingameId": 3281237276, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6a", - "ct": 1744470774, - "f": "set_penetrate", - "g": 5, - "id": 3281508679, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.05 - ] - ], - "s": "67ff", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 3281508679, - "ingameEquippedId": "undefined" - }, - { - "code": "edw6w_u", - "ct": 1744511327, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3282207730, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 1 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "8b32", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 3282207730, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1744541636, - "e": 93863, - "f": "set_speed", - "g": 5, - "id": 3283232947, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "res", - 0.04, - "u" - ] - ], - "s": "4a2c", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 28, - "rolls": 3 - } - ], - "ingameId": 3283232947, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a_u", - "ct": 1744544387, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3283323107, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "max_hp", - 203, - "c", - "change2_max_hp_1_2" - ] - ], - "p": 604874070, - "s": "828f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "Health", - "value": 259, - "rolls": 1, - "modified": true - }, - { - "type": "DefensePercent", - "value": 31, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 3283323107, - "ingameEquippedId": "604874070" - }, - { - "code": "ecw6w_u", - "ct": 1744546644, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3283401096, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 0 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.07, - "u" - ], - [ - "speed", - 4, - "c", - "change2_speed_2_1" - ] - ], - "s": "4b0d", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 5, - "rolls": 2, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 38, - "rolls": 5 - } - ], - "ingameId": 3283401096, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1744721458, - "e": 93863, - "f": "set_speed", - "g": 5, - "id": 3287564368, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "1001", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 32, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 3287564368, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85n_u", - "ct": 1744979588, - "e": 93863, - "f": "set_counter", - "g": 5, - "id": 3293734850, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 1 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp", - 185 - ], - [ - "res", - 0.08 - ], - [ - "max_hp", - 185 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "p": 559859824, - "s": "83a8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 30, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Health", - "value": 482, - "rolls": 2 - } - ], - "ingameId": 3293734850, - "ingameEquippedId": "559859824" - }, - { - "code": "ecg6r_u", - "ct": 1745042963, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3295211854, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "f9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 3295211854, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6n_u", - "ct": 1745043879, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3295239257, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "max_hp", - 190 - ], - [ - "def_rate", - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp", - 185 - ], - [ - "max_hp", - 200 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp", - 168, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "def_rate", - 0.07, - "c", - "change2_def_rate_1_1" - ] - ], - "p": 769932771, - "s": "5ac4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "Health", - "value": 743, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - } - ], - "ingameId": 3295239257, - "ingameEquippedId": "769932771" - }, - { - "code": "ecw6a_u", - "ct": 1745078235, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3296274104, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.07, - "u" - ] - ], - "p": 769932771, - "s": "be4", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 35, - "rolls": 5 - } - ], - "ingameId": 3296274104, - "ingameEquippedId": "769932771" - }, - { - "code": "ecw6r_u", - "ct": 1745140029, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3297681678, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ] - ], - "s": "9bad", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - } - ], - "ingameId": 3297681678, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a_u", - "ct": 1745143160, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3297773595, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 1 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "s": "4acb", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 22, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 3297773595, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6n_u", - "ct": 1745159196, - "e": 84375, - "f": "set_cri_dmg", - "g": 4, - "id": 3298286939, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "def", - 32 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def", - 9, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 6911147, - "s": "82d1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "Defense", - "value": 41, - "rolls": 1 - }, - { - "type": "Speed", - "value": 17, - "rolls": 5 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 3298286939, - "ingameEquippedId": "6911147" - }, - { - "code": "ecb6a", - "ct": 1745161315, - "e": 73828, - "f": "set_cri_dmg", - "g": 4, - "id": 3298359449, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "p": 6911147, - "s": "c759", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3298359449, - "ingameEquippedId": "6911147" - }, - { - "code": "ecg6n_u", - "ct": 1745162005, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3298381574, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "att", - 44 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 898971885, - "s": "1471", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Speed", - "value": 18, - "rolls": 5 - }, - { - "type": "Attack", - "value": 55, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3298381574, - "ingameEquippedId": "898971885" - }, - { - "code": "ecw6w_u", - "ct": 1745162233, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3298389288, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp", - 191 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ], - [ - "max_hp", - 176 - ], - [ - "max_hp", - 112, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "62f5", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Health", - "value": 479, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 27, - "rolls": 3 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3298389288, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a_u", - "ct": 1745162920, - "e": 93863, - "f": "set_max_hp", - "g": 5, - "id": 3298412804, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp", - 190 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp", - 170 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp", - 112, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 326928979, - "s": "835e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Health", - "value": 472, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 35, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 3298412804, - "ingameEquippedId": "326928979" - }, - { - "code": "ecs15w", - "ct": 1745217248, - "e": 82086, - "f": "set_speed", - "g": 5, - "id": 3299352579, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "cs15_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.06 - ] - ], - "s": "c5c1", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 25, - "rolls": 4 - } - ], - "ingameId": 3299352579, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6w", - "ct": 1745561500, - "e": 73828, - "f": "set_penetrate", - "g": 4, - "id": 3307472020, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.04 - ], - [ - "att_rate", - 0.05 - ] - ], - "s": "d36f", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 3307472020, - "ingameEquippedId": "undefined" - }, - { - "code": "edw6n", - "ct": 1745564587, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3307573915, - "l": true, - "level": 85, - "mainStatBaseValue": 0.13, - "mainStatId": "edw6_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "5bc3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 3307573915, - "ingameEquippedId": "undefined" - }, - { - "code": "edd6r", - "ct": 1745571988, - "e": 82031, - "f": "set_penetrate", - "g": 5, - "id": 3307802759, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "edw6_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ] - ], - "s": "e918", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3307802759, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1745585656, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3308249556, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "s": "def4", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 32, - "rolls": 4 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3308249556, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6r_u", - "ct": 1745587954, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3308343543, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "d38b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 27, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 3308343543, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6a_u", - "ct": 1745662795, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3310481179, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "p": 899521626, - "s": "be27", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3310481179, - "ingameEquippedId": "899521626" - }, - { - "code": "ecw6a_u", - "ct": 1745665326, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3310549559, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp", - 165 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 56, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "s": "5147", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Health", - "value": 221, - "rolls": 1 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 29, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3310549559, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1745756410, - "e": 84375, - "f": "set_cri_dmg", - "g": 4, - "id": 3312815132, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 11185757, - "s": "882e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 3312815132, - "ingameEquippedId": "11185757" - }, - { - "code": "ecw6w_u", - "ct": 1745757844, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 3312859225, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "f5df", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3312859225, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1745757844, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3312859226, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ] - ], - "s": "272f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - } - ], - "ingameId": 3312859226, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1745757844, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 3312859227, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "516f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 3312859227, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1745757844, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3312859228, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ] - ], - "p": 6844892, - "s": "92c0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 24, - "rolls": 4 - } - ], - "ingameId": 3312859228, - "ingameEquippedId": "6844892" - }, - { - "code": "ecw6n", - "ct": 1745757844, - "e": 3964, - "f": "set_acc", - "g": 5, - "id": 3312859229, - "l": true, - "level": 85, - "mainStatBaseValue": 0.13, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.05 - ] - ], - "s": "3805", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 3312859229, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r_u", - "ct": 1745757844, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 3312859230, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "acc", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.07, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "s": "4b9a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectivenessPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 38, - "rolls": 5 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 3312859230, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1745761131, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 3312964038, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ] - ], - "s": "52ff", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 25, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 3312964038, - "ingameEquippedId": "undefined" - }, - { - "code": "elre1b", - "ct": 1745851926, - "f": "set_att", - "g": 5, - "id": 3328057157, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "lre1_boot_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "e834", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3328057157, - "ingameEquippedId": "undefined" - }, - { - "code": "elre3b", - "ct": 1745851981, - "e": 82031, - "f": "set_res", - "g": 5, - "id": 3328073541, - "level": 78, - "mainStatBaseValue": 8, - "mainStatId": "lre3_boot_m1", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "3fbf", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 40 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 3328073541, - "ingameEquippedId": "undefined" - }, - { - "code": "elre3w", - "ct": 1745851994, - "e": 82086, - "f": "set_immune", - "g": 5, - "id": 3328077706, - "l": true, - "level": 78, - "mainStatBaseValue": 95, - "mainStatId": "lre3_weap_m1", - "mainStatType": "att", - "mainStatValue": 475, - "mg": 1111, - "op": [ - [ - "att", - 95 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.06 - ] - ], - "s": "b6df", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 475 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3328077706, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9n", - "ct": 1745852040, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3328091599, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ] - ], - "p": 899521626, - "s": "139a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 26, - "rolls": 3 - } - ], - "ingameId": 3328091599, - "ingameEquippedId": "899521626" - }, - { - "code": "eih6w", - "ct": 1745852043, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3328092852, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "imh_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.06 - ] - ], - "s": "bcaa", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 3328092852, - "ingameEquippedId": "undefined" - }, - { - "code": "eah27w", - "ct": 1745927173, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3344763264, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah27_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ] - ], - "p": 799495489, - "s": "c804", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 3344763264, - "ingameEquippedId": "799495489" - }, - { - "code": "eal85r_u", - "ct": 1746073203, - "e": 93863, - "f": "set_torrent", - "g": 5, - "id": 3377491678, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 1 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att", - 41 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "att", - 35 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att", - 22, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.05, - "u" - ] - ], - "p": 890790459, - "s": "737b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Attack", - "value": 98, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 26, - "rolls": 5 - } - ], - "ingameId": 3377491678, - "ingameEquippedId": "890790459" - }, - { - "code": "eal85b_u", - "ct": 1746077387, - "e": 93922, - "f": "set_torrent", - "g": 5, - "id": 3378596409, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 1 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "att", - 0 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "att", - 42, - "c", - "change2_att_1_2" - ] - ], - "p": 890790459, - "s": "4e31", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "Attack", - "value": 53, - "rolls": 1, - "modified": true - } - ], - "ingameId": 3378596409, - "ingameEquippedId": "890790459" - }, - { - "code": "ecb6h_u", - "ct": 1746110649, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3387407453, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 736028830, - "s": "e910", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 27, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3387407453, - "ingameEquippedId": "736028830" - }, - { - "code": "ecb6a_u", - "ct": 1746110649, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3387407474, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "b1b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3387407474, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6b", - "ct": 1746110649, - "e": 82031, - "f": "set_cri_dmg", - "g": 5, - "id": 3387407494, - "l": true, - "level": 85, - "mainStatBaseValue": 8, - "mainStatId": "cra6_boot_m", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "acc", - 0.06 - ] - ], - "s": "83b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 40 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 15, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 3387407494, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1746110649, - "e": 82031, - "f": "set_acc", - "g": 5, - "id": 3387407548, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.06 - ] - ], - "s": "ee00", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 3387407548, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w", - "ct": 1746110759, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3387439076, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "eb0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 3387439076, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1746110759, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3387439108, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 1 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "p": 669363338, - "s": "65e3", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 3387439108, - "ingameEquippedId": "669363338" - }, - { - "code": "ecb6h", - "ct": 1746182630, - "e": 82031, - "f": "set_res", - "g": 5, - "id": 3401950817, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ] - ], - "s": "2647", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3401950817, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a", - "ct": 1746203010, - "e": 82031, - "f": "set_vampire", - "g": 5, - "id": 3407019852, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "res", - 0.07 - ], - [ - "max_hp", - 197 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.04 - ] - ], - "s": "30a2", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 4 - }, - { - "type": "Health", - "value": 197, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 3407019852, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6h_u", - "ct": 1746206728, - "e": 84375, - "f": "set_res", - "g": 4, - "id": 3407759413, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.08, - "c", - "change2_def_rate_1_2" - ] - ], - "s": "9c21", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 9, - "rolls": 1, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 33, - "rolls": 4 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 3407759413, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w_u", - "ct": 1746207412, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3407878415, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 1 - ], - [ - "max_hp", - 174 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp", - 172 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp", - 112, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "s": "e79c", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Health", - "value": 458, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 3407878415, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1746209930, - "e": 93863, - "f": "set_cri_dmg", - "g": 5, - "id": 3408283947, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "b7c2", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 3408283947, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1746211791, - "e": 93863, - "f": "set_cri_dmg", - "g": 5, - "id": 3408554116, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.07, - "u" - ] - ], - "s": "7ad5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 40, - "rolls": 5 - } - ], - "ingameId": 3408554116, - "ingameEquippedId": "undefined" - }, - { - "code": "eah27h", - "ct": 1746243310, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3413244272, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah27_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.06 - ] - ], - "s": "4d58", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 22, - "rolls": 4 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 3413244272, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1746266052, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3418588636, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ] - ], - "s": "9ee1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 3418588636, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6h_u", - "ct": 1746368215, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 3438671468, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.09, - "c", - "change2_def_rate_2_1" - ] - ], - "s": "4133", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 30, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 12, - "rolls": 2, - "modified": true - } - ], - "ingameId": 3438671468, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1746429058, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3445500372, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 1 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "p": 899011010, - "s": "3f7f", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 26, - "rolls": 3 - } - ], - "ingameId": 3445500372, - "ingameEquippedId": "899011010" - }, - { - "code": "ecw6h_u", - "ct": 1746429060, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3445500628, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "p": 892353109, - "s": "c6ef", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 24, - "rolls": 3 - } - ], - "ingameId": 3445500628, - "ingameEquippedId": "892353109" - }, - { - "code": "ecw6a_u", - "ct": 1746429064, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3445501118, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "s": "1bd5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 33, - "rolls": 4 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 3445501118, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1746429068, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3445501481, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.05, - "u" - ] - ], - "s": "7395", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 33, - "rolls": 4 - } - ], - "ingameId": 3445501481, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n_u", - "ct": 1746429072, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 3445501933, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "p": 892353109, - "s": "842f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 24, - "rolls": 3 - } - ], - "ingameId": 3445501933, - "ingameEquippedId": "892353109" - }, - { - "code": "ecw6r_u", - "ct": 1746429075, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3445502296, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "p": 739641017, - "s": "9dd9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 27, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 3445502296, - "ingameEquippedId": "739641017" - }, - { - "code": "eah27a", - "ct": 1746498498, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3450048620, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah27_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ] - ], - "s": "e7a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3450048620, - "ingameEquippedId": "undefined" - }, - { - "code": "eep_a", - "ct": 1746680176, - "e": 93750, - "f": "set_def", - "g": 5, - "id": 3457782032, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ep_armor_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ] - ], - "s": "884", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DefenseSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3457782032, - "ingameEquippedId": "undefined" - }, - { - "code": "eep_w", - "ct": 1746680231, - "e": 93750, - "f": "set_def", - "g": 5, - "id": 3457788577, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ep_weapon_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "speed", - 3 - ], - [ - "res", - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.09, - "c", - "change2_res_2_1" - ] - ], - "s": "b395", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DefenseSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 27, - "rolls": 4 - } - ], - "ingameId": 3457788577, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1746681615, - "e": 93750, - "f": "set_def", - "g": 5, - "id": 3457958611, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "def", - 0 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "def", - 0 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "def", - 61, - "c", - "change2_def_2_2" - ] - ], - "s": "9517", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DefenseSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 29, - "rolls": 4 - }, - { - "type": "Defense", - "value": 79, - "rolls": 2, - "modified": true - } - ], - "ingameId": 3457958611, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6n_u", - "ct": 1746771226, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3462816900, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp", - 164 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp", - 174 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp", - 197 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "max_hp", - 168, - "u" - ] - ], - "p": 830235768, - "s": "7184", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Health", - "value": 703, - "rolls": 3 - } - ], - "ingameId": 3462816900, - "ingameEquippedId": "830235768" - }, - { - "code": "ecw6a", - "ct": 1746862329, - "f": "set_acc", - "g": 5, - "id": 3466725563, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "a878", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3466725563, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1746862332, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 3466725667, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 613630545, - "s": "1fdc", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 3466725667, - "ingameEquippedId": "613630545" - }, - { - "code": "ecb6w", - "ct": 1746971310, - "f": "set_cri_dmg", - "g": 4, - "id": 3471477600, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "acc", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp", - 169 - ] - ], - "p": 28393107, - "s": "59ac", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Health", - "value": 169, - "rolls": 1 - } - ], - "ingameId": 3471477600, - "ingameEquippedId": "28393107" - }, - { - "code": "ecd6w_u", - "ct": 1747005863, - "e": 93922, - "f": "set_torrent", - "g": 5, - "id": 3472662654, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "c44a", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 3472662654, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6a", - "ct": 1747005866, - "e": 82031, - "f": "set_torrent", - "g": 5, - "id": 3472662776, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60, - null, - null, - 2 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ] - ], - "s": "737a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 31, - "rolls": 5 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3472662776, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6r_u", - "ct": 1747005873, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 3472663055, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 3 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.06, - "u" - ] - ], - "s": "6b6d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 36, - "rolls": 5 - } - ], - "ingameId": 3472663055, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6h_u", - "ct": 1747005878, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 3472663283, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "86e1", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 3472663283, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6b_u", - "ct": 1747005885, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 3472663530, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "3ae1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 3472663530, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6n_u", - "ct": 1747005891, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 3472663787, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "att", - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "att", - 45, - "c", - "change2_att_1_2" - ] - ], - "s": "9258", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Attack", - "value": 56, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 3472663787, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6n", - "ct": 1747006450, - "f": "set_cri_dmg", - "g": 4, - "id": 3472685973, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "def", - 28 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.04 - ] - ], - "p": 28393107, - "s": "66b9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "Defense", - "value": 28, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 3472685973, - "ingameEquippedId": "28393107" - }, - { - "code": "ecb6w_u", - "ct": 1747006762, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3472699406, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 640588979, - "s": "77be", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 3472699406, - "ingameEquippedId": "640588979" - }, - { - "code": "ecb6h_u", - "ct": 1747006762, - "e": 93922, - "f": "set_cri_dmg", - "g": 5, - "id": 3472699407, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 640588979, - "s": "7105", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 33, - "rolls": 4 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 3472699407, - "ingameEquippedId": "640588979" - }, - { - "code": "ecb6a_u", - "ct": 1747006762, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3472699408, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 158971995, - "s": "78a6", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 3472699408, - "ingameEquippedId": "158971995" - }, - { - "code": "ecb6b_u", - "ct": 1747006762, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3472699410, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 899521626, - "s": "94d9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 30, - "rolls": 4 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3472699410, - "ingameEquippedId": "899521626" - }, - { - "code": "ecd6n_u", - "ct": 1747006762, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3472699411, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "efef", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 3472699411, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6r_u", - "ct": 1747006762, - "e": 93922, - "f": "set_penetrate", - "g": 5, - "id": 3472699412, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "e2d2", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 20, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3472699412, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6b_u", - "ct": 1747050957, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 3475507981, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "s": "2f55", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 3475507981, - "ingameEquippedId": "undefined" - }, - { - "code": "eah27b", - "ct": 1747206216, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3481551120, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah27_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "1747", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 21, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3481551120, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1747206905, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 3481574936, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.1, - "c", - "change2_max_hp_rate_2_2" - ] - ], - "s": "241c", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 29, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 13, - "rolls": 2, - "modified": true - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 3481574936, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w", - "ct": 1747310699, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3486112364, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "e667", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 3486112364, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1747310699, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3486112365, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "c47d", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 3486112365, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1747310699, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3486112366, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 5 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "4269", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 18, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3486112366, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1747310699, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3486112367, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ] - ], - "s": "7b45", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 26, - "rolls": 4 - } - ], - "ingameId": 3486112367, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1747310699, - "e": 1982, - "f": "set_cri", - "g": 5, - "id": 3486112369, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "s": "7e6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 3486112369, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9n", - "ct": 1747314451, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3486339758, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "58a2", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 3486339758, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85n_u", - "ct": 1747315336, - "e": 93922, - "f": "set_vampire", - "g": 5, - "id": 3486400547, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "max_hp", - 172 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0 - ], - [ - "res", - 0 - ], - [ - "max_hp", - 56, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "res", - 0.13, - "c", - "change2_res_3_2" - ] - ], - "p": 48988520, - "s": "d24a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "Health", - "value": 228, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 3, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 3486400547, - "ingameEquippedId": "48988520" - }, - { - "code": "eal85r_u", - "ct": 1747315664, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 3486421961, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0 - ], - [ - "res", - 0.08 - ], - [ - "def", - 30 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def", - 34 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 48988520, - "s": "9f4c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 32, - "rolls": 5 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Defense", - "value": 82, - "rolls": 2 - } - ], - "ingameId": 3486421961, - "ingameEquippedId": "48988520" - }, - { - "code": "ecb6b", - "ct": 1747453257, - "f": "set_cri_dmg", - "g": 4, - "id": 3491022327, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_boot_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "att_rate", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 2 - ] - ], - "p": 28393107, - "s": "c170", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Heroic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1 - } - ], - "ingameId": 3491022327, - "ingameEquippedId": "28393107" - }, - { - "code": "ecb6w_u", - "ct": 1747454139, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3491059817, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 613630545, - "s": "2dfa", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 3491059817, - "ingameEquippedId": "613630545" - }, - { - "code": "ecb6h_u", - "ct": 1747454139, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3491059818, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "p": 899521626, - "s": "ad9b", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 3491059818, - "ingameEquippedId": "899521626" - }, - { - "code": "ecb6a_u", - "ct": 1747454139, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3491059819, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "7c56", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 3491059819, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6b_u", - "ct": 1747454139, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3491059820, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 461351155, - "s": "91ba", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 3491059820, - "ingameEquippedId": "461351155" - }, - { - "code": "ecd6n", - "ct": 1747454232, - "e": 82031, - "f": "set_penetrate", - "g": 5, - "id": 3491063757, - "l": true, - "level": 85, - "mainStatBaseValue": 0.13, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ] - ], - "s": "ee21", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 3491063757, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6r", - "ct": 1747454232, - "e": 82031, - "f": "set_penetrate", - "g": 5, - "id": 3491063759, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "s": "790f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 3491063759, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6w", - "ct": 1747454557, - "e": 82031, - "f": "set_max_hp", - "g": 5, - "id": 3491078292, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "6bc3", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 3491078292, - "ingameEquippedId": "undefined" - }, - { - "code": "eah27r", - "ct": 1747456372, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3491160591, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah27_ring_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ] - ], - "s": "32a9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3491160591, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6w_u", - "ct": 1747554163, - "e": 93750, - "f": "set_shield", - "g": 5, - "id": 3494753443, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp", - 173 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "max_hp", - 56, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "s": "e8bd", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ProtectionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Health", - "value": 229, - "rolls": 1 - }, - { - "type": "Speed", - "value": 19, - "rolls": 5 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 3494753443, - "ingameEquippedId": "undefined" - }, - { - "code": "eah27n", - "ct": 1747708176, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3499881314, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ah27_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 5 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ] - ], - "p": 799495489, - "s": "4b4d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 3499881314, - "ingameEquippedId": "799495489" - }, - { - "code": "ecg6w_u", - "ct": 1747809887, - "e": 93750, - "f": "set_def", - "g": 5, - "id": 3502378186, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "s": "10e1", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DefenseSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 3502378186, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1747917476, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3504245936, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "s": "df6a", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 3504245936, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1747917476, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3504245937, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.05, - "u" - ] - ], - "s": "5e42", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 31, - "rolls": 4 - } - ], - "ingameId": 3504245937, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1747922421, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3504369449, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "2b6b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 25, - "rolls": 3 - }, - { - "type": "Speed", - "value": 15, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3504369449, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1747926052, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3504471563, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 445022861, - "s": "1c2f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 32, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3504471563, - "ingameEquippedId": "445022861" - }, - { - "code": "ecw6h_u", - "ct": 1747965870, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3505134903, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "s": "8a00", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 3505134903, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1747965870, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3505134904, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "acc", - 0.05, - "u" - ] - ], - "s": "a5d7", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 32, - "rolls": 4 - } - ], - "ingameId": 3505134904, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b", - "ct": 1747968071, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3505191594, - "l": true, - "level": 85, - "mainStatBaseValue": 8, - "mainStatId": "cra6_boot_m", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.06 - ] - ], - "s": "b922", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 40 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 22, - "rolls": 4 - } - ], - "ingameId": 3505191594, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1747982391, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3505550848, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 894623419, - "s": "3e9f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3505550848, - "ingameEquippedId": "894623419" - }, - { - "code": "ecw6n_u", - "ct": 1747982646, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 3505556329, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "s": "e18e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 24, - "rolls": 3 - } - ], - "ingameId": 3505556329, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a_u", - "ct": 1747983155, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3505567656, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 892353109, - "s": "1ff3", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 27, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 3505567656, - "ingameEquippedId": "892353109" - }, - { - "code": "ecg6w_u", - "ct": 1747983317, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3505572333, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "p": 620426700, - "s": "48b6", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 25, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - } - ], - "ingameId": 3505572333, - "ingameEquippedId": "620426700" - }, - { - "code": "ecw6w_u", - "ct": 1747983477, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3505576702, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "s": "724a", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 3505576702, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w", - "ct": 1747983477, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3505576713, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp", - 197 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 191 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp", - 172 - ] - ], - "s": "529", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Health", - "value": 560, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 3 - } - ], - "ingameId": 3505576713, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6h_u", - "ct": 1747983643, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3505580549, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "d755", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 21, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 27, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 3505580549, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1748003717, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3506053536, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "att", - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "att", - 0 - ], - [ - "acc", - 0.04 - ], - [ - "att", - 0 - ], - [ - "att", - 0 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "att", - 44, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "att", - 108, - "c", - "change2_att_4_2" - ] - ], - "p": 518782830, - "s": "5f7c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1 - }, - { - "type": "Attack", - "value": 152, - "rolls": 4, - "modified": true - }, - { - "type": "DefensePercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 3506053536, - "ingameEquippedId": "518782830" - }, - { - "code": "ecw6a", - "ct": 1748014445, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3506395442, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.04 - ] - ], - "s": "8c6", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 3506395442, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1748014566, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 3506399453, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "s": "8bd3", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 3506399453, - "ingameEquippedId": "undefined" - }, - { - "code": "eah17a", - "ct": 1748047234, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3506998849, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah17_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.08 - ] - ], - "p": 799495489, - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 27, - "rolls": 4 - } - ], - "ingameId": 3506998849, - "ingameEquippedId": "799495489" - }, - { - "code": "eah17n", - "ct": 1748047237, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3506998906, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah17_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 17, - "rolls": 3 - } - ], - "ingameId": 3506998906, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n", - "ct": 1748069792, - "e": 82031, - "f": "set_acc", - "g": 5, - "id": 3507648310, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "9151", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3507648310, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1748069980, - "e": 82031, - "f": "set_acc", - "g": 5, - "id": 3507653700, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "77b6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 3507653700, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r_u", - "ct": 1748220968, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 3511268444, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "b4d7", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3511268444, - "ingameEquippedId": "undefined" - }, - { - "code": "esc01w", - "ct": 1748316905, - "f": "set_shield", - "g": 5, - "id": 3513589473, - "l": true, - "level": 78, - "mainStatBaseValue": 95, - "mainStatId": "sc01_weap_m", - "mainStatType": "att", - "mainStatValue": 475, - "mg": 1111, - "op": [ - [ - "att", - 95, - null, - "q01_1", - null - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ] - ], - "s": "fd21", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ProtectionSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Attack", - "value": 475 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 3513589473, - "ingameEquippedId": "undefined" - }, - { - "code": "esc01h", - "ct": 1748316908, - "f": "set_shield", - "g": 5, - "id": 3513589549, - "l": true, - "level": 78, - "mainStatBaseValue": 513, - "mainStatId": "sc01_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2565, - "mg": 1111, - "op": [ - [ - "max_hp", - 513, - null, - "q01_2", - null - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ] - ], - "s": "3f18", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ProtectionSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Health", - "value": 2565 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 3513589549, - "ingameEquippedId": "undefined" - }, - { - "code": "esc01a", - "ct": 1748316912, - "f": "set_shield", - "g": 5, - "id": 3513589622, - "l": true, - "level": 78, - "mainStatBaseValue": 57, - "mainStatId": "sc01_armo_m", - "mainStatType": "def", - "mainStatValue": 285, - "mg": 1111, - "op": [ - [ - "def", - 57, - null, - "q01_3", - null - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ] - ], - "s": "260f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ProtectionSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 285 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 3513589622, - "ingameEquippedId": "undefined" - }, - { - "code": "esc01b", - "ct": 1748316915, - "f": "set_shield", - "g": 5, - "id": 3513589712, - "l": true, - "level": 78, - "mainStatBaseValue": 8, - "mainStatId": "sc01_boot_m", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8, - null, - "q01_6", - null - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ] - ], - "s": "14c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ProtectionSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Speed", - "value": 40 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3513589712, - "ingameEquippedId": "undefined" - }, - { - "code": "esc01r", - "ct": 1748324968, - "f": "set_immune", - "g": 5, - "id": 3513761604, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "sc01_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12, - null, - "q01_5", - null - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ] - ], - "s": "71e9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 3513761604, - "ingameEquippedId": "undefined" - }, - { - "code": "esc01n", - "ct": 1748324972, - "f": "set_immune", - "g": 5, - "id": 3513761658, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "sc01_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12, - null, - "q01_4", - null - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ] - ], - "s": "6663", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 3513761658, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu51h", - "ct": 1748336869, - "f": "set_shield", - "g": 5, - "id": 3513963799, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu51_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ] - ], - "s": "2301", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ProtectionSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3513963799, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9n", - "ct": 1748336947, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3513965232, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "6c60", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 27, - "rolls": 4 - } - ], - "ingameId": 3513965232, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1748609965, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3518283342, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "def_rate", - 0.07, - "c", - "change2_def_rate_1_1" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "p": 636577158, - "s": "43a6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 21, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1, - "modified": true - } - ], - "ingameId": 3518283342, - "ingameEquippedId": "636577158" - }, - { - "code": "ecg6a_u", - "ct": 1749028688, - "e": 93750, - "f": "set_def", - "g": 5, - "id": 3525798717, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp", - 184 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp", - 159 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "s": "b6db", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DefenseSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 34, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Health", - "value": 455, - "rolls": 2 - } - ], - "ingameId": 3525798717, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a", - "ct": 1749028688, - "e": 82031, - "f": "set_def", - "g": 5, - "id": 3525798724, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp", - 193 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp", - 168 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 2 - ] - ], - "s": "1652", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DefenseSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "Health", - "value": 361, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 3525798724, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a_u", - "ct": 1749028915, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3525801562, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp", - 177 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ] - ], - "s": "624b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Health", - "value": 233, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 18, - "rolls": 4 - } - ], - "ingameId": 3525801562, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a_u", - "ct": 1749028915, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3525801564, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp", - 173 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "max_hp", - 200 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.03, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "s": "7f21", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Health", - "value": 485, - "rolls": 2 - } - ], - "ingameId": 3525801564, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a_u", - "ct": 1749028915, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3525801566, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "41db", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 3525801566, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1749108228, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3526717498, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 196 - ], - [ - "max_hp", - 193 - ], - [ - "max_hp", - 172 - ], - [ - "def_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "max_hp", - 173 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp", - 224, - "u" - ] - ], - "s": "39bd", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "Health", - "value": 958, - "rolls": 4 - } - ], - "ingameId": 3526717498, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6h_u", - "ct": 1749180103, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 3527626492, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "s": "52f8", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 19, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 3527626492, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1749182548, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3527650132, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "def", - 29 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def", - 34 - ], - [ - "cri", - 0.03 - ], - [ - "def", - 28 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "def", - 27, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 326928979, - "s": "df54", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Defense", - "value": 118, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 3527650132, - "ingameEquippedId": "326928979" - }, - { - "code": "ecg6a", - "ct": 1749188938, - "e": 82031, - "f": "set_max_hp", - "g": 5, - "id": 3527718118, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ] - ], - "s": "3b32", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 3527718118, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6h_u", - "ct": 1749189527, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 3527723850, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ] - ], - "p": 48988520, - "s": "606e", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 3527723850, - "ingameEquippedId": "48988520" - }, - { - "code": "ecg6a_u", - "ct": 1749190576, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3527732752, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.03, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.08, - "c", - "change2_def_rate_1_2" - ] - ], - "s": "dab2", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1, - "modified": true - }, - { - "type": "HealthPercent", - "value": 30, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 3527732752, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6w_u", - "ct": 1749191514, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3527739581, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 1 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ] - ], - "s": "7fa5", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 26, - "rolls": 4 - } - ], - "ingameId": 3527739581, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6w", - "ct": 1749191544, - "e": 17723, - "f": "set_att", - "g": 5, - "id": 3527739859, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ] - ], - "s": "4aa4", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 3527739859, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6w_u", - "ct": 1749191552, - "e": 93750, - "f": "set_att", - "g": 5, - "id": 3527739947, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ] - ], - "s": "9413", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 3527739947, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1749192293, - "e": 93804, - "f": "set_cri", - "g": 5, - "id": 3527746479, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "res", - 0.07, - "u" - ] - ], - "s": "4011", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 36, - "rolls": 5 - } - ], - "ingameId": 3527746479, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1749192307, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3527746617, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp", - 182 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp", - 185 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "s": "adf0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 26, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Health", - "value": 479, - "rolls": 2 - } - ], - "ingameId": 3527746617, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6h_u", - "ct": 1749192726, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3527750510, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "3f9f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 28, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 3527750510, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1749192915, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 3527751946, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.08, - "c", - "change2_def_rate_1_2" - ] - ], - "s": "397e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 9, - "rolls": 1, - "modified": true - }, - { - "type": "HealthPercent", - "value": 29, - "rolls": 4 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3527751946, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1749200057, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 3527818197, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0 - ], - [ - "res", - 0.08 - ], - [ - "def", - 33 - ], - [ - "max_hp", - 181 - ], - [ - "res", - 0.05 - ], - [ - "def", - 29 - ], - [ - "max_hp", - 185 - ], - [ - "res", - 0.04 - ], - [ - "max_hp", - 189 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "max_hp", - 168, - "u" - ], - [ - "def_rate", - 0.05, - "c", - "change2_def_rate_1_1" - ] - ], - "p": 28398305, - "s": "684e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 6, - "rolls": 1, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Defense", - "value": 80, - "rolls": 2 - }, - { - "type": "Health", - "value": 723, - "rolls": 3 - } - ], - "ingameId": 3527818197, - "ingameEquippedId": "28398305" - }, - { - "code": "ecw6a_u", - "ct": 1749622557, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 3533657970, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "s": "bc50", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 37, - "rolls": 4 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3533657970, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1749869869, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3537254483, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "a7c1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 2 - } - ], - "ingameId": 3537254483, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1749905616, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3537857610, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "f311", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 3537857610, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1749906312, - "e": 84375, - "f": "set_cri", - "g": 4, - "id": 3537869979, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "4434", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 3537869979, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1750076867, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 3540252422, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ] - ], - "s": "68e6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 13, - "rolls": 4 - } - ], - "ingameId": 3540252422, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6h_u", - "ct": 1750221347, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3541894381, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.05, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.08, - "c", - "change2_max_hp_rate_1_2" - ] - ], - "s": "b22b", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 29, - "rolls": 4 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1, - "modified": true - } - ], - "ingameId": 3541894381, - "ingameEquippedId": "undefined" - }, - { - "code": "eih6r", - "ct": 1750249893, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 3542185787, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "imh_ring_m3", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ] - ], - "s": "7a32", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 3542185787, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu51n", - "ct": 1750253896, - "e": 21687, - "f": "set_revenge", - "g": 5, - "id": 3542239370, - "l": true, - "level": 88, - "mainStatBaseValue": 0.12, - "mainStatId": "iu51_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "f6ab", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "RevengeSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "CriticalHitChancePercent", - "value": 60 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3542239370, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9n", - "ct": 1750256287, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3542276314, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ] - ], - "s": "4d9c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 20, - "rolls": 4 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 3542276314, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1750258682, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3542315094, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "max_hp", - 159 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0 - ], - [ - "max_hp", - 174 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp", - 112, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.07, - "c", - "change2_cri_3_1" - ] - ], - "p": 795195383, - "s": "3c6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 3, - "modified": true - }, - { - "type": "Health", - "value": 445, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 17, - "rolls": 3 - } - ], - "ingameId": 3542315094, - "ingameEquippedId": "795195383" - }, - { - "code": "ecw6a_u", - "ct": 1750321865, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 3543895042, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "d2b0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 28, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 3543895042, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w_u", - "ct": 1750372686, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3545863341, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 899521626, - "s": "e6ad", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 3545863341, - "ingameEquippedId": "899521626" - }, - { - "code": "ecb6h_u", - "ct": 1750466852, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3548498505, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "bfd2", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 3548498505, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1750483266, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 3549077008, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "8d15", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 3549077008, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1750638400, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3553470454, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "b8d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 30, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - } - ], - "ingameId": 3553470454, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a_u", - "ct": 1750686596, - "e": 84469, - "f": "set_shield", - "g": 4, - "id": 3554729013, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "s": "6bcf", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "ProtectionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 27, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 3554729013, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w_u", - "ct": 1750687747, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 3554771772, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.06, - "c", - "change2_max_hp_rate_1_1" - ] - ], - "p": 566472035, - "s": "612f", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 26, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 31, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1, - "modified": true - } - ], - "ingameId": 3554771772, - "ingameEquippedId": "566472035" - }, - { - "code": "ecw6w", - "ct": 1750753932, - "e": 82084, - "f": "set_speed", - "g": 5, - "id": 3556276571, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "s": "e3a", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3556276571, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1750755129, - "e": 93803, - "f": "set_speed", - "g": 5, - "id": 3556303419, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "7ac0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3556303419, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w", - "ct": 1750755598, - "e": 82085, - "f": "set_cri", - "g": 5, - "id": 3556314296, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 172 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ] - ], - "s": "218c", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 5 - }, - { - "type": "Health", - "value": 172, - "rolls": 1 - } - ], - "ingameId": 3556314296, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w", - "ct": 1750755913, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3556320767, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "cd45", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 3 - } - ], - "ingameId": 3556320767, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1750756313, - "e": 93861, - "f": "set_speed", - "g": 5, - "id": 3556329819, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0 - ], - [ - "cri", - 0.06, - "c" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "3705", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2, - "modified": true - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - } - ], - "ingameId": 3556329819, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r_u", - "ct": 1750757464, - "e": 93860, - "f": "set_speed", - "g": 5, - "id": 3556358680, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "acc", - 0.13, - null, - null, - 0 - ], - [ - "max_hp", - 187 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp", - 170 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 183 - ], - [ - "max_hp", - 168, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "156b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectivenessPercent", - "value": 65 - }, - "substats": [ - { - "type": "Health", - "value": 708, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3556358680, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r_u", - "ct": 1750768014, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3556631332, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp", - 200 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "max_hp_rate", - 0.07, - "u" - ] - ], - "s": "48e4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Health", - "value": 256, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 39, - "rolls": 5 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 3556631332, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r_u", - "ct": 1750768171, - "e": 93802, - "f": "set_acc", - "g": 5, - "id": 3556636135, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "att", - 42 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "att", - 11, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "s": "2a8c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 65 - }, - "substats": [ - { - "type": "Attack", - "value": 53, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "Speed", - "value": 15, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3556636135, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n", - "ct": 1750768294, - "e": 73828, - "f": "set_acc", - "g": 4, - "id": 3556639912, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "max_hp", - 188 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.04 - ] - ], - "s": "a106", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "Health", - "value": 188, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 3556639912, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1750769632, - "e": 82083, - "f": "set_speed", - "g": 5, - "id": 3556684148, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "res", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "res", - 0.12 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ] - ], - "s": "18b4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3556684148, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1750769865, - "e": 82083, - "f": "set_speed", - "g": 5, - "id": 3556691982, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ] - ], - "s": "f350", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 3556691982, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1750818687, - "e": 84375, - "f": "set_cri", - "g": 4, - "id": 3557757060, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "6697", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 20, - "rolls": 5 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 3557757060, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1750819746, - "e": 82082, - "f": "set_cri", - "g": 5, - "id": 3557784304, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "def", - 29 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.04 - ] - ], - "s": "15a1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Defense", - "value": 29, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 3557784304, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1750819756, - "e": 73863, - "f": "set_acc", - "g": 4, - "id": 3557784506, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "acc", - 0.12 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.05 - ] - ], - "s": "f1d9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectivenessPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "Speed", - "value": 13, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3557784506, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85n_u", - "ct": 1750858177, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 3558773915, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def", - 30 - ], - [ - "att", - 41 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "def", - 9, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ] - ], - "p": 798777729, - "s": "b28f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Defense", - "value": 39, - "rolls": 1 - }, - { - "type": "Attack", - "value": 52, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 27, - "rolls": 4 - } - ], - "ingameId": 3558773915, - "ingameEquippedId": "798777729" - }, - { - "code": "eal85b_u", - "ct": 1750858575, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 3558788678, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 1 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.06, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "p": 798777729, - "s": "98e7", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 37, - "rolls": 5 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3558788678, - "ingameEquippedId": "798777729" - }, - { - "code": "ela13b", - "ct": 1750944383, - "e": 93750, - "f": "set_shield", - "g": 5, - "id": 3560545568, - "l": true, - "level": 0, - "mg": 1111, - "name": "Unknown", - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 3 - ] - ], - "s": "c2b1", - "gear": "Boots", - "rank": "Epic", - "set": "ProtectionSet", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 0 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 3560545568, - "ingameEquippedId": "undefined" - }, - { - "code": "ela13w", - "ct": 1750944408, - "e": 93750, - "f": "set_shield", - "g": 5, - "id": 3560546230, - "l": true, - "level": 0, - "mg": 1111, - "name": "Unknown", - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.08 - ] - ], - "s": "0", - "gear": "Weapon", - "rank": "Epic", - "set": "ProtectionSet", - "enhance": 15, - "main": { - "type": "Attack", - "value": 0 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 24, - "rolls": 3 - } - ], - "ingameId": 3560546230, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1751010960, - "e": 82084, - "f": "set_cri", - "g": 5, - "id": 3561694666, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ] - ], - "s": "c66e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 13, - "rolls": 5 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3561694666, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1751011396, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3561702971, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.11, - "c", - "change2_def_rate_2_1" - ] - ], - "s": "6733", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 11, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 28, - "rolls": 5 - } - ], - "ingameId": 3561702971, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1751011992, - "e": 82143, - "f": "set_acc", - "g": 5, - "id": 3561715688, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "acc", - 0 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.1, - "c", - "change2_acc_2_2" - ] - ], - "s": "f5b7", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 10, - "rolls": 2, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 3561715688, - "ingameEquippedId": "undefined" - }, - { - "code": "ela13n", - "ct": 1751031755, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 3562099450, - "l": true, - "level": 0, - "mg": 1111, - "name": "Unknown", - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "acc", - 0.09 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.06 - ], - [ - "acc", - 0.08 - ] - ], - "s": "0", - "gear": "Necklace", - "rank": "Epic", - "set": "CriticalSet", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 0 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 3562099450, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1751112339, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3563523530, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ] - ], - "s": "55a1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 19, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 3563523530, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h", - "ct": 1751112346, - "f": "set_speed", - "g": 5, - "id": 3563523741, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.07 - ] - ], - "s": "a433", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3563523741, - "ingameEquippedId": "undefined" - }, - { - "code": "ela13a", - "ct": 1751124649, - "e": 93862, - "f": "set_shield", - "g": 5, - "id": 3563835443, - "l": true, - "level": 0, - "mg": 1111, - "name": "Unknown", - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "0", - "gear": "Armor", - "rank": "Epic", - "set": "ProtectionSet", - "enhance": 15, - "main": { - "type": "Defense", - "value": 0 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 28, - "rolls": 4 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 3563835443, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1751250870, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3566231631, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "s": "cbc6", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 26, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 3566231631, - "ingameEquippedId": "undefined" - }, - { - "code": "ela13r", - "ct": 1751285020, - "e": 93750, - "f": "set_shield", - "g": 5, - "id": 3566763231, - "l": true, - "level": 0, - "mg": 1111, - "name": "Unknown", - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.05 - ], - [ - "def_rate", - 0.08 - ] - ], - "s": "17e3", - "gear": "Ring", - "rank": "Epic", - "set": "ProtectionSet", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 0 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 26, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 3566763231, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1751295414, - "e": 93863, - "f": "set_cri_dmg", - "g": 5, - "id": 3566991686, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "1003", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 3566991686, - "ingameEquippedId": "undefined" - } - ], - "heroes": [ - { - "code": "c5001", - "ct": 0, - "d": 7, - "exp": 833510, - "f": 3196, - "g": 6, - "id": 166490, - "l": true, - "name": "Adventurer Ras", - "opt": 11, - "s": [ - 2, - 2, - 4 - ], - "st": 0, - "stree": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1018", - "ct": 1687228144, - "d": 7, - "exp": 63815, - "f": 919, - "g": 3, - "id": 2303361, - "l": true, - "name": "Aither", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c3063", - "ct": 1687228784, - "d": 7, - "exp": 392415, - "f": 5, - "g": 5, - "id": 2716895, - "l": true, - "name": "Kiris", - "opt": 1, - "s": [ - 5, - 3, - 2 - ], - "st": 0, - "z": 4, - "stars": 5, - "awaken": 4 - }, - { - "code": "c4035", - "ct": 1687228784, - "d": 7, - "exp": 833510, - "f": 200, - "g": 6, - "id": 2716899, - "l": true, - "name": "Commander Lorina", - "opt": 1, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "stree": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1024", - "ct": 1687231721, - "exp": 650125, - "f": 1608, - "g": 5, - "id": 4647526, - "l": true, - "name": "Iseria", - "opt": 2001, - "s": [ - 4, - 2, - 4 - ], - "st": 0, - "z": 4, - "stars": 5, - "awaken": 4 - }, - { - "code": "c1036", - "ct": 1687231754, - "d": 6, - "exp": 5690, - "g": 4, - "id": 4667046, - "l": true, - "name": "Crozet", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c0002", - "ct": 1687235863, - "d": 6, - "exp": 1110500, - "f": 2845, - "g": 6, - "id": 6844892, - "l": true, - "name": "Mercedes", - "opt": 3021, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c4023", - "ct": 1687235940, - "d": 7, - "exp": 63815, - "g": 3, - "id": 6885513, - "l": true, - "name": "Mercenary Helga", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1008", - "ct": 1687235940, - "d": 6, - "exp": 13500, - "g": 4, - "id": 6885516, - "l": true, - "name": "Armin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c4041", - "ct": 1687235940, - "d": 7, - "exp": 833510, - "f": 149, - "g": 6, - "id": 6885517, - "l": true, - "name": "Mascot Hazel", - "opt": 1, - "s": [ - 3, - 4, - 7 - ], - "st": 0, - "stree": [ - 2, - 3, - 3, - 0, - 2, - 0, - 0, - 0, - 1, - 0 - ], - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c3132", - "ct": 1687235987, - "d": 7, - "exp": 392415, - "f": 12293, - "g": 5, - "id": 6911147, - "l": true, - "name": "Muwi", - "opt": 21, - "s": [ - 3, - 5, - 5 - ], - "st": 0, - "z": 5, - "stars": 5, - "awaken": 5 - }, - { - "code": "c3102", - "ct": 1687246056, - "d": 7, - "exp": 10884, - "f": 814, - "g": 3, - "id": 11049689, - "l": true, - "name": "Ian", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c3026", - "ct": 1687246438, - "d": 6, - "exp": 1110500, - "f": 11106, - "g": 6, - "id": 11185757, - "l": true, - "name": "Free Spirit Tieria", - "opt": 3021, - "s": [ - 4, - 4, - 7 - ], - "st": 0, - "z": 5, - "stars": 6, - "awaken": 5 - }, - { - "code": "c4051", - "ct": 1687275617, - "d": 7, - "exp": 833510, - "f": 171, - "g": 6, - "id": 21884461, - "l": true, - "name": "Researcher Carrot", - "opt": 1, - "s": [ - 6, - 2, - 7 - ], - "st": 0, - "stree": [ - 0, - 0, - 3, - 0, - 3, - 3, - 0, - 3, - 3, - 3 - ], - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1079", - "ct": 1687306878, - "exp": 1384450, - "f": 71, - "g": 6, - "id": 28393107, - "l": true, - "name": "Cermia", - "opt": 1, - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c4123", - "ct": 1687306899, - "d": 7, - "exp": 833510, - "f": 2627, - "g": 6, - "id": 28398305, - "l": true, - "name": "Silvertide Christy", - "opt": 21, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "stree": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c4042", - "ct": 1687320189, - "d": 7, - "exp": 392415, - "f": 216, - "g": 5, - "id": 31856726, - "name": "Angelic Montmorancy", - "opt": 1, - "s": [ - 2, - 5, - 5 - ], - "st": 0, - "z": 5, - "stars": 5, - "awaken": 5 - }, - { - "code": "c1023", - "ct": 1687322611, - "exp": 0, - "g": 5, - "id": 32601552, - "l": true, - "name": "Kayron", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c3025", - "ct": 1687351395, - "d": 7, - "exp": 63815, - "g": 3, - "id": 40330842, - "l": true, - "name": "Church of Ilryos Axe", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1062", - "ct": 1687352017, - "d": 6, - "exp": 1110500, - "f": 3213, - "g": 6, - "id": 40490456, - "l": true, - "name": "Angelica", - "opt": 3021, - "s": [ - null, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c3045", - "ct": 1687357202, - "d": 7, - "exp": 3840, - "g": 3, - "id": 41877886, - "l": true, - "name": "Otillie", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1087", - "ct": 1687394514, - "d": 6, - "exp": 1110500, - "f": 12163, - "g": 6, - "id": 48982864, - "l": true, - "name": "Furious", - "opt": 3001, - "s": [ - 3, - 1, - 6 - ], - "st": 0, - "z": 5, - "stars": 6, - "awaken": 5 - }, - { - "code": "c3032", - "ct": 1687394538, - "d": 7, - "exp": 833510, - "f": 5, - "g": 6, - "id": 48988518, - "l": true, - "name": "Taranor Guard", - "opt": 21, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c3125", - "ct": 1687394538, - "d": 7, - "exp": 3840, - "g": 3, - "id": 48988519, - "l": true, - "name": "Penelope", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1129", - "ct": 1687394538, - "d": 3, - "exp": 1384450, - "f": 1837, - "g": 6, - "id": 48988520, - "l": true, - "name": "Aria", - "opt": 3021, - "s": [ - 7, - 7, - 1 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1072", - "ct": 1687395299, - "d": 3, - "exp": 1384450, - "f": 14459, - "g": 6, - "id": 49161666, - "l": true, - "name": "Sigret", - "opt": 3021, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c3022", - "ct": 1687395790, - "d": 7, - "exp": 5340, - "f": 814, - "g": 3, - "id": 49275344, - "l": true, - "name": "Enott", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1021", - "ct": 1687395805, - "d": 6, - "exp": 12970, - "g": 4, - "id": 49278840, - "name": "Dingo", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c3024", - "ct": 1687445920, - "d": 7, - "exp": 3540, - "g": 3, - "id": 60578097, - "l": true, - "name": "Gunther", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c3055", - "ct": 1687481103, - "d": 7, - "exp": 840, - "g": 3, - "id": 66610863, - "l": true, - "name": "Hurado", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1028", - "ct": 1687608539, - "d": 6, - "exp": 50475, - "g": 4, - "id": 90340100, - "l": true, - "name": "Clarissa", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1054", - "ct": 1687610761, - "d": 6, - "exp": 10190, - "g": 4, - "id": 90728199, - "name": "Rin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1067", - "ct": 1687611503, - "d": 2, - "exp": 1384450, - "f": 4903, - "g": 6, - "id": 90857803, - "l": true, - "name": "Tamarinne", - "opt": 3021, - "s": [ - 3, - 7, - 1 - ], - "skin_code": "c1067_s01", - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c3014", - "ct": 1687646880, - "d": 7, - "exp": 840, - "g": 3, - "id": 96073578, - "l": true, - "name": "Mirsa", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1047", - "ct": 1687646924, - "exp": 650125, - "g": 5, - "id": 96079743, - "l": true, - "name": "Ken", - "opt": 1, - "st": 0, - "z": 5, - "stars": 5, - "awaken": 5 - }, - { - "code": "c1118", - "ct": 1687646924, - "d": 1, - "exp": 1384450, - "f": 1612, - "g": 6, - "id": 96079748, - "l": true, - "name": "Ran", - "opt": 3021, - "s": [ - 4, - 1, - 7 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2050", - "ct": 1687666751, - "d": 1, - "exp": 1384450, - "f": 4572, - "g": 6, - "id": 99507012, - "l": true, - "name": "Specter Tenebria", - "opt": 3021, - "s": [ - 6, - 3, - 6 - ], - "skin_code": "c2050_s01", - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2043", - "ct": 1687684221, - "exp": 1190, - "g": 4, - "id": 102257218, - "l": true, - "name": "Benevolent Romann", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1003", - "ct": 1687708002, - "d": 6, - "exp": 5690, - "g": 4, - "id": 106183527, - "l": true, - "name": "Rose", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1070", - "ct": 1687739825, - "exp": 1384450, - "f": 3, - "g": 6, - "id": 110838566, - "l": true, - "name": "Krau", - "opt": 1, - "s": [ - 3, - 4, - 2 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1071", - "ct": 1687739897, - "exp": 0, - "f": 1724, - "g": 5, - "id": 110853212, - "l": true, - "name": "Bellona", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1088", - "ct": 1687770611, - "exp": 1384450, - "f": 5002, - "g": 6, - "id": 115835449, - "l": true, - "name": "Vivian", - "opt": 3001, - "s": [ - null, - 7, - 1 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c3134", - "ct": 1687780574, - "d": 7, - "exp": 392415, - "f": 1465, - "g": 5, - "id": 117268286, - "l": true, - "name": "Yoonryoung", - "opt": 1, - "s": [ - 7 - ], - "st": 0, - "z": 4, - "stars": 5, - "awaken": 4 - }, - { - "code": "c3065", - "ct": 1687780604, - "d": 7, - "exp": 840, - "g": 3, - "id": 117273089, - "l": true, - "name": "Wanda", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1109", - "ct": 1687959020, - "exp": 1384450, - "f": 3720, - "g": 6, - "id": 140659207, - "l": true, - "name": "Landy", - "opt": 3001, - "s": [ - 2, - 3, - 5 - ], - "st": 0, - "z": 5, - "stars": 6, - "awaken": 5 - }, - { - "code": "c3094", - "ct": 1688015777, - "d": 7, - "exp": 2040, - "g": 3, - "id": 146824688, - "l": true, - "name": "Eaton", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c6008", - "ct": 1688015796, - "exp": 1110500, - "f": 355, - "g": 6, - "id": 146827448, - "l": true, - "name": "Bad Cat Armin", - "opt": 1, - "s": [ - null, - 5, - 4 - ], - "st": 0, - "z": 5, - "stars": 6, - "awaken": 5 - }, - { - "code": "c1112", - "ct": 1688045722, - "exp": 1384450, - "f": 2691, - "g": 6, - "id": 150271128, - "l": true, - "name": "Politis", - "opt": 3001, - "s": [ - 4, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c4144", - "ct": 1688133397, - "d": 7, - "exp": 833510, - "f": 1808, - "g": 6, - "id": 158971995, - "l": true, - "name": "Savior Adin", - "opt": 21, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "stree": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c4005", - "ct": 1688359306, - "d": 7, - "exp": 833510, - "f": 2718, - "g": 6, - "id": 180232242, - "l": true, - "name": "Shadow Knight Pyllis", - "opt": 21, - "s": [ - 4, - 5, - 4 - ], - "st": 0, - "stree": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c3064", - "ct": 1688370619, - "d": 7, - "exp": 6840, - "g": 3, - "id": 181253090, - "l": true, - "name": "Celeste", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1013", - "ct": 1688436207, - "d": 6, - "exp": 1190, - "g": 4, - "id": 186477488, - "name": "Cartuja", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1039", - "ct": 1688735695, - "exp": 1250, - "f": 86, - "g": 5, - "id": 207190343, - "l": true, - "name": "Haste", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1102", - "ct": 1688886306, - "exp": 1384450, - "f": 4333, - "g": 6, - "id": 218403497, - "l": true, - "name": "Roana", - "opt": 3001, - "s": [ - 4, - 7, - 1 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1124", - "ct": 1688920907, - "exp": 1250, - "g": 5, - "id": 221027633, - "l": true, - "name": "Arunka", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1126", - "ct": 1688984548, - "exp": 1250, - "g": 5, - "id": 225117695, - "l": true, - "name": "Lua", - "opt": 1, - "st": 0, - "z": 1, - "stars": 5, - "awaken": 1 - }, - { - "code": "c2089", - "ct": 1688994679, - "exp": 1384450, - "f": 2289, - "g": 6, - "id": 225876663, - "l": true, - "name": "Conqueror Lilias", - "opt": 3001, - "s": [ - 3, - 6, - 3 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2004", - "ct": 1688999380, - "d": 7, - "exp": 1190, - "g": 4, - "id": 226290315, - "l": true, - "name": "Wanderer Silk", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "a": true, - "code": "c6037", - "ct": 1689000350, - "d": 6, - "exp": 1110500, - "f": 1503, - "g": 6, - "id": 226377978, - "l": true, - "name": "Moon Bunny Dominiel", - "opt": 2021, - "s": [ - 5, - 6, - 3 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2005", - "ct": 1689000376, - "exp": 1190, - "g": 4, - "id": 226380601, - "l": true, - "name": "Celestial Mercedes", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2036", - "ct": 1689000393, - "exp": 1190, - "g": 4, - "id": 226382235, - "l": true, - "name": "Troublemaker Crozet", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2065", - "ct": 1689053732, - "exp": 1190, - "g": 4, - "id": 230001112, - "l": true, - "name": "Tempest Surin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "a": true, - "code": "c4004", - "ct": 1689221173, - "d": 7, - "exp": 833510, - "f": 2266, - "g": 6, - "id": 241191727, - "l": true, - "name": "Unbound Knight Arowell", - "opt": 21, - "s": [ - 5, - 3, - 5 - ], - "st": 0, - "stree": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c3034", - "ct": 1689301199, - "d": 7, - "exp": 3240, - "g": 3, - "id": 246179820, - "l": true, - "name": "Rikoris", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1086", - "ct": 1689345123, - "d": 6, - "exp": 9440, - "g": 4, - "id": 249685425, - "l": true, - "name": "Khawana", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "a": true, - "code": "c5082", - "ct": 1689845857, - "d": 1, - "exp": 1384450, - "f": 1500, - "g": 6, - "id": 279573776, - "l": true, - "name": "Ocean Breeze Luluca", - "opt": 3021, - "s": [ - 3, - 7, - 1 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c3015", - "ct": 1689948930, - "d": 7, - "exp": 840, - "g": 3, - "id": 286281807, - "l": true, - "name": "Sven", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c3095", - "ct": 1690210324, - "d": 6, - "exp": 840, - "g": 3, - "id": 297335230, - "l": true, - "name": "Batisse", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1009", - "ct": 1690327809, - "exp": 0, - "g": 5, - "id": 301462555, - "l": true, - "name": "Charlotte", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1017", - "ct": 1690464352, - "d": 4, - "exp": 522540, - "f": 33, - "g": 5, - "id": 306770592, - "l": true, - "name": "Achates", - "opt": 1, - "s": [ - null, - 2, - 3 - ], - "st": 0, - "z": 5, - "stars": 5, - "awaken": 5 - }, - { - "code": "c1119", - "ct": 1690466122, - "d": 3, - "exp": 1384450, - "f": 2528, - "g": 6, - "id": 306859366, - "l": true, - "name": "Zahhak", - "opt": 3021, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1049", - "ct": 1690643630, - "exp": 0, - "g": 5, - "id": 313000253, - "l": true, - "name": "Chloe", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1006", - "ct": 1690643713, - "exp": 1250, - "g": 5, - "id": 313003939, - "l": true, - "name": "Kise", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c3105", - "ct": 1690646147, - "d": 7, - "exp": 63815, - "g": 3, - "id": 313109293, - "l": true, - "name": "Ainos", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1012", - "ct": 1690647335, - "d": 6, - "exp": 1190, - "g": 4, - "id": 313156815, - "name": "Corvus", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "a": true, - "code": "c1074", - "ct": 1690647930, - "exp": 1384450, - "f": 1500, - "g": 6, - "id": 313179896, - "l": true, - "name": "Violet", - "opt": 1, - "s": [ - 5, - 1, - 5 - ], - "st": 0, - "z": 4, - "stars": 6, - "awaken": 4 - }, - { - "code": "c1065", - "ct": 1690882197, - "d": 6, - "exp": 522540, - "f": 86, - "g": 5, - "id": 319905485, - "l": true, - "name": "Surin", - "opt": 1, - "s": [ - null, - null, - 3 - ], - "st": 0, - "z": 5, - "stars": 5, - "awaken": 5 - }, - { - "code": "c3104", - "ct": 1690882209, - "d": 7, - "exp": 3540, - "g": 3, - "id": 319905853, - "l": true, - "name": "Sonia", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1042", - "ct": 1690933711, - "exp": 0, - "g": 5, - "id": 321217705, - "l": true, - "name": "Tywin", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1050", - "ct": 1691026609, - "exp": 650125, - "f": 116, - "g": 5, - "id": 323638178, - "l": true, - "name": "Tenebria", - "opt": 1, - "s": [ - null, - null, - 1 - ], - "st": 0, - "z": 5, - "stars": 5, - "awaken": 5 - }, - { - "code": "c5149", - "ct": 1691039576, - "exp": 1384450, - "f": 1722, - "g": 6, - "id": 326707479, - "l": true, - "name": "Lethe", - "opt": 3001, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1090", - "ct": 1691040748, - "exp": 650125, - "f": 410, - "g": 5, - "id": 326831592, - "l": true, - "name": "Ray", - "opt": 1, - "s": [ - null, - null, - 3 - ], - "st": 0, - "z": 5, - "stars": 5, - "awaken": 5 - }, - { - "code": "c2073", - "ct": 1691041751, - "exp": 1384450, - "f": 2087, - "g": 6, - "id": 326928979, - "l": true, - "name": "Mediator Kawerik", - "opt": 3001, - "s": [ - 5, - 6, - 3 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2003", - "ct": 1691054570, - "exp": 1190, - "g": 4, - "id": 327820984, - "l": true, - "name": "Shadow Rose", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1085", - "ct": 1691297868, - "d": 6, - "exp": 7190, - "g": 4, - "id": 336730438, - "name": "Khawazu", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2019", - "ct": 1691801868, - "d": 1, - "exp": 1384450, - "f": 2425, - "g": 6, - "id": 350226992, - "l": true, - "name": "Apocalypse Ravi", - "opt": 3001, - "s": [ - 6, - 3, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c4044", - "ct": 1691971004, - "d": 7, - "exp": 833510, - "f": 2039, - "g": 6, - "id": 354206748, - "l": true, - "name": "Magic Scholar Doris", - "opt": 21, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "stree": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2031", - "ct": 1692102496, - "d": 6, - "exp": 522540, - "g": 5, - "id": 357149374, - "l": true, - "name": "Auxiliary Lots", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1015", - "ct": 1692263475, - "exp": 1250, - "g": 5, - "id": 360502881, - "l": true, - "name": "Baal & Sezan", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c3074", - "ct": 1692263504, - "d": 7, - "exp": 840, - "g": 3, - "id": 360523635, - "l": true, - "name": "Gloomyrain", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c2037", - "ct": 1692263514, - "exp": 1190, - "g": 4, - "id": 360531151, - "l": true, - "name": "Challenger Dominiel", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c6011", - "ct": 1692263542, - "d": 6, - "exp": 1110500, - "f": 1644, - "g": 6, - "id": 360551102, - "l": true, - "name": "Last Piece Karin", - "opt": 3001, - "s": [ - 6, - 7, - 1 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2109", - "ct": 1692264096, - "exp": 1384450, - "f": 4744, - "g": 6, - "id": 360878989, - "l": true, - "name": "Navy Captain Landy", - "opt": 3001, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c3135", - "ct": 1692575971, - "d": 7, - "exp": 2040, - "g": 3, - "id": 376153919, - "l": true, - "name": "Hasol", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1106", - "ct": 1692662581, - "exp": 1250, - "g": 5, - "id": 379995788, - "l": true, - "name": "Senya", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2022", - "ct": 1692881860, - "exp": 1384450, - "f": 1818, - "g": 6, - "id": 389494760, - "l": true, - "name": "Destina", - "opt": 3001, - "s": [ - 5, - 3, - 6 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1116", - "ct": 1693457166, - "exp": 650125, - "f": 8, - "g": 5, - "id": 403357976, - "l": true, - "name": "Emilia", - "opt": 1, - "st": 0, - "z": 1, - "stars": 5, - "awaken": 1 - }, - { - "code": "c6062", - "ct": 1693457424, - "d": 6, - "exp": 1110500, - "f": 7, - "g": 6, - "id": 403476926, - "l": true, - "name": "Angel of Light Angelica", - "opt": 21, - "s": [ - 4, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1131", - "ct": 1693704969, - "exp": 1384450, - "f": 1235, - "g": 6, - "id": 412803674, - "l": true, - "name": "Yulha", - "opt": 1, - "s": [ - 3, - null, - 3 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1009", - "ct": 1693958120, - "exp": 0, - "g": 5, - "id": 418000772, - "l": true, - "name": "Charlotte", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1006", - "ct": 1694179819, - "exp": 1250, - "g": 5, - "id": 422317877, - "l": true, - "name": "Kise", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c3003", - "ct": 1694320891, - "d": 7, - "exp": 2640, - "g": 3, - "id": 424808145, - "l": true, - "name": "Kluri", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c2029", - "ct": 1694669606, - "exp": 1190, - "g": 4, - "id": 430277824, - "l": true, - "name": "Roaming Warrior Leo", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2079", - "ct": 1694791065, - "d": 5, - "exp": 1384450, - "f": 4957, - "g": 6, - "id": 434015426, - "l": true, - "name": "Lionheart Cermia", - "opt": 3021, - "s": [ - 7, - 1, - 7 - ], - "skin_code": "c2079_s01", - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1014", - "ct": 1694997530, - "d": 6, - "exp": 522540, - "g": 5, - "id": 440334191, - "l": true, - "name": "Cidd", - "opt": 1, - "s": [ - 3, - 3, - 3 - ], - "st": 0, - "z": 5, - "stars": 5, - "awaken": 5 - }, - { - "code": "c3075", - "ct": 1695080686, - "d": 7, - "exp": 840, - "g": 3, - "id": 442609423, - "l": true, - "name": "Requiemroar", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c2070", - "ct": 1695166090, - "d": 5, - "exp": 1384450, - "f": 3085, - "g": 6, - "id": 445022861, - "l": true, - "name": "Last Rider Krau", - "opt": 3021, - "s": [ - null, - 5, - 5 - ], - "skin_code": "c2070_s01", - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2036", - "ct": 1695254183, - "exp": 1190, - "g": 4, - "id": 447264619, - "l": true, - "name": "Troublemaker Crozet", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1033", - "ct": 1695512496, - "d": 6, - "exp": 1190, - "g": 4, - "id": 455687994, - "name": "Coli", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2032", - "ct": 1695598000, - "exp": 1190, - "g": 4, - "id": 458646767, - "l": true, - "name": "Fighter Maya", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1150", - "ct": 1695730782, - "d": 6, - "exp": 1110500, - "f": 67, - "g": 6, - "id": 461351155, - "l": true, - "name": "Veronica", - "opt": 21, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1151", - "ct": 1695796413, - "exp": 650125, - "f": 1619, - "g": 5, - "id": 461989175, - "l": true, - "name": "Nahkwol", - "opt": 3001, - "s": [ - null, - null, - 3 - ], - "st": 0, - "z": 5, - "stars": 5, - "awaken": 5 - }, - { - "code": "c3151", - "ct": 1695799754, - "d": 4, - "exp": 2040, - "g": 3, - "id": 463031829, - "l": true, - "name": "Juni", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1006", - "ct": 1696027573, - "exp": 1250, - "g": 5, - "id": 471386693, - "name": "Kise", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c3124", - "ct": 1696082635, - "d": 7, - "exp": 392415, - "f": 7, - "g": 5, - "id": 473350938, - "l": true, - "name": "Camilla", - "opt": 1, - "s": [ - 7, - 1, - 4 - ], - "st": 0, - "z": 5, - "stars": 5, - "awaken": 5 - }, - { - "code": "c1111", - "ct": 1696307739, - "exp": 1384450, - "f": 2956, - "g": 6, - "id": 480028811, - "l": true, - "name": "Eda", - "opt": 1, - "s": [ - null, - 4, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1145", - "ct": 1696850547, - "d": 3, - "exp": 1384450, - "f": 11675, - "g": 6, - "id": 490684210, - "l": true, - "name": "Brieg", - "opt": 3021, - "s": [ - 3, - 3, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c5089", - "ct": 1697096248, - "d": 1, - "exp": 1384450, - "f": 1717, - "g": 6, - "id": 494187001, - "l": true, - "name": "Midnight Gala Lilias", - "opt": 3021, - "s": [ - 5, - 4, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c4071", - "ct": 1697763208, - "d": 9, - "exp": 63815, - "g": 3, - "id": 502450559, - "l": true, - "name": "Zealot Carmainerose", - "opt": 1, - "st": 0, - "stree": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "z": 1, - "stars": 3, - "awaken": 1 - }, - { - "code": "c2014", - "ct": 1697896641, - "exp": 1190, - "g": 4, - "id": 503988683, - "l": true, - "name": "Assassin Cidd", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1099", - "ct": 1697989269, - "exp": 1250, - "g": 5, - "id": 504872654, - "l": true, - "name": "Command Model Laika", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1039", - "ct": 1699454152, - "exp": 1250, - "g": 5, - "id": 518417259, - "name": "Haste", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2091", - "ct": 1699454593, - "exp": 1384450, - "f": 2658, - "g": 6, - "id": 518421029, - "l": true, - "name": "Astromancer Elena", - "opt": 3001, - "s": [ - null, - 1, - 7 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c5050", - "ct": 1699503554, - "exp": 1250, - "g": 5, - "id": 518779568, - "l": true, - "name": "Fairytale Tenebria", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c5024", - "ct": 1699503567, - "exp": 1384450, - "f": 2788, - "g": 6, - "id": 518782830, - "l": true, - "name": "Summertime Iseria", - "opt": 3001, - "s": [ - 4, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1081", - "ct": 1699673015, - "exp": 0, - "g": 5, - "id": 522853044, - "l": true, - "name": "Cerise", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1016", - "ct": 1699891499, - "exp": 1384450, - "f": 1596, - "g": 6, - "id": 525461035, - "l": true, - "name": "Yufine", - "opt": 3001, - "s": [ - 6 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c3157", - "ct": 1700613919, - "d": 5, - "exp": 840, - "g": 3, - "id": 534405026, - "l": true, - "name": "Ezra", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c2005", - "ct": 1700787287, - "exp": 1190, - "g": 4, - "id": 536961122, - "l": true, - "name": "Celestial Mercedes", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1126", - "ct": 1701226044, - "exp": 1250, - "g": 5, - "id": 541108842, - "l": true, - "name": "Lua", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2017", - "ct": 1701667435, - "d": 2, - "exp": 228480, - "f": 39, - "g": 4, - "id": 545449824, - "l": true, - "name": "Shooting Star Achates", - "opt": 1, - "st": 0, - "z": 3, - "stars": 4, - "awaken": 3 - }, - { - "code": "c1123", - "ct": 1701925777, - "d": 5, - "exp": 0, - "g": 5, - "id": 547723200, - "l": true, - "name": "Shuna", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1121", - "ct": 1701952015, - "exp": 650125, - "f": 1658, - "g": 5, - "id": 549294853, - "l": true, - "name": "Rimuru", - "opt": 3001, - "s": [ - null, - null, - 3 - ], - "st": 0, - "z": 5, - "stars": 5, - "awaken": 5 - }, - { - "code": "c2042", - "ct": 1702511722, - "d": 1, - "exp": 1384450, - "f": 1523, - "g": 6, - "id": 559859822, - "l": true, - "name": "Ambitious Tywin", - "opt": 3021, - "s": [ - 2, - 4, - 6 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c4158", - "ct": 1702511722, - "d": 7, - "exp": 833510, - "f": 543, - "g": 6, - "id": 559859824, - "l": true, - "name": "Inheritor Amiki", - "opt": 21, - "s": [ - 6, - 3, - 6 - ], - "st": 0, - "stree": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2020", - "ct": 1702596476, - "d": 7, - "exp": 1110500, - "f": 2237, - "g": 6, - "id": 562155721, - "l": true, - "name": "Watcher Schuri", - "opt": 1, - "s": [ - 3, - 4, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1029", - "ct": 1702774005, - "d": 6, - "exp": 1190, - "f": 1403, - "g": 4, - "id": 565017550, - "l": true, - "name": "Leo", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2062", - "ct": 1702873261, - "d": 6, - "exp": 1110500, - "f": 380, - "g": 6, - "id": 566472035, - "l": true, - "name": "Sinful Angelica", - "opt": 21, - "s": [ - null, - 5, - 1 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1089", - "ct": 1703033080, - "exp": 0, - "g": 5, - "id": 568417281, - "l": true, - "name": "Lilias", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1101", - "ct": 1703052783, - "exp": 1384450, - "f": 1598, - "g": 6, - "id": 568689715, - "l": true, - "name": "Choux", - "opt": 3001, - "s": [ - 3, - 3, - 3 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1090", - "ct": 1703297447, - "exp": 1250, - "g": 5, - "id": 571546673, - "name": "Ray", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1032", - "ct": 1703898752, - "d": 6, - "exp": 1190, - "g": 4, - "id": 582763835, - "name": "Maya", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1046", - "ct": 1703998290, - "exp": 1384450, - "f": 17, - "g": 6, - "id": 583954927, - "l": true, - "name": "Lidica", - "opt": 1, - "s": [ - null, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c3084", - "ct": 1704256140, - "exp": 0, - "g": 3, - "id": 586523410, - "l": true, - "name": "Kikirat v2", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c3153", - "ct": 1704791353, - "d": 7, - "exp": 840, - "g": 3, - "id": 590699636, - "l": true, - "name": "Lilka", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1154", - "ct": 1704791359, - "exp": 1384450, - "f": 134, - "g": 6, - "id": 590699704, - "l": true, - "name": "Byblis", - "opt": 1, - "s": [ - 2, - 4, - 3 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2047", - "ct": 1704850850, - "exp": 1384450, - "f": 2160, - "g": 6, - "id": 591089796, - "l": true, - "name": "Martial Artist Ken", - "opt": 3001, - "s": [ - 6, - 3, - 6 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1043", - "ct": 1704934971, - "d": 6, - "exp": 1190, - "g": 4, - "id": 591660134, - "name": "Romann", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2069", - "ct": 1705372316, - "d": 5, - "exp": 1384450, - "f": 3986, - "g": 6, - "id": 596366779, - "l": true, - "name": "Eternal Wanderer Ludwig", - "opt": 3021, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2004", - "ct": 1705375717, - "exp": 1190, - "g": 4, - "id": 596392703, - "l": true, - "name": "Wanderer Silk", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2035", - "ct": 1706586624, - "d": 7, - "exp": 1110500, - "f": 3, - "g": 6, - "id": 604874070, - "l": true, - "name": "General Purrgis", - "opt": 21, - "s": [ - null, - 2, - 4 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2036", - "ct": 1707291054, - "exp": 1190, - "g": 4, - "id": 608926381, - "name": "Troublemaker Crozet", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c5071", - "ct": 1707877825, - "exp": 1384450, - "f": 1, - "g": 6, - "id": 613630545, - "l": true, - "name": "Seaside Bellona", - "opt": 1, - "s": [ - 2, - 3, - 6 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1133", - "ct": 1708571274, - "d": 5, - "exp": 1384450, - "f": 3162, - "g": 6, - "id": 618609916, - "l": true, - "name": "Zio", - "opt": 3021, - "s": [ - 5, - 5, - 3 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1144", - "ct": 1708698197, - "d": 1, - "exp": 1384450, - "f": 2235, - "g": 6, - "id": 620426700, - "l": true, - "name": "Abigail", - "opt": 3001, - "s": [ - null, - 1, - 3 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2028", - "ct": 1708917457, - "exp": 1190, - "g": 4, - "id": 621886932, - "l": true, - "name": "Kitty Clarissa", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1127", - "ct": 1709107592, - "exp": 50750, - "g": 5, - "id": 622922254, - "l": true, - "name": "Taeyou", - "opt": 1, - "st": 0, - "z": 2, - "stars": 5, - "awaken": 2 - }, - { - "code": "c2065", - "ct": 1709697105, - "exp": 1190, - "g": 4, - "id": 625911964, - "name": "Tempest Surin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1082", - "ct": 1709860912, - "exp": 1250, - "g": 5, - "id": 627243561, - "name": "Luluca", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1039", - "ct": 1710300420, - "exp": 1250, - "g": 5, - "id": 629518009, - "l": true, - "name": "Haste", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2087", - "ct": 1711254847, - "exp": 1190, - "g": 4, - "id": 635778122, - "l": true, - "name": "Peacemaker Furious", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "a": true, - "code": "c1091", - "ct": 1711436821, - "d": 3, - "exp": 1384450, - "f": 1518, - "g": 6, - "id": 636577158, - "l": true, - "name": "Elena", - "opt": 3021, - "s": [ - null, - 7, - 2 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2036", - "ct": 1711962573, - "exp": 1190, - "g": 4, - "id": 639220019, - "name": "Troublemaker Crozet", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1055", - "ct": 1712203434, - "d": 2, - "exp": 1384450, - "f": 1580, - "g": 6, - "id": 640588979, - "l": true, - "name": "Jenua", - "opt": 3021, - "s": [ - 5, - 1, - 7 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2053", - "ct": 1713055321, - "exp": 650125, - "g": 5, - "id": 644899362, - "l": true, - "name": "Desert Jewel Basar", - "opt": 1, - "st": 0, - "z": 2, - "stars": 5, - "awaken": 2 - }, - { - "code": "c2112", - "ct": 1714022635, - "d": 1, - "exp": 1384450, - "f": 3176, - "g": 6, - "id": 649028156, - "l": true, - "name": "Sea Phantom Politis", - "opt": 3021, - "s": [ - 3, - 7, - 1 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1155", - "ct": 1714622058, - "d": 5, - "exp": 0, - "g": 5, - "id": 653128055, - "l": true, - "name": "Ainz Ooal Gown", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1156", - "ct": 1714653245, - "exp": 1384450, - "f": 6, - "g": 6, - "id": 654043337, - "l": true, - "name": "Albedo", - "opt": 1, - "s": [ - 3, - 5, - 4 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1006", - "ct": 1714657205, - "exp": 1250, - "g": 5, - "id": 654110906, - "name": "Kise", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1030", - "ct": 1714661387, - "exp": 0, - "g": 5, - "id": 654185623, - "l": true, - "name": "Yuna", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c3054", - "ct": 1714661436, - "d": 7, - "exp": 840, - "g": 3, - "id": 654186475, - "l": true, - "name": "Elson", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1010", - "ct": 1714793892, - "d": 6, - "exp": 1190, - "g": 4, - "id": 656042400, - "l": true, - "name": "Zerato", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c3163", - "ct": 1715042923, - "exp": 392415, - "f": 4, - "g": 5, - "id": 659243748, - "l": true, - "name": "Leah", - "opt": 1, - "s": [ - null, - 6, - 3 - ], - "st": 0, - "z": 4, - "stars": 5, - "awaken": 4 - }, - { - "code": "c1157", - "ct": 1715332266, - "exp": 50750, - "g": 5, - "id": 663498964, - "l": true, - "name": "Shalltear", - "opt": 1, - "st": 0, - "z": 2, - "stars": 5, - "awaken": 2 - }, - { - "a": true, - "code": "c1142", - "ct": 1715937546, - "d": 1, - "exp": 1384450, - "f": 1507, - "g": 6, - "id": 669363338, - "l": true, - "name": "Eligos", - "opt": 3001, - "s": [ - 7, - 1, - 7 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2020", - "ct": 1716340623, - "exp": 1190, - "g": 4, - "id": 672399111, - "name": "Watcher Schuri", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c6014", - "ct": 1717121846, - "d": 6, - "exp": 1190, - "g": 4, - "id": 677869691, - "l": true, - "name": "Wandering Prince Cidd", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1147", - "ct": 1717744352, - "exp": 1250, - "g": 5, - "id": 683451634, - "l": true, - "name": "Fumyr", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1125", - "ct": 1717813570, - "exp": 1250, - "g": 5, - "id": 683971110, - "l": true, - "name": "Peira", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2029", - "ct": 1717861743, - "d": 6, - "exp": 1190, - "g": 4, - "id": 684343329, - "l": true, - "name": "Roaming Warrior Leo", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "a": true, - "code": "c1161", - "ct": 1718855758, - "exp": 1384450, - "f": 1725, - "g": 6, - "id": 690904230, - "l": true, - "name": "Immortal Wukong", - "opt": 1, - "s": [ - 4, - 4, - 4 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1003", - "ct": 1719022190, - "exp": 1190, - "g": 4, - "id": 694125633, - "name": "Rose", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c3162", - "ct": 1719219351, - "d": 2, - "exp": 840, - "g": 3, - "id": 697089179, - "l": true, - "name": "Bernard", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c2086", - "ct": 1719278174, - "exp": 1190, - "g": 4, - "id": 697938268, - "name": "Great Chief Khawana", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2021", - "ct": 1719449435, - "exp": 1190, - "g": 4, - "id": 700466061, - "name": "Blaze Dingo", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1103", - "ct": 1719729849, - "d": 1, - "exp": 1384450, - "f": 1510, - "g": 6, - "id": 704271358, - "l": true, - "name": "Celine", - "opt": 3021, - "s": [ - 4, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1069", - "ct": 1719887339, - "exp": 1250, - "g": 5, - "id": 705706310, - "l": true, - "name": "Ludwig", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1159", - "ct": 1719887339, - "exp": 1384450, - "f": 2, - "g": 6, - "id": 705706311, - "l": true, - "name": "Laia", - "opt": 1, - "s": [ - 3, - 3, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1035", - "ct": 1720502364, - "exp": 0, - "g": 4, - "id": 709260574, - "name": "Purrgis", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2066", - "ct": 1721290967, - "d": 2, - "exp": 1384450, - "f": 2455, - "g": 6, - "id": 713583798, - "l": true, - "name": "New Moon Luna", - "opt": 3021, - "s": [ - 4, - 4, - 3 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1148", - "ct": 1721292260, - "d": 1, - "exp": 1384450, - "f": 7, - "g": 6, - "id": 713631381, - "l": true, - "name": "Elvira", - "opt": 21, - "s": [ - null, - null, - 3 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1028", - "ct": 1721292366, - "exp": 1190, - "g": 4, - "id": 713635239, - "name": "Clarissa", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1037", - "ct": 1721292366, - "exp": 1190, - "g": 4, - "id": 713635240, - "l": true, - "name": "Dominiel", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c5009", - "ct": 1721293423, - "exp": 33000, - "g": 5, - "id": 713670191, - "l": true, - "name": "Summer Break Charlotte", - "opt": 1, - "st": 0, - "z": 2, - "stars": 5, - "awaken": 2 - }, - { - "code": "c2085", - "ct": 1721315297, - "exp": 1190, - "g": 4, - "id": 714211978, - "l": true, - "name": "Inferno Khawazu", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1019", - "ct": 1721655579, - "d": 1, - "exp": 1250, - "g": 5, - "id": 717223364, - "l": true, - "name": "Ravi", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1066", - "ct": 1722101719, - "exp": 0, - "g": 5, - "id": 720757642, - "l": true, - "name": "Luna", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2099", - "ct": 1722403018, - "exp": 1250, - "g": 5, - "id": 722768494, - "l": true, - "name": "Architect Laika", - "opt": 1, - "st": 0, - "z": 1, - "stars": 5, - "awaken": 1 - }, - { - "code": "c3155", - "ct": 1723354015, - "d": 5, - "exp": 840, - "g": 3, - "id": 727911008, - "l": true, - "name": "Suthan", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c6008", - "ct": 1723724804, - "exp": 1190, - "g": 4, - "id": 729505568, - "name": "Bad Cat Armin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1143", - "ct": 1724576642, - "exp": 0, - "g": 5, - "id": 734132565, - "l": true, - "name": "Amid", - "opt": 1, - "st": 0, - "z": 1, - "stars": 5, - "awaken": 1 - }, - { - "code": "c2071", - "ct": 1724916247, - "exp": 1384450, - "f": 1302, - "g": 6, - "id": 736028830, - "l": true, - "name": "Lone Crescent Bellona", - "opt": 1, - "s": [ - 3, - 4, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2003", - "ct": 1725327062, - "exp": 1190, - "g": 4, - "id": 738613926, - "name": "Shadow Rose", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2011", - "ct": 1725327096, - "d": 6, - "exp": 1110500, - "f": 1765, - "g": 6, - "id": 738614105, - "l": true, - "name": "Blood Blade Karin", - "opt": 3021, - "s": [ - 3, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2085", - "ct": 1725354805, - "exp": 1190, - "g": 4, - "id": 738790497, - "name": "Inferno Khawazu", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1163", - "ct": 1725505512, - "d": 1, - "exp": 1384450, - "f": 1975, - "g": 6, - "id": 739641017, - "l": true, - "name": "Frida", - "opt": 3021, - "s": [ - null, - 3, - 6 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1072", - "ct": 1725848316, - "exp": 0, - "g": 5, - "id": 742543115, - "name": "Sigret", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1006", - "ct": 1726127848, - "exp": 0, - "g": 5, - "id": 745533074, - "name": "Kise", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c6017", - "ct": 1726244362, - "exp": 1190, - "g": 4, - "id": 747633084, - "l": true, - "name": "Infinite Horizon Achates", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2005", - "ct": 1726270592, - "exp": 1190, - "g": 4, - "id": 748202380, - "name": "Celestial Mercedes", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2011", - "ct": 1726530342, - "exp": 1190, - "g": 4, - "id": 753164340, - "name": "Blood Blade Karin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2021", - "ct": 1726703776, - "exp": 1190, - "g": 4, - "id": 756139227, - "name": "Blaze Dingo", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c6037", - "ct": 1726789914, - "exp": 1190, - "g": 4, - "id": 757618535, - "name": "Moon Bunny Dominiel", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2031", - "ct": 1726832217, - "exp": 1190, - "g": 4, - "id": 758299168, - "name": "Auxiliary Lots", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2010", - "ct": 1726967321, - "exp": 1190, - "g": 4, - "id": 760775065, - "name": "Champion Zerato", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c6017", - "ct": 1727135906, - "exp": 1190, - "g": 4, - "id": 764105337, - "name": "Infinite Horizon Achates", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2018", - "ct": 1727223703, - "exp": 1190, - "g": 4, - "id": 765454999, - "name": "Guider Aither", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2008", - "ct": 1727223721, - "d": 3, - "exp": 1190, - "g": 4, - "id": 765455465, - "name": "Crimson Armin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1110", - "ct": 1727227245, - "exp": 0, - "g": 5, - "id": 765537981, - "l": true, - "name": "Flan", - "opt": 1, - "st": 0, - "z": 1, - "stars": 5, - "awaken": 1 - }, - { - "code": "c2035", - "ct": 1727394517, - "exp": 1190, - "g": 4, - "id": 767590407, - "name": "General Purrgis", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1009", - "ct": 1727394592, - "exp": 0, - "g": 5, - "id": 767592356, - "name": "Charlotte", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1073", - "ct": 1727508027, - "exp": 0, - "g": 5, - "id": 769109420, - "l": true, - "name": "Kawerik", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2005", - "ct": 1727565708, - "exp": 1190, - "g": 4, - "id": 769782467, - "name": "Celestial Mercedes", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2031", - "ct": 1727565722, - "exp": 1190, - "g": 4, - "id": 769782856, - "name": "Auxiliary Lots", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1104", - "ct": 1727572976, - "d": 1, - "exp": 1384450, - "f": 1968, - "g": 6, - "id": 769932771, - "name": "Mort", - "opt": 3021, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1029", - "ct": 1727748919, - "exp": 0, - "g": 4, - "id": 771961989, - "name": "Leo", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c6011", - "ct": 1727924536, - "exp": 1190, - "g": 4, - "id": 774326816, - "name": "Last Piece Karin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1158", - "ct": 1727924557, - "exp": 13782, - "f": 9, - "g": 5, - "id": 774330313, - "name": "Fenris", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c3165", - "ct": 1728175276, - "d": 7, - "exp": 840, - "g": 3, - "id": 777665978, - "l": true, - "name": "Pernilla", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c2028", - "ct": 1728175279, - "exp": 1190, - "g": 4, - "id": 777666018, - "name": "Kitty Clarissa", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2101", - "ct": 1728175291, - "exp": 1384450, - "f": 1431, - "g": 6, - "id": 777666204, - "l": true, - "name": "Urban Shadow Choux", - "opt": 1, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2043", - "ct": 1728407903, - "exp": 1190, - "g": 4, - "id": 780423488, - "name": "Benevolent Romann", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2015", - "ct": 1728465216, - "exp": 1250, - "g": 5, - "id": 781143454, - "l": true, - "name": "Sage Baal & Sezan", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2072", - "ct": 1728465216, - "exp": 1250, - "g": 5, - "id": 781143455, - "l": true, - "name": "Operator Sigret", - "opt": 1, - "st": 0, - "z": 1, - "stars": 5, - "awaken": 1 - }, - { - "code": "c1079", - "ct": 1728483165, - "exp": 0, - "g": 5, - "id": 781345622, - "name": "Cermia", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2002", - "ct": 1728516235, - "exp": 1384450, - "f": 1184, - "g": 6, - "id": 781837305, - "l": true, - "name": "Fallen Cecilia", - "opt": 1, - "s": [ - 3, - 5, - 3 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2015", - "ct": 1728602465, - "exp": 1250, - "g": 5, - "id": 783871215, - "l": true, - "name": "Sage Baal & Sezan", - "opt": 1, - "st": 0, - "z": 1, - "stars": 5, - "awaken": 1 - }, - { - "code": "c1100", - "ct": 1728623353, - "d": 5, - "exp": 1384450, - "f": 2926, - "g": 6, - "id": 784315107, - "l": true, - "name": "Alencia", - "opt": 3021, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1048", - "ct": 1728634897, - "exp": 0, - "g": 5, - "id": 784460720, - "name": "Aramintha", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1003", - "ct": 1729055377, - "exp": 1190, - "g": 4, - "id": 788942610, - "name": "Rose", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1125", - "ct": 1729055386, - "exp": 1250, - "g": 5, - "id": 788942664, - "name": "Peira", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1160", - "ct": 1729055403, - "exp": 1250, - "g": 5, - "id": 788942790, - "name": "Birgitta", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1080", - "ct": 1729065887, - "exp": 1250, - "g": 5, - "id": 789011818, - "name": "Pavel", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2032", - "ct": 1729512823, - "d": 2, - "exp": 1190, - "g": 4, - "id": 792704116, - "name": "Fighter Maya", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2020", - "ct": 1729512857, - "exp": 1190, - "g": 4, - "id": 792704331, - "name": "Watcher Schuri", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1007", - "ct": 1729657821, - "d": 5, - "exp": 1384450, - "f": 1744, - "g": 6, - "id": 793619248, - "name": "Vildred", - "opt": 3001, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1038", - "ct": 1729921198, - "d": 2, - "exp": 1384450, - "f": 1512, - "g": 6, - "id": 795195383, - "l": true, - "name": "Sez", - "opt": 3021, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1096", - "ct": 1729921234, - "exp": 0, - "g": 5, - "id": 795195612, - "name": "Melissa", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c5110", - "ct": 1730352170, - "d": 5, - "exp": 1384450, - "f": 2568, - "g": 6, - "id": 798777729, - "l": true, - "name": "Afternoon Soak Flan", - "opt": 3021, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1153", - "ct": 1730386484, - "d": 1, - "exp": 1384450, - "f": 1566, - "g": 6, - "id": 799495489, - "l": true, - "name": "Harsetti", - "opt": 3021, - "s": [ - 7, - null, - 8 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1014", - "ct": 1730719416, - "exp": 1190, - "g": 4, - "id": 802066027, - "name": "Cidd", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2021", - "ct": 1730768489, - "exp": 1190, - "g": 4, - "id": 802422024, - "name": "Blaze Dingo", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1111", - "ct": 1731232616, - "exp": 1250, - "g": 5, - "id": 806245922, - "name": "Eda", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2013", - "ct": 1732608860, - "exp": 1190, - "g": 4, - "id": 816373029, - "name": "Assassin Cartuja", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1031", - "ct": 1732623781, - "d": 6, - "exp": 1190, - "g": 4, - "id": 816434203, - "l": true, - "name": "Lots", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2053", - "ct": 1733034882, - "exp": 1250, - "g": 5, - "id": 819542674, - "name": "Desert Jewel Basar", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c3160", - "ct": 1733189362, - "exp": 840, - "g": 3, - "id": 821096066, - "l": true, - "name": "Revna", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c2014", - "ct": 1733965880, - "exp": 1190, - "g": 4, - "id": 825069679, - "name": "Assassin Cidd", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1047", - "ct": 1733983381, - "exp": 1250, - "g": 5, - "id": 825212632, - "name": "Ken", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1015", - "ct": 1734059131, - "exp": 1250, - "g": 5, - "id": 825583290, - "name": "Baal & Sezan", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "a": true, - "code": "c1022", - "ct": 1735030551, - "exp": 1384450, - "f": 1503, - "g": 6, - "id": 829105288, - "l": true, - "name": "Ruele of Light", - "opt": 3001, - "s": [ - 4, - 5, - 2 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1162", - "ct": 1735198134, - "exp": 1384450, - "f": 537, - "g": 6, - "id": 830235768, - "l": true, - "name": "Young Senya", - "opt": 1, - "s": [ - null, - 5, - 4 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1102", - "ct": 1735371046, - "exp": 1250, - "g": 5, - "id": 831124668, - "name": "Roana", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1020", - "ct": 1735800397, - "d": 6, - "exp": 1190, - "g": 4, - "id": 832810039, - "name": "Schuri", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1095", - "ct": 1736613290, - "exp": 1250, - "g": 5, - "id": 837159170, - "name": "Lilibet", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1006", - "ct": 1736901651, - "exp": 0, - "g": 5, - "id": 839183431, - "name": "Kise", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1009", - "ct": 1737423137, - "exp": 0, - "g": 5, - "id": 841561890, - "name": "Charlotte", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2037", - "ct": 1737702815, - "exp": 1190, - "g": 4, - "id": 843031086, - "name": "Challenger Dominiel", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2036", - "ct": 1737803188, - "exp": 1190, - "g": 4, - "id": 843551487, - "name": "Troublemaker Crozet", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1053", - "ct": 1738044569, - "exp": 1250, - "g": 5, - "id": 844765495, - "name": "Basar", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2038", - "ct": 1738325778, - "exp": 1250, - "g": 5, - "id": 845965646, - "l": true, - "name": "Specimen Sez", - "opt": 1, - "st": 0, - "z": 1, - "stars": 5, - "awaken": 1 - }, - { - "code": "c6017", - "ct": 1738634839, - "exp": 1190, - "g": 4, - "id": 846980694, - "name": "Infinite Horizon Achates", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1054", - "ct": 1738637005, - "exp": 1190, - "g": 4, - "id": 846989211, - "name": "Rin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1170", - "ct": 1738811830, - "exp": 1384450, - "f": 3832, - "g": 6, - "id": 847822619, - "l": true, - "name": "Fenne", - "opt": 3001, - "s": [ - 5, - 3, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c6014", - "ct": 1738981000, - "exp": 1190, - "g": 4, - "id": 849101161, - "name": "Wandering Prince Cidd", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2086", - "ct": 1739326517, - "exp": 1190, - "g": 4, - "id": 850569245, - "name": "Great Chief Khawana", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1085", - "ct": 1739456625, - "exp": 0, - "g": 4, - "id": 851407497, - "name": "Khawazu", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2043", - "ct": 1739857998, - "exp": 1190, - "g": 4, - "id": 853072574, - "name": "Benevolent Romann", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2054", - "ct": 1740733905, - "exp": 1190, - "g": 4, - "id": 857679008, - "name": "Crescent Moon Rin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c5016", - "ct": 1741932122, - "exp": 1250, - "g": 5, - "id": 865374067, - "name": "Holiday Yufine", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1076", - "ct": 1742957662, - "exp": 0, - "g": 5, - "id": 870453193, - "l": true, - "name": "Diene", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2020", - "ct": 1743226650, - "exp": 1190, - "g": 4, - "id": 872420987, - "name": "Watcher Schuri", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2029", - "ct": 1743404217, - "exp": 1190, - "g": 4, - "id": 874113059, - "name": "Roaming Warrior Leo", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2012", - "ct": 1743468640, - "exp": 1250, - "g": 5, - "id": 874653614, - "name": "Dark Corvus", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1054", - "ct": 1744189225, - "exp": 0, - "g": 4, - "id": 880181269, - "name": "Rin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1006", - "ct": 1744189225, - "exp": 0, - "g": 5, - "id": 880181271, - "name": "Kise", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1003", - "ct": 1744189225, - "exp": 0, - "g": 4, - "id": 880181272, - "name": "Rose", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1010", - "ct": 1744189225, - "exp": 0, - "g": 4, - "id": 880181274, - "name": "Zerato", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1006", - "ct": 1744189225, - "exp": 0, - "g": 5, - "id": 880181276, - "name": "Kise", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1086", - "ct": 1744435669, - "exp": 1190, - "g": 4, - "id": 880781768, - "name": "Khawana", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1095", - "ct": 1745369706, - "exp": 1250, - "g": 5, - "id": 885173208, - "name": "Lilibet", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1166", - "ct": 1745646313, - "exp": 3180, - "g": 4, - "id": 887329296, - "name": "Victorika", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1032", - "ct": 1745801247, - "exp": 1190, - "g": 4, - "id": 888454074, - "name": "Maya", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c3006", - "ct": 1745802411, - "exp": 0, - "g": 3, - "id": 888466672, - "name": "Bask", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c3006", - "ct": 1745803071, - "exp": 0, - "g": 3, - "id": 888474090, - "name": "Bask", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c3006", - "ct": 1745803071, - "exp": 0, - "g": 3, - "id": 888474091, - "name": "Bask", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c3006", - "ct": 1745809525, - "exp": 0, - "g": 3, - "id": 888535983, - "name": "Bask", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c3006", - "ct": 1745809525, - "exp": 0, - "g": 3, - "id": 888535985, - "name": "Bask", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c3006", - "ct": 1745809525, - "exp": 0, - "g": 3, - "id": 888535988, - "name": "Bask", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c2015", - "ct": 1745974398, - "exp": 1250, - "g": 5, - "id": 889945456, - "name": "Sage Baal & Sezan", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1034", - "ct": 1746072744, - "d": 5, - "exp": 1384450, - "f": 2587, - "g": 6, - "id": 890790459, - "l": true, - "name": "Straze", - "opt": 3021, - "s": [ - 5, - 3, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1088", - "ct": 1746111807, - "exp": 0, - "g": 5, - "id": 891089072, - "name": "Vivian", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1007", - "ct": 1746189218, - "exp": 1250, - "g": 5, - "id": 891521755, - "name": "Vildred", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1031", - "ct": 1746241211, - "exp": 1190, - "g": 4, - "id": 891743321, - "name": "Lots", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2106", - "ct": 1746396462, - "d": 1, - "exp": 1384450, - "f": 1522, - "g": 6, - "id": 892353109, - "l": true, - "name": "Dragon Bride Senya", - "opt": 3021, - "s": [ - 4, - 1, - 7 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2124", - "ct": 1746679162, - "d": 5, - "exp": 1384450, - "f": 714, - "g": 6, - "id": 893757497, - "l": true, - "name": "Boss Arunka", - "opt": 21, - "s": [ - 6, - 3, - 6 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1060", - "ct": 1746758209, - "exp": 1384450, - "f": 1, - "g": 6, - "id": 894623419, - "name": "Schniel", - "opt": 1, - "s": [ - null, - 1, - 1 - ], - "st": 0, - "z": 5, - "stars": 6, - "awaken": 5 - }, - { - "code": "c1072", - "ct": 1747006760, - "exp": 0, - "g": 5, - "id": 895661551, - "name": "Sigret", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1118", - "ct": 1747093837, - "exp": 1250, - "g": 5, - "id": 895977706, - "name": "Ran", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1168", - "ct": 1747311994, - "exp": 1384450, - "f": 432, - "g": 6, - "id": 897188455, - "l": true, - "name": "Rinak", - "opt": 1, - "s": [ - null, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c5004", - "ct": 1747608371, - "exp": 0, - "g": 5, - "id": 898222350, - "name": "Archdemon's Shadow", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c5070", - "ct": 1747887832, - "exp": 650125, - "f": 364, - "g": 5, - "id": 898971885, - "l": true, - "name": "Guard Captain Krau", - "opt": 1, - "st": 0, - "z": 1, - "stars": 5, - "awaken": 1 - }, - { - "code": "c5046", - "ct": 1747901013, - "exp": 1384450, - "f": 15, - "g": 6, - "id": 899011010, - "l": true, - "name": "Blooming Lidica", - "opt": 1, - "s": [ - 3, - 5, - 3 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1097", - "ct": 1747993818, - "exp": 0, - "g": 5, - "id": 899502338, - "name": "Bomb Model Kanna", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1146", - "ct": 1747996839, - "exp": 1384450, - "f": 11, - "g": 6, - "id": 899521626, - "l": true, - "name": "Benimaru", - "opt": 1, - "s": [ - null, - 4, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c6017", - "ct": 1748311835, - "exp": 1190, - "g": 4, - "id": 901890162, - "name": "Infinite Horizon Achates", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1012", - "ct": 1749028123, - "exp": 0, - "g": 4, - "id": 904716030, - "name": "Corvus", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1085", - "ct": 1749028123, - "exp": 0, - "g": 4, - "id": 904716031, - "name": "Khawazu", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1054", - "ct": 1749028123, - "exp": 0, - "g": 4, - "id": 904716033, - "name": "Rin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1085", - "ct": 1749028123, - "exp": 0, - "g": 4, - "id": 904716034, - "name": "Khawazu", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1099", - "ct": 1749028123, - "exp": 0, - "g": 5, - "id": 904716035, - "name": "Command Model Laika", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1011", - "ct": 1749028123, - "exp": 0, - "g": 4, - "id": 904716036, - "name": "Karin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1008", - "ct": 1749028123, - "exp": 0, - "g": 4, - "id": 904716037, - "name": "Armin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1017", - "ct": 1749028123, - "exp": 0, - "g": 4, - "id": 904716038, - "name": "Achates", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1004", - "ct": 1749028123, - "exp": 0, - "g": 4, - "id": 904716039, - "name": "Silk", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1065", - "ct": 1749106956, - "exp": 1190, - "g": 4, - "id": 904970815, - "name": "Surin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1029", - "ct": 1749620335, - "exp": 1190, - "g": 4, - "id": 907241836, - "name": "Leo", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1065", - "ct": 1749775144, - "exp": 1190, - "g": 4, - "id": 908262329, - "name": "Surin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1085", - "ct": 1749869798, - "exp": 0, - "g": 4, - "id": 908791603, - "name": "Khawazu", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1004", - "ct": 1749870553, - "exp": 1190, - "g": 4, - "id": 908796189, - "name": "Silk", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2087", - "ct": 1749905167, - "exp": 1190, - "g": 4, - "id": 908941809, - "name": "Peacemaker Furious", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1028", - "ct": 1749908653, - "exp": 1190, - "g": 4, - "id": 908956490, - "name": "Clarissa", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1008", - "ct": 1750311172, - "exp": 0, - "g": 4, - "id": 910891387, - "name": "Armin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1035", - "ct": 1750311172, - "exp": 0, - "g": 4, - "id": 910891388, - "name": "Purrgis", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1003", - "ct": 1750311501, - "exp": 1190, - "g": 4, - "id": 910908244, - "name": "Rose", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1096", - "ct": 1750423108, - "exp": 1250, - "g": 5, - "id": 912409120, - "name": "Melissa", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2087", - "ct": 1750483271, - "exp": 1190, - "g": 4, - "id": 912947591, - "name": "Peacemaker Furious", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1004", - "ct": 1750483271, - "exp": 1190, - "g": 4, - "id": 912947593, - "name": "Silk", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1013", - "ct": 1750735062, - "exp": 1190, - "g": 4, - "id": 914955758, - "name": "Cartuja", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1087", - "ct": 1750774024, - "exp": 0, - "g": 4, - "id": 915209641, - "name": "Furious", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1004", - "ct": 1750775239, - "exp": 1190, - "g": 4, - "id": 915219532, - "name": "Silk", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1011", - "ct": 1750945159, - "exp": 1190, - "g": 4, - "id": 916420780, - "name": "Karin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2004", - "ct": 1750945182, - "exp": 1190, - "g": 4, - "id": 916420883, - "name": "Wanderer Silk", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2036", - "ct": 1750945190, - "exp": 1190, - "g": 4, - "id": 916420926, - "name": "Troublemaker Crozet", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1065", - "ct": 1751125444, - "exp": 0, - "g": 4, - "id": 917396476, - "name": "Surin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2005", - "ct": 1751125478, - "exp": 1190, - "g": 4, - "id": 917396695, - "name": "Celestial Mercedes", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1069", - "ct": 1751261450, - "exp": 0, - "g": 5, - "id": 918192152, - "name": "Ludwig", - "opt": 1, - "st": 0, - "stars": 5 - } - ] -} \ No newline at end of file diff --git a/output_raw.json b/output_raw.json deleted file mode 100644 index 0042d87..0000000 --- a/output_raw.json +++ /dev/null @@ -1 +0,0 @@ -{"data":[{"code":"efm03","ct":1687231721,"e":152894,"g":4,"id":4462915,"l":true,"mg":1111,"op":[["att",12],["max_hp",45]],"p":713583798,"s":"ff96","sk":5},{"code":"ef316","ct":1687231721,"e":10590,"g":3,"id":4462919,"l":true,"mg":1111,"op":[["att",16],["max_hp",14]],"p":28393107,"s":"aa8b","sk":5},{"code":"efk04","ct":1687231721,"e":156352,"g":4,"id":4462920,"l":true,"mg":1111,"op":[["att",7],["max_hp",63]],"s":"6ae7","sk":5},{"code":"ef303","ct":1687231749,"e":108949,"g":3,"id":4487754,"l":true,"mg":1111,"op":[["att",14],["max_hp",21]],"p":326928979,"s":"c2cf","sk":5},{"code":"ef304","ct":1687235956,"e":11769,"g":3,"id":8038085,"l":true,"mg":1111,"op":[["att",14],["max_hp",21]],"s":"cc2c","sk":4},{"code":"efw15","ct":1687265403,"e":14550,"g":4,"id":29215102,"mg":1111,"op":[["att",18],["max_hp",27]],"s":"2cd3","sk":5},{"code":"efm20","ct":1687266469,"g":5,"id":30030238,"l":true,"mg":1111,"op":[["att",15],["max_hp",54]],"s":"2cca"},{"code":"efh04","ct":1687311955,"e":161371,"g":4,"id":52862619,"l":true,"mg":1111,"op":[["att",7],["max_hp",63]],"p":90857803,"s":"fffa","sk":5},{"code":"ef302","ct":1687321001,"e":10125,"g":3,"id":58159013,"l":true,"mg":1111,"op":[["att",16],["max_hp",14]],"s":"4933","sk":5},{"code":"ef317","ct":1687357169,"e":109476,"g":3,"id":79617377,"l":true,"mg":1111,"op":[["att",16],["max_hp",14]],"p":49161666,"s":"924e","sk":5},{"code":"ef317","ct":1687395297,"e":108123,"g":3,"id":95763759,"l":true,"mg":1111,"op":[["att",16],["max_hp",14]],"s":"9408","sk":5},{"code":"efr03","ct":1687481111,"e":44380,"g":4,"id":138094604,"l":true,"mg":1111,"op":[["att",18],["max_hp",27]],"p":140659207,"s":"47f0","sk":5},{"code":"ef434","ct":1687531495,"g":4,"id":165469249,"l":true,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"5b5b","sk":5},{"code":"efm14","ct":1687568420,"g":5,"id":179062892,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"34d0"},{"code":"efm04","ct":1687610151,"e":154068,"g":4,"id":201087466,"l":true,"mg":1111,"op":[["att",18],["max_hp",27]],"p":99507012,"s":"faac","sk":5},{"code":"efk03","ct":1687613863,"e":165462,"g":4,"id":203042400,"l":true,"mg":1111,"op":[["att",7],["max_hp",63]],"p":412803674,"s":"0","sk":5},{"code":"efk09","ct":1687646880,"e":34686,"g":5,"id":214521843,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"p":110838566,"s":"62fb"},{"code":"efk02","ct":1687702277,"e":204655,"g":5,"id":239225398,"l":true,"mg":1111,"op":[["att",15],["max_hp",54]],"p":360878989,"s":"219d","sk":5},{"code":"efh11","ct":1687739825,"g":5,"id":251781195,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"a150"},{"code":"efa03","ct":1687743517,"e":27005,"g":4,"id":253342697,"l":true,"mg":1111,"op":[["att",18],["max_hp",27]],"p":313179896,"s":"5b1b","sk":5},{"code":"ef317","ct":1687770420,"e":118092,"g":3,"id":265405741,"l":true,"mg":1111,"op":[["att",16],["max_hp",14]],"p":6911147,"s":"9b5a","sk":5},{"code":"efh05","ct":1687821204,"e":153078,"g":4,"id":284790173,"l":true,"mg":1111,"op":[["att",7],["max_hp",63]],"p":636577158,"s":"b92c","sk":5},{"code":"efr04","ct":1687831642,"g":4,"id":288784747,"l":true,"mg":1111,"op":[["att",18],["max_hp",27]],"s":"fe75"},{"code":"ef401","ct":1687873809,"e":2623,"g":4,"id":308004433,"l":true,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"2e70","sk":2},{"code":"efm05","ct":1687923488,"e":30941,"g":4,"id":324012612,"l":true,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"eac1"},{"code":"efh03","ct":1688397489,"e":152274,"g":4,"id":467600970,"l":true,"mg":1111,"op":[["att",7],["max_hp",63]],"p":354206748,"s":"9b16","sk":5},{"code":"efk14","ct":1688431238,"e":35678,"g":5,"id":473956465,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"fb25"},{"code":"efm23","ct":1688703519,"e":39408,"g":5,"id":530284598,"l":true,"mg":1111,"op":[["att",15],["max_hp",54]],"p":6844892,"s":"4e82","sk":5},{"code":"efa20","ct":1688710402,"e":216472,"g":5,"id":532877438,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"p":158971995,"s":"914b","sk":5},{"code":"efw20","ct":1688735763,"e":35679,"g":5,"id":542128629,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"f8e"},{"code":"efa03","ct":1688735777,"e":154179,"g":4,"id":542134241,"l":true,"mg":1111,"op":[["att",18],["max_hp",27]],"s":"4120","sk":5},{"code":"efk02","ct":1688772497,"e":34884,"g":5,"id":551026028,"l":true,"mg":1111,"op":[["att",15],["max_hp",54]],"p":490684210,"s":"5f2c"},{"code":"efh02","ct":1688886117,"g":5,"id":575977182,"l":true,"mg":1111,"op":[["att",15],["max_hp",54]],"s":"f4fe"},{"code":"efh11","ct":1688886154,"e":39256,"g":5,"id":575989978,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"p":31856726,"s":"a328"},{"code":"ef431","ct":1689124042,"e":5571,"g":4,"id":627827153,"l":true,"mg":1111,"op":[["att",7],["max_hp",63]],"s":"0","sk":4},{"code":"efh07","ct":1689345081,"e":46173,"g":5,"id":674145277,"l":true,"mg":1111,"op":[["att",15],["max_hp",54]],"p":226377978,"s":"3f61"},{"code":"efh02","ct":1689475014,"g":5,"id":696581680,"l":true,"mg":1111,"op":[["att",15],["max_hp",54]],"s":"1cb9"},{"code":"efh19","ct":1689845857,"e":34263,"g":5,"id":759108554,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"p":279573776,"s":"f0aa"},{"code":"ef432","ct":1689846605,"e":160557,"g":4,"id":759344627,"l":true,"mg":1111,"op":[["att",15],["max_hp",36]],"p":890790459,"s":"9599","sk":5},{"code":"efr11","ct":1689863852,"e":10304,"g":4,"id":763676876,"l":true,"mg":1111,"op":[["att",18],["max_hp",27]],"p":48982864,"s":"2f80","sk":5},{"code":"ef504","ct":1689947152,"e":203196,"g":5,"id":784612780,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"p":640588979,"s":"0","sk":5},{"code":"efa13","ct":1690156149,"e":40223,"g":5,"id":821808690,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"p":360551102,"s":"e15"},{"code":"efw31","ct":1690327818,"e":34272,"g":5,"id":845194760,"l":true,"mg":1111,"op":[["att",15],["max_hp",54]],"p":434015426,"s":"1dd8"},{"code":"efm03","ct":1690553985,"e":155220,"g":4,"id":873946891,"l":true,"mg":1111,"op":[["att",12],["max_hp",45]],"p":618609916,"s":"0","sk":5},{"code":"ef303","ct":1690647495,"e":109552,"g":3,"id":885428013,"l":true,"mg":1111,"op":[["att",14],["max_hp",21]],"p":566472035,"s":"1f49","sk":5},{"code":"efw32","ct":1691039782,"e":202842,"g":5,"id":938741651,"l":true,"mg":1111,"op":[["att",15],["max_hp",54]],"p":784315107,"s":"22fb","sk":5},{"code":"ef505","ct":1691055668,"e":205969,"g":5,"id":943842728,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"p":583954927,"s":"0","sk":5},{"code":"ef501","ct":1691906837,"e":203994,"g":5,"id":1060911354,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"p":739641017,"s":"0","sk":5},{"code":"efa02","ct":1692879528,"e":104161,"g":5,"id":1184347069,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"5e9a","sk":3},{"code":"efw17","ct":1692880080,"e":35445,"g":5,"id":1184459620,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"6892"},{"code":"efh14","ct":1693457388,"e":35435,"g":5,"id":1250655682,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"0"},{"code":"efm22","ct":1693457504,"g":5,"id":1250714085,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"99ad"},{"code":"efm22","ct":1693462258,"g":5,"id":1252509488,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"cb78"},{"code":"ef501","ct":1694599431,"e":203657,"g":5,"id":1353741355,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"p":620426700,"s":"0","sk":5},{"code":"ef435","ct":1694669555,"e":29381,"g":4,"id":1356574789,"l":true,"mg":1111,"op":[["att",18],["max_hp",27]],"p":11185757,"s":"396a","sk":5},{"code":"efw16","ct":1694828259,"g":5,"id":1372685234,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"69f4"},{"code":"efr04","ct":1694908857,"e":39115,"g":4,"id":1387536256,"l":true,"mg":1111,"op":[["att",18],["max_hp",27]],"p":562155721,"s":"e90","sk":4},{"code":"efk15","ct":1695268850,"e":13407,"g":5,"id":1427760473,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"e009"},{"code":"efr05","ct":1695340636,"e":4297,"g":4,"id":1433090983,"l":true,"mg":1111,"op":[["att",18],["max_hp",27]],"s":"258c","sk":5},{"code":"efw03","ct":1695360380,"e":56897,"g":4,"id":1434649476,"l":true,"mg":1111,"op":[["att",12],["max_hp",45]],"p":525461035,"s":"fdd2","sk":5},{"code":"efa19","ct":1695471775,"g":5,"id":1443157729,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"3b35"},{"code":"efa15","ct":1695471811,"e":7344,"g":5,"id":1443162325,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"731d"},{"code":"efw05","ct":1695471811,"e":6876,"g":4,"id":1443162328,"l":true,"mg":1111,"op":[["att",7],["max_hp",63]],"s":"c5ea","sk":4},{"code":"efm15","ct":1695598000,"e":4297,"g":4,"id":1455440632,"l":true,"mg":1111,"op":[["att",18],["max_hp",27]],"s":"58df","sk":5},{"code":"efk06","ct":1695598000,"e":72407,"g":5,"id":1455440636,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"p":893757497,"s":"54ba","sk":2},{"code":"efk05","ct":1695632467,"e":42075,"g":4,"id":1458246497,"l":true,"mg":1111,"op":[["att",10],["max_hp",55]],"s":"ae16","sk":5},{"code":"efw12","ct":1695857836,"e":5156,"g":4,"id":1474390585,"l":true,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"e89a","sk":5},{"code":"efa05","ct":1696027586,"e":16889,"g":4,"id":1503244793,"l":true,"mg":1111,"op":[["att",18],["max_hp",27]],"p":440334191,"s":"410b","sk":5},{"code":"efw04","ct":1696118630,"e":4749,"g":4,"id":1517382079,"l":true,"mg":1111,"op":[["att",18],["max_hp",27]],"s":"81c4","sk":5},{"code":"efm02","ct":1696388797,"e":34035,"g":5,"id":1544370742,"l":true,"mg":1111,"op":[["att",18],["max_hp",43]],"p":21884461,"s":"6363"},{"code":"ef432","ct":1696473306,"e":152162,"g":4,"id":1553093275,"l":true,"mg":1111,"op":[["att",15],["max_hp",36]],"p":738614105,"s":"fefd","sk":5},{"code":"efh08","ct":1696667512,"e":108040,"g":4,"id":1567769978,"l":true,"mg":1111,"op":[["att",7],["max_hp",63]],"s":"625a","sk":5},{"code":"efk03","ct":1696685236,"e":157424,"g":4,"id":1569748164,"l":true,"mg":1111,"op":[["att",7],["max_hp",63]],"p":559859822,"s":"dd91","sk":5},{"code":"efk17","ct":1696685236,"g":5,"id":1569748165,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"91f5"},{"code":"efr25","ct":1697088296,"e":36726,"g":5,"id":1586756965,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"p":649028156,"s":"b9f0"},{"code":"efr22","ct":1697377991,"e":7735,"g":5,"id":1601714853,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"0","sk":5},{"code":"efa08","ct":1697684468,"g":5,"id":1614899644,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"2af5"},{"code":"efm05","ct":1698027236,"e":44173,"g":4,"id":1639113763,"l":true,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"cb7c","sk":5},{"code":"efh14","ct":1698590402,"e":35066,"g":5,"id":1673957157,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"p":218403497,"s":"8935"},{"code":"efh04","ct":1699503566,"e":155134,"g":4,"id":1713004500,"l":true,"mg":1111,"op":[["att",7],["max_hp",63]],"p":847822619,"s":"5e1f","sk":5},{"code":"ef317","ct":1699672092,"e":108374,"g":3,"id":1723310813,"l":true,"mg":1111,"op":[["att",16],["max_hp",14]],"s":"8712","sk":5},{"code":"efm19","ct":1699673024,"e":35066,"g":5,"id":1723441894,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"p":48988520,"s":"0"},{"code":"efr13","ct":1699673045,"e":49122,"g":5,"id":1723444781,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"p":461989175,"s":"0"},{"code":"efr18","ct":1699673064,"e":203053,"g":5,"id":1723447431,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"p":518782830,"s":"0","sk":5},{"code":"efr23","ct":1700285575,"g":5,"id":1758939073,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"bb9"},{"code":"efr01","ct":1700336119,"e":35498,"g":5,"id":1763286559,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"p":613630545,"s":"51c6"},{"code":"efw06","ct":1700527322,"e":50478,"g":5,"id":1773543212,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"p":559859824,"s":"8279","sk":1},{"code":"efw23","ct":1701937886,"g":5,"id":1835049950,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"7673"},{"code":"efw29","ct":1702429371,"g":5,"id":1861750395,"l":true,"mg":1111,"op":[["att",15],["max_hp",54]],"s":"a150"},{"code":"efh12","ct":1702429595,"e":35678,"g":5,"id":1861764733,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"p":6885517,"s":"333e"},{"code":"efk04","ct":1702596340,"e":152612,"g":4,"id":1870369798,"l":true,"mg":1111,"op":[["att",7],["max_hp",63]],"p":241191727,"s":"9205","sk":5},{"code":"efw30","ct":1702955562,"e":6294,"g":5,"id":1900142025,"l":true,"mg":1111,"op":[["att",15],["max_hp",54]],"s":"0"},{"code":"efw02","ct":1703213230,"g":5,"id":1908937724,"l":true,"mg":1111,"op":[["att",18],["max_hp",43]],"s":"68c7"},{"code":"efm01","ct":1703297507,"e":204104,"g":5,"id":1912132735,"l":true,"mg":1111,"op":[["att",15],["max_hp",54]],"p":799495489,"s":"6ae2","sk":5},{"code":"efh15","ct":1703313396,"e":7344,"g":5,"id":1914018172,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"p":545449824,"s":"0","sk":5},{"code":"ef507","ct":1703464974,"e":35067,"g":5,"id":1929111133,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"p":713631381,"s":"0"},{"code":"efa11","ct":1703632630,"e":152771,"g":4,"id":1939748376,"l":true,"mg":1111,"op":[["att",18],["max_hp",27]],"p":96079748,"s":"3ac9","sk":5},{"code":"efw02","ct":1704243432,"g":5,"id":1964461670,"l":true,"mg":1111,"op":[["att",18],["max_hp",43]],"s":"e4c6"},{"code":"efr06","ct":1704256140,"g":5,"id":1964960565,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"2cab"},{"code":"ef406","ct":1704256140,"g":4,"id":1964960567,"l":true,"mg":1111,"op":[["att",18],["max_hp",27]],"s":"d497"},{"code":"efr26","ct":1704791312,"e":42768,"g":5,"id":1990533065,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"p":590699704,"s":"9f84"},{"code":"efa02","ct":1705280767,"e":35640,"g":5,"id":2018582370,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"p":494187001,"s":"dbad"},{"code":"efm13","ct":1705476076,"g":5,"id":2024775909,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"1956"},{"code":"efw33","ct":1706328230,"g":5,"id":2054056488,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"db79"},{"code":"efm03","ct":1706415586,"e":152072,"g":4,"id":2058808106,"l":true,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"0","sk":5},{"code":"efa01","ct":1706416503,"e":37778,"g":5,"id":2058865844,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"0"},{"code":"ef437","ct":1707465148,"g":4,"id":2095702656,"l":true,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"82d0","sk":5},{"code":"efr04","ct":1707538643,"e":158806,"g":4,"id":2100347344,"l":true,"mg":1111,"op":[["att",18],["max_hp",27]],"s":"91b7","sk":5},{"code":"ef507","ct":1707890165,"g":5,"id":2116983297,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"0"},{"code":"efw01","ct":1707987798,"e":37778,"g":5,"id":2121417259,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"p":591089796,"s":"0"},{"code":"efm03","ct":1707987830,"e":153207,"g":4,"id":2121418967,"l":true,"mg":1111,"op":[["att",12],["max_hp",45]],"p":596366779,"s":"0","sk":5},{"code":"efw19","ct":1708571274,"g":5,"id":2137715390,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"52e3"},{"code":"efw20","ct":1708571905,"g":5,"id":2137856469,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"e084"},{"code":"ef507","ct":1708962679,"e":50369,"g":5,"id":2155138784,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"p":389494760,"s":"0","sk":1},{"code":"ef438","ct":1709556938,"e":6996,"g":4,"id":2167712272,"l":true,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"0","sk":4},{"code":"efw35","ct":1709779385,"e":81035,"g":5,"id":2172682781,"l":true,"mg":1111,"op":[["att",15],["max_hp",54]],"s":"0","sk":2},{"code":"ef433","ct":1710408031,"e":3498,"g":4,"id":2192689422,"l":true,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"64a5","sk":4},{"code":"ef507","ct":1711426170,"g":5,"id":2228137937,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"0"},{"code":"efk16","ct":1711436398,"g":5,"id":2228371919,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"138d"},{"code":"ef317","ct":1711436398,"e":119278,"g":3,"id":2228371920,"l":true,"mg":1111,"op":[["att",16],["max_hp",14]],"p":306859366,"s":"f04d","sk":5},{"code":"efh06","ct":1711857943,"e":40925,"g":5,"id":2237100558,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"1b7"},{"code":"ef507","ct":1713862062,"e":48272,"g":5,"id":2285991134,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"p":403476926,"s":"0"},{"code":"ef427","ct":1714047701,"e":27283,"g":4,"id":2290508984,"l":true,"mg":1111,"op":[["att",7],["max_hp",63]],"p":225876663,"s":"58e1"},{"code":"efm30","ct":1714621985,"e":5770,"g":5,"id":2311850900,"l":true,"mg":1111,"op":[["att",15],["max_hp",54]],"p":653128055,"s":"2a22","sk":5},{"code":"efa04","ct":1714622136,"e":3497,"g":4,"id":2311869598,"l":true,"mg":1111,"op":[["att",18],["max_hp",27]],"s":"dd44","sk":4},{"code":"efk21","ct":1714654759,"e":34629,"g":5,"id":2313845939,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"p":892353109,"s":"3391"},{"code":"efr11","ct":1714956033,"e":152334,"g":4,"id":2324397548,"l":true,"mg":1111,"op":[["att",18],["max_hp",27]],"s":"5129","sk":5},{"code":"efk10","ct":1715067514,"e":3498,"g":4,"id":2327721532,"l":true,"mg":1111,"op":[["att",10],["max_hp",55]],"s":"1efd","sk":4},{"code":"efw34","ct":1715240335,"e":50718,"g":5,"id":2332863605,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"p":2716899,"s":"0","sk":1},{"code":"ef317","ct":1715245083,"e":6645,"g":3,"id":2333109541,"l":true,"mg":1111,"op":[["att",16],["max_hp",14]],"s":"ecad","sk":5},{"code":"efm08","ct":1716863644,"g":4,"id":2376927620,"l":true,"mg":1111,"op":[["att",14],["max_hp",51]],"p":627243561,"s":"0"},{"code":"efr01","ct":1716864020,"e":37778,"g":5,"id":2376938615,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"p":110853212,"s":"dbf1"},{"code":"efk03","ct":1717038053,"e":156619,"g":4,"id":2381263138,"l":true,"mg":1111,"op":[["att",7],["max_hp",63]],"p":781837305,"s":"72ed","sk":5},{"code":"efh05","ct":1717644012,"e":55791,"g":4,"id":2396878676,"l":true,"mg":1111,"op":[["att",7],["max_hp",63]],"s":"4f9","sk":5},{"code":"efk09","ct":1717645087,"e":34278,"g":5,"id":2396962936,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"p":28398305,"s":"7088"},{"code":"ef439","ct":1718861710,"g":4,"id":2428599167,"l":true,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"a340","sk":5},{"code":"efw36","ct":1718865972,"e":35678,"g":5,"id":2429230249,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"9236"},{"code":"efw27","ct":1718931007,"g":5,"id":2434161774,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"ed46"},{"code":"efh11","ct":1719278208,"g":5,"id":2458397780,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"b29a"},{"code":"efr09","ct":1719278208,"g":5,"id":2458397781,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"d66c"},{"code":"efw09","ct":1719373359,"g":5,"id":2462444284,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"96b1"},{"code":"efw01","ct":1722344529,"e":39877,"g":5,"id":2561750760,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"p":736028830,"s":"c552"},{"code":"efr12","ct":1722394893,"e":39877,"g":5,"id":2562923285,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"3844"},{"code":"efw01","ct":1722561578,"e":36726,"g":5,"id":2566803904,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"p":717223364,"s":"d877"},{"code":"efa14","ct":1724815402,"e":214130,"g":5,"id":2636523808,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"p":704271358,"s":"0","sk":5},{"code":"efw16","ct":1725505437,"g":5,"id":2652643665,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"1790"},{"code":"efm04","ct":1725506653,"g":4,"id":2652868488,"mg":1111,"op":[["att",18],["max_hp",27]],"s":"ac91"},{"code":"ef440","ct":1726127866,"e":26234,"g":4,"id":2675698603,"l":true,"mg":1111,"op":[["att",18],["max_hp",27]],"s":"6d7c","sk":5},{"code":"efh21","ct":1726227596,"e":37777,"g":5,"id":2683115359,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"0"},{"code":"efa22","ct":1726233949,"e":39875,"g":5,"id":2683582241,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"c944"},{"code":"efa17","ct":1726361842,"e":35678,"g":5,"id":2691498572,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"p":793619248,"s":"a8ab"},{"code":"efa07","ct":1726710940,"e":10492,"g":5,"id":2718105650,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"162b"},{"code":"efh16","ct":1726712565,"g":5,"id":2718223724,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"d2dc"},{"code":"efk07","ct":1726789936,"g":5,"id":2722243813,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"7246"},{"code":"efw19","ct":1727054143,"g":5,"id":2742185557,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"a45b"},{"code":"efm06","ct":1727135941,"e":35679,"g":5,"id":2747793176,"l":true,"mg":1111,"op":[["att",18],["max_hp",43]],"p":115835449,"s":"b196"},{"code":"efr28","ct":1727924557,"g":5,"id":2793010074,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"6505"},{"code":"efw13","ct":1728037257,"g":5,"id":2800371082,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"a6cc"},{"code":"efw27","ct":1728214638,"e":34279,"g":5,"id":2808847663,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"1765"},{"code":"efh02","ct":1729324708,"e":37777,"g":5,"id":2861496845,"l":true,"mg":1111,"op":[["att",15],["max_hp",54]],"s":"8c71"},{"code":"efr27","ct":1730377337,"e":203115,"g":5,"id":2908978581,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"p":798777729,"s":"0","sk":5},{"code":"efr09","ct":1731118423,"g":5,"id":2937459521,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"936c"},{"code":"efr19","ct":1731118423,"g":5,"id":2937459522,"mg":1111,"op":[["att",15],["max_hp",54]],"s":"31bb"},{"code":"efh16","ct":1731890903,"g":5,"id":2964558515,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"9dc6"},{"code":"efm02","ct":1733707681,"e":35678,"g":5,"id":3016042895,"l":true,"mg":1111,"op":[["att",18],["max_hp",43]],"p":323638178,"s":"61e6"},{"code":"efh23","ct":1735194599,"e":37776,"g":5,"id":3053136643,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"p":830235768,"s":"0"},{"code":"efa15","ct":1735357207,"g":5,"id":3057109776,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"ebdc"},{"code":"efw21","ct":1736298164,"g":5,"id":3078858334,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"7649"},{"code":"efh03","ct":1736468873,"e":153646,"g":4,"id":3085142965,"l":true,"mg":1111,"op":[["att",7],["max_hp",63]],"p":829105288,"s":"456a","sk":5},{"code":"efm18","ct":1736730208,"g":5,"id":3095287926,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"b69c"},{"code":"efm03","ct":1736749343,"e":18712,"g":4,"id":3096071305,"l":true,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"e7a","sk":1},{"code":"efa12","ct":1736818143,"g":5,"id":3098283081,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"4337"},{"code":"efw12","ct":1737610189,"g":4,"id":3117735712,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"8344"},{"code":"efw24","ct":1737610189,"g":5,"id":3117735715,"mg":1111,"op":[["att",15],["max_hp",54]],"s":"4e68"},{"code":"ef502","ct":1737612606,"e":35678,"g":5,"id":3117869104,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"0"},{"code":"efr24","ct":1737772818,"e":36729,"g":5,"id":3123087246,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"p":669363338,"s":"ea23"},{"code":"efa01","ct":1737772818,"g":5,"id":3123087249,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"c287"},{"code":"efh09","ct":1737863357,"g":5,"id":3125285992,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"841c"},{"code":"efr03","ct":1737863357,"g":4,"id":3125285996,"mg":1111,"op":[["att",18],["max_hp",27]],"s":"5611"},{"code":"efh20","ct":1737892949,"e":35679,"g":5,"id":3126020549,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"2332"},{"code":"efa25","ct":1738044569,"g":5,"id":3129664628,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"f7c6"},{"code":"efh04","ct":1738983997,"e":26670,"g":4,"id":3155489521,"l":true,"mg":1111,"op":[["att",7],["max_hp",63]],"p":326831592,"s":"15aa","sk":5},{"code":"efr05","ct":1740471311,"g":4,"id":3192423124,"mg":1111,"op":[["att",18],["max_hp",27]],"s":"f0b0"},{"code":"ef441","ct":1740662691,"g":4,"id":3196581146,"l":true,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"791f"},{"code":"efk14","ct":1741142944,"g":5,"id":3210599274,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"651d"},{"code":"efw16","ct":1741142944,"g":5,"id":3210599278,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"c440"},{"code":"efm03","ct":1741228309,"g":4,"id":3212912912,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"d2c0"},{"code":"efw05","ct":1741846711,"g":4,"id":3225243600,"mg":1111,"op":[["att",7],["max_hp",63]],"s":"ee0b"},{"code":"efa23","ct":1741846711,"e":35678,"g":5,"id":3225243601,"l":true,"mg":1111,"op":[["att",15],["max_hp",54]],"p":899011010,"s":"69e8"},{"code":"ef441","ct":1742041578,"g":4,"id":3230800928,"l":true,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"0"},{"code":"ef441","ct":1742862046,"g":4,"id":3244366444,"l":true,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"a44b"},{"code":"ef441","ct":1742906459,"g":4,"id":3245041392,"l":true,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"0"},{"code":"ef303","ct":1742953918,"e":50721,"g":3,"id":3245713193,"l":true,"mg":1111,"op":[["att",14],["max_hp",21]],"p":207190343,"s":"daba","sk":5},{"code":"ef441","ct":1742991888,"g":4,"id":3246327762,"l":true,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"0"},{"code":"efw03","ct":1743136235,"g":4,"id":3249187620,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"60b6"},{"code":"ef502","ct":1743384637,"e":35679,"g":5,"id":3256484807,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"p":769932771,"s":"0"},{"code":"efr04","ct":1744189249,"g":4,"id":3275118772,"mg":1111,"op":[["att",18],["max_hp",27]],"s":"9c21"},{"code":"efw05","ct":1744189249,"g":4,"id":3275118773,"mg":1111,"op":[["att",7],["max_hp",63]],"s":"6e76"},{"code":"efw03","ct":1744189249,"g":4,"id":3275118774,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"a627"},{"code":"efa25","ct":1744189249,"g":5,"id":3275118775,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"ab78"},{"code":"efk09","ct":1744189249,"e":7344,"g":5,"id":3275118777,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"6d27"},{"code":"efw17","ct":1744189249,"g":5,"id":3275118778,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"372f"},{"code":"efm04","ct":1744335246,"g":4,"id":3277217927,"mg":1111,"op":[["att",18],["max_hp",27]],"s":"f60"},{"code":"efm15","ct":1744341733,"g":4,"id":3277418725,"mg":1111,"op":[["att",18],["max_hp",27]],"s":"f398"},{"code":"efk13","ct":1744363141,"e":35678,"g":5,"id":3278211471,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"p":445022861,"s":"a53"},{"code":"efk07","ct":1744434586,"g":5,"id":3280164077,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"aa53"},{"code":"ef438","ct":1744448579,"g":4,"id":3280688708,"l":true,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"0"},{"code":"ef438","ct":1744448581,"g":4,"id":3280688771,"l":true,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"0"},{"code":"ef506","ct":1744632168,"g":5,"id":3285451244,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"0"},{"code":"efk01","ct":1745413993,"g":5,"id":3303302637,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"0"},{"code":"efm14","ct":1745473492,"g":5,"id":3304378641,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"e694"},{"code":"efk04","ct":1745550791,"g":4,"id":3307075085,"mg":1111,"op":[["att",7],["max_hp",63]],"s":"ac7c"},{"code":"efh08","ct":1745572061,"g":4,"id":3307804895,"mg":1111,"op":[["att",7],["max_hp",63]],"s":"7566"},{"code":"efk03","ct":1745645037,"e":28333,"g":4,"id":3309955692,"l":true,"mg":1111,"op":[["att",7],["max_hp",63]],"p":166490,"s":"3e6b"},{"code":"efw05","ct":1745645037,"g":4,"id":3309955693,"mg":1111,"op":[["att",7],["max_hp",63]],"s":"340e"},{"code":"efh08","ct":1745716353,"g":4,"id":3311770110,"mg":1111,"op":[["att",7],["max_hp",63]],"s":"cac4"},{"code":"efk04","ct":1745716353,"g":4,"id":3311770111,"mg":1111,"op":[["att",7],["max_hp",63]],"s":"2eb3"},{"code":"efk16","ct":1745716353,"g":5,"id":3311770113,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"6c4e"},{"code":"ef409","ct":1745802411,"g":4,"id":3315410834,"l":true,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"56ec"},{"code":"ef409","ct":1745809525,"g":4,"id":3316856438,"l":true,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"846e"},{"code":"ef409","ct":1745809525,"g":4,"id":3316856467,"l":true,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"6a88"},{"code":"ef409","ct":1745809525,"g":4,"id":3316856500,"l":true,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"5dcb"},{"code":"efk12","ct":1745851970,"e":37778,"g":5,"id":3328070348,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"7246"},{"code":"efr03","ct":1745887565,"g":4,"id":3334167854,"mg":1111,"op":[["att",18],["max_hp",27]],"s":"c243"},{"code":"efr03","ct":1745904961,"g":4,"id":3338631065,"mg":1111,"op":[["att",18],["max_hp",27]],"s":"489"},{"code":"efm06","ct":1745967663,"g":5,"id":3353450780,"mg":1111,"op":[["att",18],["max_hp",43]],"s":"72f7"},{"code":"efr16","ct":1746063496,"e":37777,"g":5,"id":3375118379,"l":true,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"9f3a"},{"code":"ef317","ct":1746110637,"e":3498,"g":3,"id":3387404092,"l":true,"mg":1111,"op":[["att",16],["max_hp",14]],"s":"ebc5","sk":5},{"code":"ef317","ct":1746111807,"e":3498,"g":3,"id":3387725549,"l":true,"mg":1111,"op":[["att",16],["max_hp",14]],"s":"4d03","sk":5},{"code":"efh05","ct":1746678639,"g":4,"id":3457553983,"mg":1111,"op":[["att",7],["max_hp",63]],"s":"cade"},{"code":"efk22","ct":1746679584,"e":41975,"g":5,"id":3457702816,"l":true,"mg":1111,"op":[["att",15],["max_hp",54]],"s":"0"},{"code":"efh01","ct":1746949687,"g":5,"id":3470437633,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"c309"},{"code":"efa27","ct":1747284882,"e":35678,"g":5,"id":3484645766,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"p":897188455,"s":"de76"},{"code":"efw04","ct":1747284902,"e":3934,"g":4,"id":3484647470,"mg":1111,"op":[["att",18],["max_hp",27]],"s":"4ce1","sk":3},{"code":"efm15","ct":1747558580,"g":4,"id":3494941078,"mg":1111,"op":[["att",18],["max_hp",27]],"s":"b796"},{"code":"efw37","ct":1747924863,"e":31480,"g":5,"id":3504437731,"l":true,"mg":1111,"op":[["att",9],["def",11]],"p":898971885,"s":"eff0"},{"code":"efr05","ct":1747961646,"g":4,"id":3505030374,"mg":1111,"op":[["att",18],["max_hp",27]],"s":"7bf6"},{"code":"efr10","ct":1747982551,"g":5,"id":3505554326,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"251d"},{"code":"efh03","ct":1748046992,"g":4,"id":3506992811,"mg":1111,"op":[["att",7],["max_hp",63]],"s":"c5b5"},{"code":"efk03","ct":1748046992,"g":4,"id":3506992813,"mg":1111,"op":[["att",7],["max_hp",63]],"s":"8002"},{"code":"efk10","ct":1748137882,"g":4,"id":3509312931,"mg":1111,"op":[["att",10],["max_hp",55]],"s":"75dc"},{"code":"efr11","ct":1748311835,"g":4,"id":3513481630,"mg":1111,"op":[["att",18],["max_hp",27]],"s":"a46"},{"code":"ef509","ct":1748440017,"g":5,"id":3515817210,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"c11f"},{"code":"ef509","ct":1748620329,"g":5,"id":3518459452,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"b46d"},{"code":"ef509","ct":1748673290,"g":5,"id":3519472795,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"3d18"},{"code":"efr25","ct":1748757623,"g":5,"id":3521411131,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"bd75"},{"code":"efk05","ct":1749028178,"g":4,"id":3525793174,"mg":1111,"op":[["att",10],["max_hp",55]],"s":"66b7"},{"code":"efk03","ct":1749028178,"g":4,"id":3525793175,"mg":1111,"op":[["att",7],["max_hp",63]],"s":"d67d"},{"code":"efm05","ct":1749028178,"g":4,"id":3525793176,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"3e55"},{"code":"efh04","ct":1749028178,"g":4,"id":3525793178,"mg":1111,"op":[["att",7],["max_hp",63]],"s":"8695"},{"code":"efh01","ct":1749028178,"g":5,"id":3525793179,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"3e5"},{"code":"efh08","ct":1749028178,"g":4,"id":3525793180,"mg":1111,"op":[["att",7],["max_hp",63]],"s":"c457"},{"code":"efa15","ct":1749028178,"g":5,"id":3525793181,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"23ec"},{"code":"ef509","ct":1749109489,"g":5,"id":3526739399,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"3f57"},{"code":"ef509","ct":1749133113,"g":5,"id":3527125038,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"ee20"},{"code":"efw03","ct":1749168389,"g":4,"id":3527482034,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"bf55"},{"code":"ef509","ct":1749191371,"g":5,"id":3527738716,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"d88d"},{"code":"efr11","ct":1749256342,"g":4,"id":3528426242,"mg":1111,"op":[["att",18],["max_hp",27]],"s":"dc82"},{"code":"efm04","ct":1749620335,"g":4,"id":3533637350,"mg":1111,"op":[["att",18],["max_hp",27]],"s":"bdc"},{"code":"efh08","ct":1749693351,"g":4,"id":3534350055,"mg":1111,"op":[["att",7],["max_hp",63]],"s":"d3c1"},{"code":"efa25","ct":1749775144,"g":5,"id":3535850749,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"26c5"},{"code":"ef502","ct":1749807742,"g":5,"id":3536356840,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"0"},{"code":"ef502","ct":1749807745,"g":5,"id":3536356883,"l":true,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"0"},{"code":"efm15","ct":1749908653,"g":4,"id":3537911212,"mg":1111,"op":[["att",18],["max_hp",27]],"s":"65ad"},{"code":"efm03","ct":1750210984,"g":4,"id":3541774737,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"4795"},{"code":"efk05","ct":1750316482,"g":4,"id":3543554870,"mg":1111,"op":[["att",10],["max_hp",55]],"s":"4a6f"},{"code":"efw05","ct":1750316482,"g":4,"id":3543554872,"mg":1111,"op":[["att",7],["max_hp",63]],"s":"50ed"},{"code":"efm05","ct":1750483271,"g":4,"id":3549077159,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"6bcd"},{"code":"efa08","ct":1750558927,"g":5,"id":3551234946,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"fbb0"},{"code":"ef443","ct":1750560531,"g":4,"id":3551290475,"l":true,"level":0,"mg":1111,"name":"Unknown","op":[["att",12],["max_hp",45]],"s":"3bc3","sk":5},{"code":"efr28","ct":1750560564,"g":5,"id":3551291534,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"c2d8"},{"code":"efw03","ct":1750824575,"g":4,"id":3557904040,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"8f4"},{"code":"efw12","ct":1751033215,"g":4,"id":3562133819,"mg":1111,"op":[["att",12],["max_hp",45]],"s":"e51e"},{"code":"efa13","ct":1751173096,"g":5,"id":3564687450,"mg":1111,"op":[["att",21],["max_hp",32]],"s":"4ae7"},{"code":"efk10","ct":1751246575,"g":4,"id":3566157381,"mg":1111,"op":[["att",10],["max_hp",55]],"s":"5501"},{"code":"efk17","ct":1751261441,"g":5,"id":3566409716,"mg":1111,"op":[["att",9],["max_hp",76]],"s":"5f19"},{"code":"emd5a","ct":1687315843,"e":70322,"f":"set_speed","g":5,"id":55095347,"l":true,"level":70,"mainStatBaseValue":52,"mainStatId":"md5_armo_m","mainStatType":"def","mainStatValue":260,"mg":1111,"op":[["def",52],["max_hp_rate",0.06],["speed",3],["cri",0.03],["acc",0.06],["speed",3],["speed",3],["max_hp_rate",0.04],["max_hp_rate",0.04],["speed",3]],"p":663498964,"s":"bd8d","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"emd5n","ct":1687315843,"e":76932,"f":"set_cri","g":5,"id":55095368,"l":true,"level":70,"mainStatBaseValue":0.11,"mainStatId":"md5_neck_m","mainStatType":"cri_dmg","mainStatValue":0.55,"mg":1111,"op":[["cri_dmg",0.11],["max_hp_rate",0.06],["att_rate",0.06],["speed",3],["cri",0.03],["speed",3],["att_rate",0.07],["cri",0.02],["speed",2],["speed",2]],"p":549294853,"s":"a71a","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eah8r","ct":1687319825,"e":94162,"f":"set_speed","g":5,"id":57468023,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ah8_ring_m1","mainStatType":"acc","mainStatValue":0.65,"mg":1111,"op":[["acc",0.13],["max_hp_rate",0.06],["att_rate",0.06],["speed",4],["cri",0.05],["att_rate",0.08],["att_rate",0.05],["speed",4],["att_rate",0.08],["max_hp_rate",0.07]],"p":899011010,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eug14a","ct":1687352113,"e":75074,"f":"set_att","g":5,"id":76436415,"l":true,"level":70,"mainStatBaseValue":52,"mainStatId":"ug14_armo_m","mainStatType":"def","mainStatValue":260,"mg":1111,"op":[["def",52],["max_hp_rate",0.07],["speed",4],["cri",0.04],["cri_dmg",0.06],["cri",0.03],["cri",0.04],["cri_dmg",0.05],["cri_dmg",0.05],["cri_dmg",0.04]],"p":502450559,"s":"43ae","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eug15n","ct":1687352113,"e":70435,"f":"set_cri","g":5,"id":76436440,"l":true,"level":70,"mainStatBaseValue":0.11,"mainStatId":"ug15_neck_m","mainStatType":"cri_dmg","mainStatValue":0.55,"mg":1111,"op":[["cri_dmg",0.11],["max_hp_rate",0.07],["att_rate",0.07],["cri",0.04],["acc",0.07],["cri",0.03],["cri",0.03],["cri",0.02],["max_hp_rate",0.07],["att_rate",0.04]],"s":"ecaf","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eah9w","ct":1687362218,"e":95035,"f":"set_acc","g":5,"id":82994008,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"ah9_weap_m1","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.06],["speed",4],["res",0.06],["acc",0.06],["max_hp_rate",0.06],["max_hp_rate",0.08],["max_hp_rate",0.04],["res",0.04],["speed",3]],"s":"0","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ere6b","ct":1687394468,"e":82150,"f":"set_att","g":5,"id":95342608,"l":true,"level":75,"mainStatBaseValue":0.12,"mainStatId":"re6_boot_m","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["max_hp_rate",0.07],["speed",4],["cri",0.04],["cri_dmg",0.06],["cri",0.04],["cri",0.04],["cri",0.04],["cri_dmg",0.05],["speed",3]],"p":49161666,"s":"808b","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ere6r","ct":1687394469,"e":82508,"f":"set_att","g":5,"id":95342627,"l":true,"level":75,"mainStatBaseValue":0.12,"mainStatId":"re6_ring_m","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["max_hp_rate",0.07],["speed",4],["cri",0.04],["cri_dmg",0.06],["speed",3],["cri_dmg",0.04],["cri",0.03],["cri_dmg",0.07],["cri",0.03]],"p":49161666,"s":"d768","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eap2w","ct":1687410119,"e":83106,"f":"set_att","g":5,"id":104574710,"l":true,"level":75,"mainStatBaseValue":93,"mainStatId":"ap2_weap_m1","mainStatType":"att","mainStatValue":465,"mg":1111,"op":[["att",93],["cri",0.04],["att_rate",0.07],["cri_dmg",0.06],["speed",4],["speed",3],["att_rate",0.04],["cri",0.04],["cri_dmg",0.04],["cri_dmg",0.06]],"p":140659207,"s":"a008","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eap2h","ct":1687410120,"e":89826,"f":"set_att","g":5,"id":104574881,"l":true,"level":75,"mainStatBaseValue":499,"mainStatId":"ap2_helm_m1","mainStatType":"max_hp","mainStatValue":2495,"mg":1111,"op":[["max_hp",499],["cri",0.04],["att_rate",0.07],["cri_dmg",0.06],["speed",4],["speed",3],["speed",3],["cri",0.05],["speed",2],["cri_dmg",0.05]],"s":"9316","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eap2a","ct":1687410120,"e":82382,"f":"set_att","g":5,"id":104574892,"l":true,"level":75,"mainStatBaseValue":55,"mainStatId":"ap2_armo_m1","mainStatType":"def","mainStatValue":275,"mg":1111,"op":[["def",55],["cri_dmg",0.06],["cri",0.04],["max_hp_rate",0.07],["speed",4],["max_hp_rate",0.05],["cri_dmg",0.04],["speed",4],["max_hp_rate",0.05],["max_hp_rate",0.08]],"p":49161666,"s":"b75f","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eap2b","ct":1687410120,"e":83325,"f":"set_att","g":5,"id":104574909,"l":true,"level":75,"mainStatBaseValue":0.12,"mainStatId":"ap2_boot_m1","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["cri_dmg",0.06],["cri",0.04],["max_hp_rate",0.07],["acc",0.07],["cri_dmg",0.06],["acc",0.04],["acc",0.04],["cri_dmg",0.04],["max_hp_rate",0.05]],"s":"408d","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eap2r","ct":1687410120,"e":82680,"f":"set_att","g":5,"id":104574925,"l":true,"level":75,"mainStatBaseValue":0.12,"mainStatId":"ap2_ring_m1","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["cri_dmg",0.06],["cri",0.04],["max_hp_rate",0.07],["acc",0.07],["max_hp_rate",0.08],["max_hp_rate",0.06],["cri_dmg",0.06],["acc",0.06],["max_hp_rate",0.07]],"s":"5200","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eap2n","ct":1687410120,"e":84101,"f":"set_att","g":5,"id":104574936,"l":true,"level":75,"mainStatBaseValue":0.13,"mainStatId":"ap2_neck_m1","mainStatType":"cri_dmg","mainStatValue":0.65,"mg":1111,"op":[["cri_dmg",0.13],["cri",0.04],["att_rate",0.07],["max_hp_rate",0.07],["speed",4],["max_hp_rate",0.06],["max_hp_rate",0.05],["cri",0.03],["cri",0.05],["max_hp_rate",0.06]],"p":140659207,"s":"163","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eah9n","ct":1687410312,"e":94045,"f":"set_acc","g":5,"id":104689525,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"ah9_neck_m1","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["att_rate",0.06],["speed",4],["cri",0.05],["res",0.06],["res",0.05],["cri",0.05],["cri",0.04],["speed",2],["att_rate",0.07]],"p":225876663,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eap3w","ct":1687411057,"e":82977,"f":"set_max_hp","g":5,"id":105136064,"l":true,"level":75,"mainStatBaseValue":93,"mainStatId":"ap3_weap_m1","mainStatType":"att","mainStatValue":465,"mg":1111,"op":[["att",93],["max_hp_rate",0.07],["res",0.07],["speed",4],["acc",0.07],["acc",0.06],["speed",3],["res",0.07],["speed",2],["speed",3]],"s":"c93a","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eap3h","ct":1687411057,"e":82173,"f":"set_max_hp","g":5,"id":105136081,"l":true,"level":75,"mainStatBaseValue":499,"mainStatId":"ap3_helm_m1","mainStatType":"max_hp","mainStatValue":2495,"mg":1111,"op":[["max_hp",499],["max_hp_rate",0.07],["def_rate",0.07],["speed",4],["res",0.07],["def_rate",0.05],["def_rate",0.08],["def_rate",0.04],["res",0.04],["res",0.06]],"p":40490456,"s":"e928","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eap3a","ct":1687411057,"e":104962,"f":"set_max_hp","g":5,"id":105136105,"l":true,"level":75,"mainStatBaseValue":55,"mainStatId":"ap3_armo_m1","mainStatType":"def","mainStatValue":275,"mg":1111,"op":[["def",55],["max_hp_rate",0.07],["def_rate",0.07],["speed",4],["res",0.07],["def_rate",0.04],["speed",4],["res",0.08],["speed",4],["speed",2]],"s":"a26a","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eap3b","ct":1687411057,"e":82097,"f":"set_max_hp","g":5,"id":105136123,"l":true,"level":75,"mainStatBaseValue":7,"mainStatId":"ap3_boot_m1","mainStatType":"speed","mainStatValue":35,"mg":1111,"op":[["speed",7],["def_rate",0.07],["res",0.07],["max_hp_rate",0.07],["acc",0.07],["max_hp_rate",0.04],["res",0.04],["def_rate",0.05],["max_hp_rate",0.07],["def_rate",0.07]],"p":40490456,"s":"53b9","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eap3r","ct":1687411057,"e":82567,"f":"set_max_hp","g":5,"id":105136133,"level":75,"mainStatBaseValue":0.12,"mainStatId":"ap3_ring_m1","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["def_rate",0.07],["res",0.07],["speed",4],["acc",0.07],["res",0.04],["res",0.08],["speed",4],["def_rate",0.08],["res",0.05]],"p":604874070,"s":"b42b","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eap3n","ct":1687411057,"e":99342,"f":"set_max_hp","g":5,"id":105136147,"l":true,"level":75,"mainStatBaseValue":0.12,"mainStatId":"ap3_neck_m1","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["def_rate",0.07],["res",0.07],["speed",4],["acc",0.07],["def_rate",0.08],["res",0.07],["def_rate",0.05],["res",0.08],["def_rate",0.08]],"p":40490456,"s":"375c","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw5b","ct":1687433003,"e":70732,"f":"set_acc","g":5,"id":117654795,"l":true,"level":70,"mainStatBaseValue":7,"mainStatId":"cra5_boot_m","mainStatType":"speed","mainStatValue":35,"mg":1111,"op":[["speed",7],["att_rate",0.06],["acc",0.07],["res",0.06],["cri_dmg",0.03],["res",0.05],["cri_dmg",0.05],["cri_dmg",0.05],["res",0.05],["att_rate",0.06]],"p":207190343,"s":"f9c","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eah10w","ct":1687434847,"e":93930,"f":"set_cri_dmg","g":5,"id":118606243,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"ah10_weap_m1","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["att_rate",0.06],["speed",4],["cri",0.05],["res",0.06],["cri",0.03],["cri",0.05],["att_rate",0.07],["res",0.05],["cri",0.05]],"p":525461035,"s":"0","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"exc107201","ct":1687449601,"g":5,"id":127313641,"mg":1111,"op":[["att_rate",0.14],["ek_c107201",1]],"s":"be00"},{"code":"exc107201","ct":1687449606,"g":5,"id":127316794,"l":true,"mg":1111,"op":[["att_rate",0.13],["ek_c107201",2]],"p":49161666,"s":"5544"},{"code":"exc108701","ct":1687449681,"g":5,"id":127360696,"mg":1111,"op":[["att_rate",0.12],["ek_c108701",1]],"s":"f6f"},{"code":"eum12b","ct":1687483762,"e":82403,"f":"set_cri","g":5,"id":139345121,"l":true,"level":75,"mainStatBaseValue":0.12,"mainStatId":"um12_boot_m","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["def_rate",0.05],["max_hp_rate",0.05],["speed",3],["cri",0.04],["def_rate",0.04],["max_hp_rate",0.07],["speed",3],["cri",0.05],["speed",3]],"s":"e921","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eah9b","ct":1687484711,"e":94375,"f":"set_acc","g":5,"id":139824488,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ah9_boot_m1","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["cri",0.05],["cri_dmg",0.06],["res",0.06],["acc",0.06],["cri_dmg",0.06],["cri_dmg",0.05],["acc",0.05],["acc",0.04],["cri_dmg",0.07]],"p":6911147,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"exc106201","ct":1687529453,"g":5,"id":164285000,"l":true,"mg":1111,"op":[["speed",10],["ek_c106201",1]],"s":"2a37"},{"code":"ess9r","ct":1687532467,"e":87723,"f":"set_speed","g":5,"id":166039501,"l":true,"level":78,"mainStatBaseValue":0.12,"mainStatId":"ss9_ring_m","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["max_hp_rate",0.07],["speed",4],["cri",0.04],["acc",0.07],["max_hp_rate",0.07],["speed",2],["acc",0.04],["speed",3],["speed",2]],"p":518421029,"s":"bed0","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eah10h","ct":1687536332,"e":93957,"f":"set_cri_dmg","g":5,"id":168243437,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"ah10_helm_m1","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["att_rate",0.06],["cri",0.05],["cri_dmg",0.06],["res",0.06],["cri",0.03],["cri_dmg",0.05],["cri_dmg",0.06],["att_rate",0.08],["cri_dmg",0.04]],"s":"0","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ere7w","ct":1687568502,"e":83351,"f":"set_max_hp","g":5,"id":179100958,"l":true,"level":75,"mainStatBaseValue":93,"mainStatId":"re7_weap_m","mainStatType":"att","mainStatValue":465,"mg":1111,"op":[["att",93],["max_hp_rate",0.07],["speed",4],["cri",0.04],["res",0.07],["cri",0.04],["max_hp_rate",0.06],["cri",0.05],["cri",0.03],["speed",4]],"s":"18c","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ere7a","ct":1687568502,"e":83277,"f":"set_max_hp","g":5,"id":179100989,"l":true,"level":75,"mainStatBaseValue":55,"mainStatId":"re7_armo_m","mainStatType":"def","mainStatValue":275,"mg":1111,"op":[["def",55],["max_hp_rate",0.07],["def_rate",0.07],["speed",4],["res",0.07],["max_hp_rate",0.05],["speed",2],["def_rate",0.07],["def_rate",0.07],["res",0.04]],"p":166490,"s":"3c2a","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ere7h","ct":1687568502,"e":82482,"f":"set_max_hp","g":5,"id":179101000,"level":75,"mainStatBaseValue":499,"mainStatId":"re7_helm_m","mainStatType":"max_hp","mainStatValue":2495,"mg":1111,"op":[["max_hp",499],["max_hp_rate",0.07],["def_rate",0.07],["speed",4],["res",0.07],["def_rate",0.06],["res",0.06],["speed",2],["def_rate",0.04],["speed",2]],"s":"3752","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ere7b","ct":1687568502,"e":88459,"f":"set_max_hp","g":5,"id":179101025,"l":true,"level":75,"mainStatBaseValue":0.12,"mainStatId":"re7_boot_m","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["def_rate",0.07],["speed",4],["cri",0.04],["res",0.07],["res",0.08],["def_rate",0.04],["res",0.07],["speed",4],["cri",0.04]],"p":830235768,"s":"e6e0","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ere7n","ct":1687568502,"e":83274,"f":"set_max_hp","g":5,"id":179101041,"l":true,"level":75,"mainStatBaseValue":0.12,"mainStatId":"re7_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["def_rate",0.07],["speed",4],["cri",0.04],["res",0.07],["def_rate",0.06],["speed",3],["cri",0.03],["speed",2],["def_rate",0.07]],"p":894623419,"s":"1704","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ere7r","ct":1687568502,"e":82071,"f":"set_max_hp","g":5,"id":179101055,"l":true,"level":75,"mainStatBaseValue":0.12,"mainStatId":"re7_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["def_rate",0.07],["speed",4],["cri",0.04],["res",0.07],["speed",2],["res",0.06],["speed",2],["def_rate",0.04],["res",0.04]],"s":"19cc","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eah10n","ct":1687588986,"e":94377,"f":"set_cri_dmg","g":5,"id":190263278,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"ah10_neck_m1","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["max_hp_rate",0.06],["att_rate",0.06],["cri",0.05],["res",0.06],["res",0.07],["att_rate",0.08],["res",0.05],["att_rate",0.08],["max_hp_rate",0.07]],"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"exc108701","ct":1687607681,"g":5,"id":199838193,"mg":1111,"op":[["att_rate",0.09],["ek_c108701",2]],"p":48982864,"s":"6501"},{"code":"exc108701","ct":1687607690,"g":5,"id":199842438,"l":true,"mg":1111,"op":[["att_rate",0.07],["ek_c108701",3]],"s":"641c"},{"code":"eah10r","ct":1687749981,"e":100322,"f":"set_cri_dmg","g":5,"id":256289663,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ah10_ring_m1","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["def_rate",0.06],["speed",4],["cri",0.05],["cri_dmg",0],["def_rate",0.08],["cri",0.03],["def_rate",0.05],["cri",0.05],["cri",0.04],["cri_dmg",0.07,"c","change2_cri_dmg_1_1"]],"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eah13b","ct":1687750046,"e":94384,"f":"set_cri","g":5,"id":256319465,"l":true,"level":88,"mainStatBaseValue":9,"mainStatId":"ah13_boot_m1","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9],["max_hp_rate",0.06],["att_rate",0.06],["cri",0.05],["res",0.06],["res",0.04],["max_hp_rate",0.08],["cri",0.04],["max_hp_rate",0.04],["att_rate",0.06]],"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6a_u","ct":1687763657,"e":86755,"f":"set_acc","g":4,"id":262500744,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp_rate",0.04],["def_rate",0.04],["speed",4],["speed",4],["speed",4],["speed",3],["max_hp",162],["max_hp",191],["max_hp_rate",0.01,"u"],["def_rate",0.01,"u"],["speed",3,"u"],["max_hp",112,"u"]],"p":649028156,"s":"92b8","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a_u","ct":1687763657,"e":99666,"f":"set_speed","g":5,"id":262500787,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["res",0.07],["speed",4],["max_hp",184],["max_hp_rate",0.04],["max_hp_rate",0.08],["speed",4],["res",0.07],["speed",2],["speed",4],["res",0.03,"u"],["speed",3,"u"],["max_hp",56,"u"],["max_hp_rate",0.03,"u"]],"p":898971885,"s":"a204","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a","ct":1687763657,"e":82962,"f":"set_speed","g":5,"id":262500915,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["max_hp",189],["def_rate",0.04],["acc",0.04],["cri",0.03],["max_hp",193],["def_rate",0.04],["cri",0.04],["cri",0.05],["acc",0.06]],"p":48982864,"s":"2060","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a_u","ct":1687763735,"e":94169,"f":"set_speed","g":5,"id":262534238,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp_rate",0],["res",0.07],["acc",0.04],["def_rate",0.04],["res",0.05],["acc",0.06],["def_rate",0.04],["max_hp_rate",0],["res",0.07],["max_hp_rate",0.03,"u"],["res",0.04,"u"],["acc",0.03,"u"],["def_rate",0.03,"u"],["max_hp_rate",0.09,"c","change2_max_hp_rate_2_1"]],"p":31856726,"s":"930a","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eap3w","ct":1687780503,"e":85589,"f":"set_max_hp","g":5,"id":269696885,"l":true,"level":75,"mainStatBaseValue":93,"mainStatId":"ap3_weap_m1","mainStatType":"att","mainStatValue":465,"mg":1111,"op":[["att",93],["max_hp_rate",0.07],["res",0.07],["speed",4],["acc",0.07],["max_hp_rate",0.06],["res",0.05],["max_hp_rate",0.08],["speed",4],["res",0.07]],"p":830235768,"s":"9431","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eap3h","ct":1687780503,"e":82348,"f":"set_max_hp","g":5,"id":269696916,"l":true,"level":75,"mainStatBaseValue":499,"mainStatId":"ap3_helm_m1","mainStatType":"max_hp","mainStatValue":2495,"mg":1111,"op":[["max_hp",499],["max_hp_rate",0.07],["def_rate",0.07],["speed",4],["res",0.07],["res",0.06],["def_rate",0.08],["res",0.08],["max_hp_rate",0.07],["res",0.08]],"p":893757497,"s":"3f84","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eap3a","ct":1687780503,"e":84411,"f":"set_max_hp","g":5,"id":269696941,"l":true,"level":75,"mainStatBaseValue":55,"mainStatId":"ap3_armo_m1","mainStatType":"def","mainStatValue":275,"mg":1111,"op":[["def",55],["max_hp_rate",0.07],["def_rate",0.07],["speed",4],["res",0.07],["res",0.07],["def_rate",0.05],["max_hp_rate",0.05],["max_hp_rate",0.07],["speed",2]],"p":830235768,"s":"8fb0","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eap3b","ct":1687780503,"e":82305,"f":"set_max_hp","g":5,"id":269696969,"l":true,"level":75,"mainStatBaseValue":7,"mainStatId":"ap3_boot_m1","mainStatType":"speed","mainStatValue":35,"mg":1111,"op":[["speed",7],["def_rate",0.07],["res",0.07],["max_hp_rate",0.07],["acc",0.07],["def_rate",0.08],["def_rate",0.08],["acc",0.07],["def_rate",0.08],["def_rate",0.08]],"p":166490,"s":"b520","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eap3r","ct":1687780503,"e":82165,"f":"set_max_hp","g":5,"id":269696988,"l":true,"level":75,"mainStatBaseValue":0.12,"mainStatId":"ap3_ring_m1","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["def_rate",0.07],["res",0.07],["speed",4],["acc",0.07],["def_rate",0.05],["speed",4],["def_rate",0.05],["speed",4],["speed",2]],"p":898971885,"s":"ea23","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eap3n","ct":1687780503,"e":84576,"f":"set_max_hp","g":5,"id":269697020,"l":true,"level":75,"mainStatBaseValue":0.12,"mainStatId":"ap3_neck_m1","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["def_rate",0.07],["res",0.07],["speed",4],["acc",0.07],["def_rate",0.08],["speed",2],["def_rate",0.05],["speed",2],["def_rate",0.08]],"p":412803674,"s":"d982","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6a_u","ct":1687832378,"e":94528,"f":"set_acc","g":5,"id":289119203,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["acc",0.05],["cri_dmg",0.05],["speed",4],["res",0.05],["speed",2],["acc",0.07],["speed",3],["res",0.04],["acc",0.06],["acc",0.04,"u"],["cri_dmg",0.01,"u"],["speed",2,"u"],["res",0.03,"u"]],"p":518782830,"s":"e856","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6h","ct":1687843166,"e":75864,"f":"set_acc","g":4,"id":294239285,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["speed",4],["def_rate",0.04],["max_hp_rate",0.05],["speed",4],["max_hp_rate",0.04],["max_hp_rate",0.06],["cri",0.04],["speed",2]],"s":"4ec","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6h_u","ct":1687843166,"e":93750,"f":"set_acc","g":5,"id":294239392,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["att_rate",0.08],["max_hp_rate",0.06],["speed",0],["cri",0.05],["att_rate",0.07],["max_hp_rate",0.08],["cri",0.04],["max_hp_rate",0.07],["cri",0.03],["speed",3,"c"],["att_rate",0.03,"u"],["max_hp_rate",0.04,"u"],["cri",0.03,"u"]],"p":518782830,"s":"790b","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6h","ct":1687843167,"e":82203,"f":"set_acc","g":5,"id":294239493,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["att_rate",0.06],["res",0.08],["cri_dmg",0.05],["cri",0.04],["cri",0.05],["cri",0.03],["res",0.05],["res",0.06],["cri_dmg",0.04]],"p":319905485,"s":"e28a","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6h_u","ct":1687843261,"e":94048,"f":"set_speed","g":5,"id":294284791,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["att_rate",0.06],["speed",2],["cri_dmg",0],["cri",0.05],["att_rate",0.07],["cri",0.03],["cri",0.03],["speed",4],["att_rate",0.08],["att_rate",0.04,"u"],["speed",1,"u"],["cri_dmg",0.01,"u"],["cri",0.03,"u"],["cri_dmg",0.07,"c","change2_cri_dmg_1_2"]],"s":"ebc6","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6h_u","ct":1687843331,"e":93938,"f":"set_cri","g":5,"id":294318046,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["cri_dmg",0.06],["att_rate",0],["speed",3],["cri",0.03],["att_rate",0],["speed",4],["cri_dmg",0.06],["att_rate",0],["cri",0.03],["att_rate",0.11,"c"],["cri_dmg",0.02,"u"],["att_rate",0.04,"u"],["speed",1,"u"],["cri",0.02,"u"]],"p":6844892,"s":"62f7","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6h_u","ct":1687843332,"e":85126,"f":"set_speed","g":4,"id":294318077,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["max_hp_rate",0.08],["def_rate",0],["speed",3],["max_hp_rate",0.07],["max_hp_rate",0.07],["max_hp_rate",0.05],["res",0.05],["res",0.06],["max_hp_rate",0.05,"u"],["def_rate",0.01,"u"],["res",0.03,"u"],["def_rate",0.06,"c","change2_def_rate_1_1"]],"p":445022861,"s":"262d","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6a","ct":1687843428,"e":76806,"f":"set_speed","g":4,"id":294364408,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["max_hp_rate",0.07],["cri_dmg",0.04],["speed",3],["max_hp_rate",0.08],["speed",4],["max_hp_rate",0.04],["def_rate",0.05],["def_rate",0.06]],"p":742543115,"s":"b945","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a_u","ct":1687843510,"e":94030,"f":"set_speed","g":5,"id":294402286,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["def_rate",0.08],["cri",0.05],["cri_dmg",0.06],["speed",3],["speed",4],["cri_dmg",0.07],["cri_dmg",0.06],["cri",0.03],["cri",0.04],["def_rate",0.01,"u"],["cri",0.03,"u"],["cri_dmg",0.03,"u"],["speed",1,"u"]],"s":"87ef","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a_u","ct":1687843510,"e":94145,"f":"set_cri","g":5,"id":294402395,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri_dmg",0.05],["cri",0.03],["speed",4],["max_hp_rate",0.04],["cri",0.03],["max_hp_rate",0.05],["speed",3],["cri_dmg",0.05],["speed",2],["cri_dmg",0.02,"u"],["cri",0.02,"u"],["speed",2,"u"],["max_hp_rate",0.03,"u"]],"p":518421029,"s":"96e0","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a_u","ct":1687843510,"e":94339,"f":"set_speed","g":5,"id":294402419,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.08],["res",0.08],["def_rate",0.04],["speed",4],["speed",2],["max_hp_rate",0.07],["speed",3],["speed",4],["speed",4],["max_hp_rate",0.03,"u"],["res",0.01,"u"],["def_rate",0.01,"u"],["speed",4,"u"]],"p":618609916,"s":"ac3d","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6w","ct":1687843610,"e":87349,"f":"set_speed","g":5,"id":294448326,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["att_rate",0.05],["acc",0.04],["cri_dmg",0.07],["max_hp_rate",0.07],["att_rate",0.04],["att_rate",0.08],["max_hp_rate",0.05],["att_rate",0.04],["att_rate",0.06]],"s":"e41b","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6w_u","ct":1687843611,"e":93835,"f":"set_cri","g":5,"id":294448584,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["att_rate",0.08],["speed",4],["cri",0],["cri_dmg",0.04],["cri",0],["speed",4],["speed",3],["speed",3],["cri_dmg",0.06],["att_rate",0.01,"u"],["speed",3,"u"],["cri",0.02,"u"],["cri_dmg",0.02,"u"],["cri",0.03,"c","change2_cri_2_1"]],"s":"7a7d","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6w_u","ct":1687843724,"e":85238,"f":"set_speed","g":4,"id":294501141,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["res",0.07],["acc",0.05],["speed",4],["speed",3],["speed",4],["acc",0.05],["cri_dmg",0.04],["acc",0.08],["res",0.01,"u"],["acc",0.04,"u"],["speed",2,"u"],["cri_dmg",0.01,"u"]],"p":403476926,"s":"855e","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6w","ct":1687843725,"e":82230,"f":"set_speed","g":5,"id":294501452,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["speed",3],["max_hp",180],["cri_dmg",0.07],["acc",0.07],["acc",0.08],["max_hp",164],["acc",0.04],["cri_dmg",0.05],["max_hp",185]],"p":48982864,"s":"2ee","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6h_u","ct":1687854931,"e":94412,"f":"set_speed","g":5,"id":299456471,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["res",0.08],["speed",0],["max_hp_rate",0.08],["def",32],["max_hp_rate",0.04],["res",0.06],["max_hp_rate",0.06],["res",0.06],["def",32],["res",0.04,"u"],["speed",0,"u"],["max_hp_rate",0.04,"u"],["def",18,"u"],["speed",3,"c","change2_speed_1_1"]],"p":389494760,"s":"ad12","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eah8n","ct":1687856205,"e":94670,"f":"set_speed","g":5,"id":300013216,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ah8_neck_m1","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["speed",4],["cri",0.05],["res",0.06],["acc",0.06],["cri",0.03],["res",0.08],["cri",0.03],["res",0.04],["res",0.08]],"p":279573776,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6n_u","ct":1687858583,"e":98582,"f":"set_speed","g":5,"id":301032347,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["def_rate",0.06],["speed",0],["res",0.07],["cri_dmg",0.04],["def_rate",0.05],["res",0.07],["res",0.04],["speed",0],["def_rate",0.07],["speed",5,"c"],["def_rate",0.04,"u"],["speed",1,"u"],["res",0.04,"u"],["cri_dmg",0.01,"u"]],"p":566472035,"s":"278","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eah9r","ct":1687858643,"e":93970,"f":"set_acc","g":5,"id":301056541,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ah9_ring_m1","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["att_rate",0.06],["def_rate",0.06],["speed",4],["res",0.06],["def_rate",0.07],["res",0.04],["res",0.07],["res",0.04],["att_rate",0.04]],"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"esu5b","ct":1687873809,"e":88781,"f":"set_speed","g":5,"id":308004347,"l":true,"level":71,"mainStatBaseValue":7,"mainStatId":"un5_boot_m1","mainStatType":"speed","mainStatValue":35,"mg":1111,"op":[["speed",7],["max_hp_rate",0.06],["att_rate",0.06],["def_rate",0.06],["cri",0.04],["def_rate",0.06],["max_hp_rate",0.03],["att_rate",0.05],["att_rate",0.04],["max_hp_rate",0.06]],"p":48982864,"s":"2e84","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecb6w_u","ct":1687956016,"e":94338,"f":"set_res","g":5,"id":336928771,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["speed",4],["max_hp_rate",0.08],["att_rate",0.06],["res",0.08],["res",0.07],["att_rate",0.04],["att_rate",0.07],["max_hp_rate",0.08],["res",0.08],["max_hp_rate",0.03,"u"],["att_rate",0.04,"u"],["res",0.04,"u"]],"p":893757497,"s":"562c","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eah8h","ct":1687961022,"e":112072,"f":"set_speed","g":5,"id":339227178,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"ah8_helm_m1","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["max_hp_rate",0.06],["def_rate",0.06],["speed",4],["res",0.06],["speed",3],["res",0.05],["def_rate",0.06],["max_hp_rate",0.05],["speed",4]],"p":226377978,"s":"0","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eah13r","ct":1688017793,"e":103784,"f":"set_cri","g":5,"id":355445654,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ah13_ring_m1","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["def_rate",0.06],["speed",4],["cri",0.05],["cri_dmg",0.06],["cri",0.05],["cri_dmg",0.07],["cri",0.03],["speed",3],["def_rate",0.07]],"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eap2w","ct":1688017941,"e":82266,"f":"set_att","g":5,"id":355496057,"l":true,"level":75,"mainStatBaseValue":93,"mainStatId":"ap2_weap_m1","mainStatType":"att","mainStatValue":465,"mg":1111,"op":[["att",93],["cri",0.04],["att_rate",0.07],["cri_dmg",0.06],["speed",4],["cri",0.05],["cri_dmg",0.07],["cri",0.05],["cri_dmg",0.07],["speed",2]],"p":49161666,"s":"7c69","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eap2h","ct":1688017941,"e":82301,"f":"set_att","g":5,"id":355496114,"l":true,"level":75,"mainStatBaseValue":499,"mainStatId":"ap2_helm_m1","mainStatType":"max_hp","mainStatValue":2495,"mg":1111,"op":[["max_hp",499],["cri",0.04],["att_rate",0.07],["cri_dmg",0.06],["speed",4],["att_rate",0.05],["cri",0.05],["speed",2],["cri_dmg",0.07],["cri_dmg",0.04]],"p":48982864,"s":"dc41","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eap2a","ct":1688017941,"e":88277,"f":"set_att","g":5,"id":355496155,"l":true,"level":75,"mainStatBaseValue":55,"mainStatId":"ap2_armo_m1","mainStatType":"def","mainStatValue":275,"mg":1111,"op":[["def",55],["cri_dmg",0.06],["cri",0.04],["max_hp_rate",0.07],["speed",4],["cri",0.03],["cri_dmg",0.07],["cri",0.03],["cri_dmg",0.04],["cri_dmg",0.06]],"s":"4003","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eap2b","ct":1688017942,"e":88827,"f":"set_att","g":5,"id":355496195,"l":true,"level":75,"mainStatBaseValue":0.12,"mainStatId":"ap2_boot_m1","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["cri_dmg",0.06],["cri",0.04],["max_hp_rate",0.07],["acc",0.07],["max_hp_rate",0.05],["cri_dmg",0.05],["cri_dmg",0.06],["acc",0.05],["acc",0.07]],"p":140659207,"s":"6300","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eap2n","ct":1688017942,"e":82552,"f":"set_att","g":5,"id":355496241,"l":true,"level":75,"mainStatBaseValue":0.13,"mainStatId":"ap2_neck_m1","mainStatType":"cri_dmg","mainStatValue":0.65,"mg":1111,"op":[["cri_dmg",0.13],["cri",0.04],["att_rate",0.07],["max_hp_rate",0.07],["speed",4],["att_rate",0.05],["att_rate",0.08],["cri",0.04],["speed",3],["att_rate",0.05]],"s":"5951","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eie18w","ct":1688115660,"e":82084,"f":"set_rage","g":5,"id":384442889,"l":true,"level":80,"mainStatBaseValue":95,"mainStatId":"inf_wepo_m1","mainStatType":"att","mainStatValue":475,"mg":1111,"op":[["att",95],["max_hp_rate",0.08],["att_rate",0.08],["cri",0.05],["cri_dmg",0.07],["att_rate",0.05],["cri_dmg",0.07],["cri_dmg",0.07],["max_hp_rate",0.08],["cri_dmg",0.06]],"s":"2162","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eih8n","ct":1688128046,"e":97303,"f":"set_immune","g":5,"id":388326452,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ihf_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["att_rate",0.08],["def_rate",0.08],["speed",5],["acc",0.08],["att_rate",0.05],["acc",0.06],["acc",0.04],["def_rate",0.04],["speed",3]],"s":"f47b","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eih8w","ct":1688440308,"e":93843,"f":"set_acc","g":5,"id":476567788,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"ihf_wepo_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.08],["speed",5],["cri",0.05],["acc",0.08],["cri",0.03],["acc",0.04],["max_hp_rate",0.04],["speed",5],["max_hp_rate",0.07]],"s":"8669","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eah20r","ct":1688564159,"e":94860,"f":"set_acc","g":5,"id":505480826,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ah20_ring_m1","mainStatType":"acc","mainStatValue":0.65,"mg":1111,"op":[["acc",0.13],["att_rate",0.07],["def_rate",0.07],["speed",5],["max_hp_rate",0.07],["def_rate",0.05],["speed",3],["max_hp_rate",0.05],["def_rate",0.08],["max_hp_rate",0.05]],"p":4647526,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eah17b","ct":1688564752,"e":94860,"f":"set_max_hp","g":5,"id":505655177,"l":true,"level":88,"mainStatBaseValue":9,"mainStatId":"ah17_boot_m1","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9],["max_hp_rate",0.07],["att_rate",0.07],["acc",0.07],["res",0.07],["att_rate",0.07],["acc",0.06],["acc",0.09],["att_rate",0.09],["max_hp_rate",0.05]],"p":829105288,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"exc108801","ct":1688569072,"g":5,"id":506952000,"mg":1111,"op":[["max_hp_rate",0.13],["ek_c108801",2]],"p":115835449,"s":"3f0f"},{"code":"exc108801","ct":1688569077,"g":5,"id":506953726,"l":true,"mg":1111,"op":[["max_hp_rate",0.11],["ek_c108801",3]],"s":"8343"},{"code":"exc107201","ct":1688572703,"g":5,"id":508010364,"l":true,"mg":1111,"op":[["att_rate",0.14],["ek_c107201",1]],"s":"c1eb"},{"code":"exc107201","ct":1688572707,"g":5,"id":508011271,"l":true,"mg":1111,"op":[["att_rate",0.08],["ek_c107201",3]],"s":"deec"},{"code":"eus6a","ct":1688739974,"e":19484,"f":"set_vampire","g":5,"id":543925421,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"un6_armo_m1","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["max_hp_rate",0.04],["speed",3],["cri",0.03],["acc",0.08],["speed",3],["speed",3],["acc",0.08]],"s":"fdc1","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eus6n","ct":1688858564,"e":82510,"f":"set_vampire","g":5,"id":567279111,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"un6_neck_m1","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["max_hp_rate",0.05],["speed",3],["cri",0.05],["acc",0.07],["speed",4],["max_hp_rate",0.08],["cri",0.05],["speed",2],["cri",0.03]],"s":"e214","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6r","ct":1688888630,"e":73828,"f":"set_speed","g":4,"id":576858023,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"acc","mainStatValue":0.6,"mg":1111,"op":[["acc",0.12],["max_hp",188],["cri",0.05],["speed",4],["max_hp",177],["cri",0.04],["cri",0.05],["def_rate",0.04],["max_hp",190]],"s":"85a3","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6r","ct":1688888715,"e":73886,"f":"set_speed","g":4,"id":576888702,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["acc",0.07],["def_rate",0.04],["cri",0.03],["acc",0.05],["cri",0.05],["cri",0.03],["speed",2],["cri",0.05]],"s":"f8a5","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eal85b_u","ct":1688889520,"e":98929,"f":"set_speed","g":5,"id":577173482,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["att_rate",0.06],["max_hp_rate",0.08],["acc",0.07],["max_hp",159],["max_hp_rate",0.05],["max_hp_rate",0.04],["att_rate",0.08],["max_hp",182],["acc",0.05],["att_rate",0.03,"u"],["max_hp_rate",0.04,"u"],["acc",0.03,"u"],["max_hp",112,"u"]],"p":6885517,"s":"2236","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6r_u","ct":1688890156,"e":93750,"f":"set_speed","g":5,"id":577397598,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"res","mainStatValue":0.65,"mg":1111,"op":[["res",0.13,null,null,0],["cri",0.05],["def_rate",0.05],["cri_dmg",0.05],["att_rate",0.05],["cri_dmg",0.07],["cri",0.05],["cri_dmg",0.04],["att_rate",0.07],["def_rate",0.06],["cri",0.02,"u"],["def_rate",0.03,"u"],["cri_dmg",0.03,"u"],["att_rate",0.03,"u"]],"p":713631381,"s":"d67f","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6w_u","ct":1688890817,"e":98626,"f":"set_speed","g":5,"id":577631529,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["cri",0.03],["acc",0.04],["max_hp_rate",0.06],["res",0.07],["acc",0.08],["acc",0.08],["max_hp_rate",0.07],["max_hp_rate",0.06],["cri",0.05],["cri",0.02,"u"],["acc",0.04,"u"],["max_hp_rate",0.04,"u"],["res",0.01,"u"]],"p":166490,"s":"1ca8","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eus6r","ct":1688998892,"e":85244,"f":"set_vampire","g":5,"id":604863261,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"un6_ring_m1","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["max_hp_rate",0.04],["speed",4],["cri",0.03],["def_rate",0],["cri",0.04],["max_hp_rate",0.05],["speed",3],["cri",0.03],["cri",0.05],["def_rate",0.05,"c","change2_def_rate_1_1"]],"s":"4b3f","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6b_u","ct":1689039382,"e":85289,"f":"set_cri","g":4,"id":611475932,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["max_hp_rate",0],["cri",0.05],["cri_dmg",0.06],["cri_dmg",0.04],["cri",0.05],["cri",0.03],["def_rate",0.05],["cri",0.04],["max_hp_rate",0.04,"c"],["max_hp_rate",0.01,"u"],["cri",0.04,"u"],["cri_dmg",0.02,"u"],["def_rate",0.01,"u"]],"s":"251e","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eal85b_u","ct":1689130450,"e":94183,"f":"set_speed","g":5,"id":629160765,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["cri_dmg",0],["att_rate",0.07],["cri",0.04],["max_hp_rate",0.06],["cri_dmg",0],["max_hp_rate",0.05],["cri_dmg",0],["max_hp_rate",0.07],["cri",0.05],["cri_dmg",0.11,"c"],["cri_dmg",0.03,"u"],["att_rate",0.01,"u"],["cri",0.02,"u"],["max_hp_rate",0.04,"u"]],"p":490684210,"s":"e6c4","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecs7r","ct":1689236282,"e":94079,"f":"set_cri","g":5,"id":648330212,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"cs7_ring_m1","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["max_hp_rate",0.08],["speed",4],["cri",0.05],["cri_dmg",0.07],["cri",0.03],["max_hp_rate",0.07],["max_hp_rate",0.07],["cri_dmg",0.06],["max_hp_rate",0.06]],"p":360878989,"s":"4075","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eah13a","ct":1689437921,"e":98209,"f":"set_cri","g":5,"id":691030506,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"ah13_armo_m1","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["speed",4],["cri",0.05],["cri_dmg",0.06],["res",0.06],["cri",0.05],["cri",0.04],["cri",0.03],["speed",2],["speed",2]],"s":"0","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eus7w","ct":1689441497,"e":93851,"f":"set_vampire","g":5,"id":691587898,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"un7_weap_m1","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.09],["att_rate",0.09],["speed",5],["cri",0.06],["att_rate",0.07],["cri",0.06],["max_hp_rate",0.05],["att_rate",0.07],["max_hp_rate",0.07]],"s":"1987","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6w_u","ct":1689503650,"e":94594,"f":"set_speed","g":5,"id":704893645,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["cri",0.03],["max_hp_rate",0.06],["speed",4],["acc",0.07],["cri",0.03],["cri",0.04],["max_hp_rate",0.05],["speed",3],["acc",0.07],["cri",0.03,"u"],["max_hp_rate",0.03,"u"],["speed",1,"u"],["acc",0.03,"u"]],"p":117268286,"s":"731d","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6a","ct":1689503666,"e":80752,"f":"set_speed","g":4,"id":704897964,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["res",0.08],["speed",3],["max_hp",166],["res",0.04],["speed",3],["speed",4],["cri",0.03],["speed",2]],"s":"fc1a","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a_u","ct":1689512515,"e":94270,"f":"set_speed","g":5,"id":707434259,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["speed",4],["cri_dmg",0.07],["res",0.07],["max_hp",166],["speed",3],["speed",2],["cri_dmg",0.07],["speed",2],["res",0.06],["speed",3,"u"],["cri_dmg",0.02,"u"],["res",0.03,"u"],["max_hp",56,"u"]],"s":"a4c4","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6h","ct":1689514913,"e":8161,"f":"set_speed","g":5,"id":708193041,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["cri",0.04],["res",0.06],["def",29],["acc",0.08],["cri",0.05],["def",28]],"s":"a24b","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eih9n","ct":1689601803,"e":94148,"f":"set_penetrate","g":5,"id":724488481,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"imh_neck_m11","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["max_hp_rate",0.09],["cri",0.06],["speed",5],["att_rate",0.09],["speed",4],["max_hp_rate",0.09],["att_rate",0.07],["speed",4],["max_hp_rate",0.07]],"s":"6b39","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecg6w_u","ct":1689608997,"e":88270,"f":"set_max_hp","g":4,"id":726114158,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["max_hp_rate",0.08],["speed",3],["acc",0.06],["speed",3],["acc",0.06],["acc",0.05],["res",0.08],["res",0.05],["max_hp_rate",0.01,"u"],["speed",1,"u"],["acc",0.04,"u"],["res",0.03,"u"]],"p":40490456,"s":"392e","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecb6h_u","ct":1689865820,"e":94287,"f":"set_res","g":5,"id":764162132,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["res",0.05],["max_hp_rate",0.06],["def",32],["def_rate",0.05],["def_rate",0.07],["def",31],["def_rate",0.07],["res",0.04],["res",0.06],["res",0.04,"u"],["max_hp_rate",0.01,"u"],["def",18,"u"],["def_rate",0.04,"u"]],"p":218403497,"s":"f83b","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eus7h","ct":1689865963,"e":94122,"f":"set_vampire","g":5,"id":764197884,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"un7_helm_m1","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["max_hp_rate",0.09],["att_rate",0.09],["speed",5],["cri",0.06],["att_rate",0.06],["max_hp_rate",0.05],["att_rate",0.09],["cri",0.05],["cri",0.03]],"s":"588a","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6a_u","ct":1689870973,"e":94589,"f":"set_counter","g":5,"id":765293871,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["speed",3],["cri",0.05],["cri_dmg",0.05],["max_hp_rate",0.08],["cri_dmg",0.06],["cri_dmg",0.05],["max_hp_rate",0.08],["speed",2],["speed",4],["speed",2,"u"],["cri",0.01,"u"],["cri_dmg",0.03,"u"],["max_hp_rate",0.03,"u"]],"p":360878989,"s":"bb1b","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eus7a","ct":1689955462,"e":94137,"f":"set_vampire","g":5,"id":787867181,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"un7_armo_m1","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.09],["speed",5],["cri",0.06],["acc",0.09],["max_hp_rate",0.05],["cri",0.03],["acc",0.06],["speed",4],["cri",0.03]],"p":313179896,"s":"ffa5","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecd6h_u","ct":1690021934,"e":93750,"f":"set_penetrate","g":5,"id":797246691,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["cri",0.04],["max_hp_rate",0.06],["acc",0.06],["speed",3],["cri",0.04],["acc",0.07],["acc",0.07],["max_hp_rate",0.06],["max_hp_rate",0.08],["cri",0.02,"u"],["max_hp_rate",0.04,"u"],["acc",0.04,"u"]],"p":49161666,"s":"161","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecd6n","ct":1690031207,"f":"set_penetrate","g":5,"id":798673712,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["att_rate",0.08],["att",34],["res",0.07],["def_rate",0.06]],"p":440334191,"s":"73a8","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecd6h_u","ct":1690035492,"e":93750,"f":"set_penetrate","g":5,"id":799418097,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["cri_dmg",0],["def_rate",0.08],["max_hp_rate",0.05],["att_rate",0.07],["att_rate",0.07],["att_rate",0.07],["def_rate",0.06],["max_hp_rate",0.04],["att_rate",0.07],["cri_dmg",0.05,"c"],["cri_dmg",0.01,"u"],["def_rate",0.03,"u"],["max_hp_rate",0.03,"u"],["att_rate",0.05,"u"]],"s":"da89","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eeu1h","ct":1690035701,"e":82475,"f":"set_max_hp","g":5,"id":799455981,"l":true,"level":80,"mainStatBaseValue":513,"mainStatId":"eu1_helm_m1","mainStatType":"max_hp","mainStatValue":2565,"mg":1111,"op":[["max_hp",513],["def_rate",0.07],["max_hp_rate",0.07],["res",0.07],["speed",4],["speed",4],["def_rate",0.06],["res",0.06],["max_hp_rate",0.05],["max_hp_rate",0.07]],"p":830235768,"s":"0","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eot2n_u4","ct":1690040029,"e":82726,"f":"set_speed","g":5,"id":800225597,"l":true,"level":78,"mainStatBaseValue":0.12,"mainStatId":"ot2u_neck_m4","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["speed",3],["cri_dmg",0.04],["res",0.08],["cri",0.05],["res",0.05],["res",0.07],["cri_dmg",0.04],["res",0.06],["res",0.07]],"p":31856726,"s":"ca94","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecb6a_u","ct":1690040362,"e":93943,"f":"set_res","g":5,"id":800283637,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri",0.03],["res",0.07],["max_hp",177],["def_rate",0.06],["def_rate",0.06],["res",0.05],["res",0.07],["cri",0.03],["def_rate",0.07],["cri",0.02,"u"],["res",0.04,"u"],["max_hp",56,"u"],["def_rate",0.04,"u"]],"p":90857803,"s":"d14d","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6h","ct":1690080024,"e":73895,"f":"set_speed","g":4,"id":805454737,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["cri_dmg",0.07],["def",27],["speed",4],["speed",4],["cri_dmg",0.06],["cri_dmg",0.07],["def_rate",0.07],["def_rate",0.07]],"s":"9473","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6w_u","ct":1690109043,"e":87795,"f":"set_speed","g":4,"id":813012872,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["max_hp_rate",0.07],["res",0.07],["speed",3],["max_hp_rate",0.08],["res",0.08],["max_hp_rate",0.05],["cri_dmg",0.05],["max_hp_rate",0.04],["max_hp_rate",0.05,"u"],["res",0.03,"u"],["cri_dmg",0.01,"u"]],"p":31856726,"s":"6658","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6w","ct":1690109103,"e":82418,"f":"set_cri","g":5,"id":813027691,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["acc",0.08],["att_rate",0.05],["speed",3],["cri",0.04],["cri",0.04],["cri",0.04],["speed",2],["acc",0.06],["speed",4]],"s":"399a","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6w_u","ct":1690109104,"e":94995,"f":"set_speed","g":5,"id":813027749,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["cri",0.05],["cri_dmg",0.07],["att_rate",0.08],["acc",0.08],["cri_dmg",0.06],["cri",0.04],["cri",0.03],["acc",0.07],["cri",0.05],["cri",0.04,"u"],["cri_dmg",0.02,"u"],["att_rate",0.01,"u"],["acc",0.03,"u"]],"p":6844892,"s":"7fa3","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6h","ct":1690109210,"e":73845,"f":"set_cri","g":4,"id":813054588,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["def_rate",0.07],["att_rate",0.08],["cri_dmg",0.06],["cri_dmg",0.05],["cri_dmg",0.07],["att_rate",0.06],["max_hp_rate",0.04],["max_hp_rate",0.07]],"p":140659207,"s":"d6b9","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6a_u","ct":1690109361,"e":84375,"f":"set_speed","g":4,"id":813092363,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp_rate",0],["cri_dmg",0.06],["cri",0.05],["cri_dmg",0.05],["cri",0.04],["cri",0.03],["speed",4],["cri",0.04],["max_hp_rate",0.01,"u"],["cri_dmg",0.02,"u"],["cri",0.04,"u"],["max_hp_rate",0.07,"c","change2_max_hp_rate_1_2"]],"p":99507012,"s":"8ac1","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6h_u","ct":1690109435,"e":95882,"f":"set_speed","g":5,"id":813111415,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["max_hp_rate",0.05],["cri",0.05],["acc",0.06],["att_rate",0.05],["max_hp_rate",0.07],["att_rate",0.07],["max_hp_rate",0.05],["acc",0.07],["cri",0.04],["max_hp_rate",0.04,"u"],["cri",0.02,"u"],["acc",0.03,"u"],["att_rate",0.03,"u"]],"p":21884461,"s":"a122","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecd6r","ct":1690111779,"e":4125,"f":"set_revenge","g":5,"id":813696804,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"def_rate","mainStatValue":0.6,"mg":1111,"op":[["def_rate",0.12],["att",40],["max_hp_rate",0.07],["cri",0.05],["speed",3],["cri",0.05]],"s":"429f","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6h_u","ct":1690116357,"e":84759,"f":"set_speed","g":4,"id":814879215,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["speed",4],["att_rate",0],["cri_dmg",0.04],["cri_dmg",0.07],["speed",4],["cri_dmg",0.04],["res",0.07],["cri_dmg",0.07],["speed",1,"u"],["att_rate",0.01,"u"],["cri_dmg",0.04,"u"],["res",0.01,"u"],["att_rate",0.06,"c","change2_att_rate_1_1"]],"s":"d21d","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eus7n","ct":1690124564,"e":95178,"f":"set_vampire","g":5,"id":817316274,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"un7_neck_m1","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["max_hp_rate",0.09],["speed",5],["cri",0.06],["acc",0.09],["acc",0.09],["max_hp_rate",0.07],["speed",4],["max_hp_rate",0.07],["cri",0.03]],"s":"37e0","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"exc106201","ct":1690125190,"g":5,"id":817511469,"mg":1111,"op":[["speed",8],["ek_c106201",2]],"s":"972"},{"code":"exc106201","ct":1690125197,"g":5,"id":817513776,"l":true,"mg":1111,"op":[["speed",10],["ek_c106201",3]],"p":40490456,"s":"b1c6"},{"code":"eus7r","ct":1690128943,"e":94118,"f":"set_vampire","g":5,"id":818592178,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"un7_ring_m1","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["max_hp_rate",0.09],["speed",5],["cri",0.06],["cri_dmg",0],["cri_dmg",0],["speed",4],["max_hp_rate",0.09],["speed",3],["cri_dmg",0],["cri_dmg",0.08,"c","change2_cri_dmg_3_1"]],"s":"e210","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecd6a_u","ct":1690206102,"e":94099,"f":"set_penetrate","g":5,"id":830173356,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri",0],["cri_dmg",0.07],["speed",4],["max_hp_rate",0.06],["speed",4],["speed",2],["speed",2],["cri",0],["speed",3],["cri",0.02,"u"],["cri_dmg",0.01,"u"],["speed",4,"u"],["max_hp_rate",0.01,"u"],["cri",0.04,"c","change2_cri_2_1"]],"p":777666204,"s":"981a","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eeu1n","ct":1690207788,"e":82909,"f":"set_max_hp","g":5,"id":830527704,"l":true,"level":80,"mainStatBaseValue":0.12,"mainStatId":"eu1_neck_m1","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["res",0.07],["speed",4],["cri",0.04],["def_rate",0.07],["def_rate",0.05],["speed",2],["cri",0.05],["cri",0.03],["cri",0.03]],"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eeu1b","ct":1690209317,"e":82480,"f":"set_max_hp","g":5,"id":830852536,"l":true,"level":80,"mainStatBaseValue":0.12,"mainStatId":"eu1_boot_m1","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["def_rate",0.07],["res",0.07],["cri",0.04],["speed",4],["res",0.06],["def_rate",0.06],["def_rate",0.04],["def_rate",0.04],["cri",0.05]],"p":412803674,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eum13r","ct":1690210222,"e":101761,"f":"set_speed","g":5,"id":831044760,"l":true,"level":75,"mainStatBaseValue":0.12,"mainStatId":"um13_ring_m","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["max_hp_rate",0.06],["speed",4],["cri",0.05],["cri_dmg",0.06],["max_hp_rate",0.06],["cri_dmg",0.04],["cri",0.05],["max_hp_rate",0.07],["cri",0.03]],"p":549294853,"s":"77d7","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecd6a_u","ct":1690347105,"e":94029,"f":"set_penetrate","g":5,"id":847818635,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri_dmg",0.04],["speed",4],["acc",0.05],["def_rate",0.06],["cri_dmg",0.07],["cri_dmg",0.05],["def_rate",0.05],["def_rate",0.06],["cri_dmg",0.04],["cri_dmg",0.04,"u"],["acc",0.01,"u"],["def_rate",0.04,"u"]],"s":"dc1d","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6r","ct":1690462574,"e":74030,"f":"set_acc","g":4,"id":862719491,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"acc","mainStatValue":0.6,"mg":1111,"op":[["acc",0.12],["att_rate",0.07],["def_rate",0.06],["max_hp_rate",0.06],["att_rate",0.08],["att_rate",0.07],["att_rate",0.06],["att",38],["att",38]],"p":313109293,"s":"c71b","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6r","ct":1690462627,"f":"set_speed","g":5,"id":862728582,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"def_rate","mainStatValue":0.6,"mg":1111,"op":[["def_rate",0.12],["att_rate",0.04],["cri_dmg",0.04],["def",34],["acc",0.07]],"p":522853044,"s":"e06e","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"exc111901","ct":1690475088,"g":5,"id":864858624,"l":true,"mg":1111,"op":[["att_rate",0.08],["ek_c111901",2]],"s":"e6bc"},{"code":"exc111901","ct":1690475119,"g":5,"id":864862856,"mg":1111,"op":[["att_rate",0.11],["ek_c111901",3]],"s":"2fab"},{"code":"exc111901","ct":1690475122,"g":5,"id":864863306,"l":true,"mg":1111,"op":[["att_rate",0.08],["ek_c111901",1]],"s":"1a7f"},{"code":"exc111901","ct":1690475133,"g":5,"id":864864698,"l":true,"mg":1111,"op":[["att_rate",0.12],["ek_c111901",1]],"s":"e969"},{"code":"ecd6h_u","ct":1690518746,"e":93808,"f":"set_penetrate","g":5,"id":868975656,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["speed",4],["res",0.04],["def_rate",0],["cri",0.05],["cri",0.05],["res",0.07],["res",0.06],["res",0.07],["res",0.08],["res",0.07,"u"],["def_rate",0.01,"u"],["cri",0.02,"u"],["def_rate",0.06,"c","change2_def_rate_1_1"]],"p":48988518,"s":"775","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eah13n","ct":1690540168,"e":95627,"f":"set_cri","g":5,"id":871856531,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"ah13_neck_m1","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["max_hp_rate",0.06],["att_rate",0.06],["cri",0.05],["res",0.06],["res",0.08],["att_rate",0.04],["att_rate",0.04],["res",0.08],["res",0.04]],"p":6844892,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecd6n","ct":1690605473,"e":1982,"f":"set_penetrate","g":5,"id":879500420,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_neck_m","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["cri",0.03],["max_hp_rate",0.05],["acc",0.06],["def_rate",0.07],["cri",0.04]],"s":"46ef","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecq6a_u","ct":1690643568,"e":84464,"f":"set_rage","g":4,"id":884845052,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri",0.05],["cri_dmg",0.05],["speed",4],["speed",2],["cri_dmg",0.07],["cri",0.04],["acc",0.08],["cri",0.05],["cri",0.03,"u"],["cri_dmg",0.02,"u"],["speed",1,"u"],["acc",0.01,"u"]],"p":690904230,"s":"cb0a","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecd6h_u","ct":1690798820,"e":93945,"f":"set_penetrate","g":5,"id":901246333,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["att_rate",0.04],["acc",0.08],["cri_dmg",0.07],["speed",3],["att_rate",0.08],["acc",0.08],["att_rate",0.04],["att_rate",0.06],["cri_dmg",0.04],["att_rate",0.05,"u"],["acc",0.03,"u"],["cri_dmg",0.02,"u"]],"s":"2866","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eah15a","ct":1690801483,"e":93750,"f":"set_penetrate","g":5,"id":901529896,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"ah15_armo_m1","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["def_rate",0.06],["speed",4],["cri",0.05],["cri_dmg",0.06],["def_rate",0.06],["cri",0.03],["def_rate",0.05],["cri_dmg",0.06],["speed",2]],"s":"0","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eal85r_u","ct":1690902137,"e":94687,"f":"set_penetrate","g":5,"id":911737411,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,0],["speed",2],["cri_dmg",0],["cri",0.05],["max_hp_rate",0.08],["max_hp_rate",0.05],["cri",0.04],["max_hp_rate",0.05],["speed",4],["speed",4],["speed",2,"u"],["cri_dmg",0.01,"u"],["cri",0.02,"u"],["max_hp_rate",0.04,"u"],["cri_dmg",0.06,"c","change2_cri_dmg_1_1"]],"p":99507012,"s":"5e57","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eal85b_u","ct":1690902290,"e":94146,"f":"set_speed","g":5,"id":911758443,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["att_rate",0.06],["cri_dmg",0.05],["def_rate",0.06],["cri",0.03],["att_rate",0.06],["cri",0.04],["att_rate",0.04],["cri",0.03],["cri",0.03],["att_rate",0.04,"u"],["cri_dmg",0.01,"u"],["def_rate",0.01,"u"],["cri",0.04,"u"]],"s":"c342","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6h_u","ct":1691074089,"e":94099,"f":"set_speed","g":5,"id":950034425,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["att_rate",0.06],["cri",0.04],["speed",4],["max_hp_rate",0.06],["att_rate",0.05],["speed",2],["att_rate",0.06],["max_hp_rate",0.08],["max_hp_rate",0.07],["att_rate",0.04,"u"],["cri",0.01,"u"],["speed",1,"u"],["max_hp_rate",0.04,"u"]],"s":"35fd","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eie18h","ct":1691075357,"e":83405,"f":"set_speed","g":5,"id":950493439,"l":true,"level":80,"mainStatBaseValue":513,"mainStatId":"inf_helm_m1","mainStatType":"max_hp","mainStatValue":2565,"mg":1111,"op":[["max_hp",513],["def_rate",0.08],["speed",5],["cri",0.05],["acc",0.08],["acc",0.08],["acc",0.04],["acc",0.04],["def_rate",0.04],["acc",0.08]],"p":403476926,"s":"d401","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6w_u","ct":1691121365,"e":101111,"f":"set_speed","g":5,"id":958807250,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["att_rate",0.06],["cri",0.04],["speed",4],["max_hp_rate",0.06],["att_rate",0.06],["cri",0.03],["cri",0.03],["att_rate",0.08],["max_hp_rate",0.05],["att_rate",0.04,"u"],["cri",0.03,"u"],["max_hp_rate",0.03,"u"]],"p":150271128,"s":"19bf","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eah20b","ct":1691142135,"e":101483,"f":"set_acc","g":5,"id":964534414,"l":true,"level":88,"mainStatBaseValue":9,"mainStatId":"ah20_boot_m1","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9],["res",0.07],["def_rate",0.07],["max_hp_rate",0.07],["acc",0.07],["def_rate",0.09],["def_rate",0.05],["res",0.08],["max_hp_rate",0.05],["acc",0.09]],"p":4647526,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecb6h_u","ct":1691410155,"e":93862,"f":"set_counter","g":5,"id":1017122992,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["max_hp_rate",0.08],["cri_dmg",0.06],["res",0.08],["acc",0.05],["res",0.08],["cri_dmg",0.04],["res",0.04],["cri_dmg",0.04],["res",0.06],["max_hp_rate",0.01,"u"],["cri_dmg",0.03,"u"],["res",0.05,"u"],["acc",0.01,"u"]],"s":"8568","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6a_u","ct":1691411464,"e":101090,"f":"set_speed","g":5,"id":1017307432,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp_rate",0.06],["acc",0.06],["speed",4],["def_rate",0.06],["acc",0.07],["acc",0.08],["max_hp_rate",0.06],["acc",0.08],["max_hp_rate",0.08],["max_hp_rate",0.04,"u"],["acc",0.05,"u"],["def_rate",0.01,"u"]],"s":"5a81","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecd6h_u","ct":1691461375,"e":93769,"f":"set_penetrate","g":5,"id":1022018663,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["cri_dmg",0.06],["speed",4],["cri",0],["max_hp_rate",0.07],["max_hp_rate",0.08],["speed",2],["cri_dmg",0.05],["cri_dmg",0.06],["cri_dmg",0.05],["cri_dmg",0.04,"u"],["speed",1,"u"],["cri",0.01,"u"],["max_hp_rate",0.03,"u"],["cri",0.02,"c","change1_cri_1_1"]],"s":"d711","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eih1w","ct":1691487886,"e":97260,"f":"set_max_hp","g":5,"id":1024950442,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"imh_wepo_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["speed",3],["max_hp_rate",0.09],["max_hp",179],["cri",0.05],["speed",3],["cri",0.04],["cri",0.03],["cri",0.06],["cri",0.04]],"s":"bdba","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6b_u","ct":1691503294,"e":97785,"f":"set_speed","g":5,"id":1026796743,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["att_rate",0.06],["cri",0.04],["max_hp_rate",0.07],["def_rate",0.07],["cri",0.04],["att_rate",0.06],["def_rate",0.07],["max_hp_rate",0.04],["max_hp_rate",0.06],["att_rate",0.03,"u"],["cri",0.02,"u"],["max_hp_rate",0.04,"u"],["def_rate",0.03,"u"]],"p":559859822,"s":"f0b4","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecb6b_u","ct":1691678257,"e":97121,"f":"set_counter","g":5,"id":1042548473,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"def_rate","mainStatValue":0.65,"mg":1111,"op":[["def_rate",0.13,null,null,0],["speed",4],["att_rate",0.07],["cri_dmg",0.05],["cri",0.04],["cri_dmg",0.06],["att_rate",0.08],["cri_dmg",0.07],["speed",2],["cri_dmg",0.06],["speed",1,"u"],["att_rate",0.03,"u"],["cri_dmg",0.04,"u"],["cri",0.01,"u"]],"p":360878989,"s":"1127","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eih3w","ct":1691814405,"e":115173,"f":"set_rage","g":5,"id":1052966260,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"imh_wepo_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["att_rate",0.05],["speed",4],["max_hp_rate",0.08],["cri",0.05],["max_hp_rate",0.05],["max_hp_rate",0.07],["cri",0.03],["speed",4],["cri",0.03]],"s":"1bce","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eeu1r","ct":1691839543,"e":86277,"f":"set_max_hp","g":5,"id":1055351414,"l":true,"level":80,"mainStatBaseValue":0.12,"mainStatId":"eu1_ring_m1","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["speed",4],["def_rate",0.07],["res",0.07],["acc",0.07],["speed",4],["def_rate",0.05],["def_rate",0.07],["def_rate",0.05],["def_rate",0.06]],"p":40490456,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eeu1w","ct":1691852287,"e":82834,"f":"set_max_hp","g":5,"id":1056709008,"l":true,"level":80,"mainStatBaseValue":95,"mainStatId":"eu1_weap_m1","mainStatType":"att","mainStatValue":475,"mg":1111,"op":[["att",95],["max_hp_rate",0.07],["speed",4],["cri",0.04],["res",0.07],["res",0.07],["res",0.05],["cri",0.03],["cri",0.05],["max_hp_rate",0.05]],"s":"0","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecb6w","ct":1691907811,"e":39254,"f":"set_counter","g":5,"id":1061010023,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["cri_dmg",0.04],["acc",0.05],["att_rate",0.08],["cri",0.04],["att_rate",0.05],["acc",0.05],["cri_dmg",0.05],["acc",0.04]],"s":"b698","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6h_u","ct":1692026269,"e":93778,"f":"set_speed","g":5,"id":1071327894,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["def_rate",0.05],["speed",3],["cri_dmg",0.07],["max_hp_rate",0.04],["def_rate",0.06],["speed",4],["cri_dmg",0.07],["max_hp_rate",0.07],["max_hp_rate",0.04],["def_rate",0.03,"u"],["speed",1,"u"],["cri_dmg",0.02,"u"],["max_hp_rate",0.04,"u"]],"p":620426700,"s":"f961","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eih2a","ct":1692101668,"e":93913,"f":"set_res","g":5,"id":1076985972,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"imh_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.08],["def_rate",0.09],["max_hp",198],["res",0],["max_hp_rate",0.05],["def_rate",0.09],["max_hp_rate",0.09],["max_hp_rate",0.07],["res",0],["res",0.11,"c","change2_res_2_2"]],"p":412803674,"s":"fbda","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6b_u","ct":1692512618,"e":84392,"f":"set_speed","g":4,"id":1129638392,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["cri",0.05],["acc",0.08],["res",0.04],["cri",0.04],["res",0.08],["res",0.04],["max_hp_rate",0],["acc",0.08],["max_hp_rate",0.07,"c"],["cri",0.02,"u"],["acc",0.03,"u"],["res",0.04,"u"],["max_hp_rate",0.01,"u"]],"p":590699704,"s":"d2de","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6a","ct":1692513162,"e":75600,"f":"set_cri","g":4,"id":1129744885,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["cri_dmg",0.07],["def_rate",0.04],["speed",4],["def_rate",0.05],["def_rate",0.05],["cri_dmg",0.04],["res",0.06],["def_rate",0.07]],"s":"c18a","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6h_u","ct":1692548207,"e":93998,"f":"set_speed","g":5,"id":1136872192,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["max_hp_rate",0.08],["cri_dmg",0.05],["att_rate",0],["cri",0.03],["cri",0.05],["cri_dmg",0.05],["cri_dmg",0.04],["max_hp_rate",0.06],["att_rate",0],["att_rate",0.1,"c"],["max_hp_rate",0.03,"u"],["cri_dmg",0.03,"u"],["att_rate",0.03,"u"],["cri",0.02,"u"]],"p":490684210,"s":"7de5","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6n","ct":1692548230,"e":86455,"f":"set_acc","g":5,"id":1136876675,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["def_rate",0.06],["res",0.05],["speed",3],["cri",0.03],["def_rate",0.07],["def_rate",0.05],["def_rate",0.07],["res",0.05],["res",0.05]],"p":473350938,"s":"8ef9","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6a_u","ct":1692548556,"e":94048,"f":"set_acc","g":5,"id":1136939234,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri_dmg",0.05],["max_hp_rate",0.08],["speed",3],["def_rate",0.07],["max_hp_rate",0.08],["max_hp_rate",0.08],["speed",4],["max_hp_rate",0.06],["max_hp_rate",0.04],["cri_dmg",0.01,"u"],["max_hp_rate",0.07,"u"],["speed",1,"u"],["def_rate",0.01,"u"]],"p":899011010,"s":"e06c","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a","ct":1692548556,"e":82031,"f":"set_acc","g":5,"id":1136939258,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["cri_dmg",0.05],["def_rate",0.04],["res",0.06],["acc",0.08],["cri_dmg",0.05],["cri_dmg",0.05],["res",0.04],["cri_dmg",0.06],["def_rate",0.05]],"p":117268286,"s":"ff1","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6h_u","ct":1692548594,"e":84411,"f":"set_speed","g":4,"id":1136946286,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["cri_dmg",0.06],["def_rate",0.07],["max_hp_rate",0.08],["def_rate",0.07],["cri_dmg",0.06],["def_rate",0.06],["res",0.08],["res",0.06],["cri_dmg",0.02,"u"],["def_rate",0.04,"u"],["max_hp_rate",0.01,"u"],["res",0.03,"u"]],"p":90857803,"s":"7d8a","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6r_u","ct":1692585967,"e":115039,"f":"set_cri","g":5,"id":1142175659,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"def_rate","mainStatValue":0.65,"mg":1111,"op":[["def_rate",0.13,null,null,1],["max_hp_rate",0],["cri",0.04],["cri_dmg",0.04],["att_rate",0.08],["cri",0.04],["cri_dmg",0.06],["cri",0.03],["cri_dmg",0.07],["cri_dmg",0.04],["max_hp_rate",0.01,"u"],["cri",0.03,"u"],["cri_dmg",0.04,"u"],["att_rate",0.01,"u"],["max_hp_rate",0.08,"c","change2_max_hp_rate_1_1"]],"p":434015426,"s":"9df7","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6r_u","ct":1692617283,"e":94457,"f":"set_speed","g":5,"id":1149229209,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["acc",0.06],["def_rate",0.08],["speed",3],["max_hp",187],["acc",0.05],["max_hp",165],["acc",0.05],["max_hp",188],["speed",2],["acc",0.04,"u"],["def_rate",0.01,"u"],["speed",1,"u"],["max_hp",168,"u"]],"s":"d043","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6r_u","ct":1692617308,"e":94210,"f":"set_speed","g":5,"id":1149235477,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["acc",0.04],["att_rate",0.05],["speed",0],["def_rate",0.08],["acc",0.07],["acc",0.08],["att_rate",0.04],["def_rate",0.06],["att_rate",0.08],["speed",3,"c"],["acc",0.04,"u"],["att_rate",0.04,"u"],["def_rate",0.03,"u"]],"p":166490,"s":"63cb","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eeu1a","ct":1692630947,"e":82571,"f":"set_max_hp","g":5,"id":1152848167,"l":true,"level":80,"mainStatBaseValue":57,"mainStatId":"eu1_armo_m1","mainStatType":"def","mainStatValue":285,"mg":1111,"op":[["def",57],["def_rate",0.07],["max_hp_rate",0.07],["speed",4],["max_hp",0],["max_hp_rate",0.07],["max_hp_rate",0.07],["max_hp_rate",0.08],["speed",4],["max_hp_rate",0.06],["max_hp",163,"c","change2_max_hp_1_1"]],"p":739641017,"s":"0","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eah12n","ct":1692713222,"e":94759,"f":"set_counter","g":5,"id":1163632047,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"ah12_neck_m1","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["cri",0.05],["speed",4],["max_hp_rate",0.06],["att_rate",0],["max_hp_rate",0.04],["cri",0.03],["max_hp_rate",0.05],["speed",4],["cri",0.05],["att_rate",0.08,"c","change2_att_rate_1_2"]],"p":360878989,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eah12w","ct":1692713251,"e":94355,"f":"set_counter","g":5,"id":1163636420,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"ah12_weap_m1","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["att_rate",0.06],["max_hp_rate",0.06],["cri",0.05],["speed",4],["max_hp_rate",0.05],["att_rate",0.07],["att_rate",0.04],["speed",2],["max_hp_rate",0.08]],"s":"0","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eah13h","ct":1692968841,"e":94287,"f":"set_cri","g":5,"id":1196927356,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"ah13_helm_m1","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["max_hp_rate",0.06],["att_rate",0.06],["speed",4],["cri",0.05],["max_hp_rate",0.07],["att_rate",0.06],["att_rate",0.06],["att_rate",0.07],["max_hp_rate",0.05]],"s":"0","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eie18b","ct":1693233259,"e":85966,"f":"set_max_hp","g":5,"id":1229545416,"l":true,"level":80,"mainStatBaseValue":0.12,"mainStatId":"inf_boot_m1","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["def_rate",0.08],["cri",0.05],["res",0.08],["acc",0.08],["cri",0.04],["res",0.06],["res",0.06],["def_rate",0.07],["acc",0.07]],"p":799495489,"s":"167d","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eih9n","ct":1693236680,"e":94093,"f":"set_penetrate","g":5,"id":1230124571,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"imh_neck_m11","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["max_hp_rate",0.09],["cri",0.06],["speed",5],["att_rate",0.09],["att_rate",0.05],["speed",3],["cri",0.06],["speed",3],["cri",0.06]],"p":158971995,"s":"253c","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eal85b_u","ct":1693398788,"e":98672,"f":"set_speed","g":5,"id":1246408859,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["att_rate",0.06],["cri",0.04],["acc",0.07],["cri_dmg",0.06],["cri_dmg",0.04],["acc",0.07],["acc",0.06],["cri",0.03],["acc",0.04],["att_rate",0.01,"u"],["cri",0.02,"u"],["acc",0.05,"u"],["cri_dmg",0.02,"u"]],"p":618609916,"s":"b18e","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecs2h","ct":1693468332,"e":82031,"f":"set_immune","g":5,"id":1254071924,"l":true,"level":78,"mainStatBaseValue":513,"mainStatId":"cs2_helm_m1","mainStatType":"max_hp","mainStatValue":2565,"mg":1111,"op":[["max_hp",513],["cri_dmg",0],["speed",4],["cri",0.04],["att_rate",0.07],["att_rate",0.04],["speed",2],["att_rate",0.07],["att_rate",0.04],["att_rate",0.07],["cri_dmg",0.06,"c","change2_cri_dmg_1_1"]],"p":559859824,"s":"0","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecs2r","ct":1693468337,"e":84712,"f":"set_cri","g":5,"id":1254072762,"l":true,"level":78,"mainStatBaseValue":0.12,"mainStatId":"cs2_ring_m1","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["max_hp_rate",0.07],["cri",0.04],["cri_dmg",0.06],["acc",0.07],["acc",0.06],["cri",0.04],["cri",0.05],["cri",0.05],["cri",0.03]],"p":313179896,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecs2n","ct":1693468341,"e":82921,"f":"set_cri","g":5,"id":1254073561,"l":true,"level":78,"mainStatBaseValue":0.13,"mainStatId":"cs2_neck_m1","mainStatType":"cri_dmg","mainStatValue":0.65,"mg":1111,"op":[["cri_dmg",0.13],["def_rate",0.07],["cri",0.04],["att_rate",0.07],["speed",4],["def_rate",0.07],["def_rate",0.07],["att_rate",0.05],["att_rate",0.04],["def_rate",0.04]],"p":518421029,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eih2a","ct":1693575313,"e":20628,"f":"set_res","g":5,"id":1266214181,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"imh_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["acc",0.07],["cri",0.04],["cri_dmg",0.06],["def_rate",0.06],["cri",0.06],["acc",0.09],["cri",0.06]],"s":"1b63","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ewb1h","ct":1693836462,"e":93750,"f":"set_speed","g":5,"id":1292938356,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"wb1_helm_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["speed",5],["att_rate",0.09],["cri",0.06],["cri_dmg",0.08],["speed",4],["speed",4],["speed",4],["cri",0.05],["cri",0.05]],"p":583954927,"s":"5175","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eah19n","ct":1693840670,"e":94357,"f":"set_speed","g":5,"id":1293509714,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ah19_neck_m1","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["speed",5],["cri",0.05],["res",0.07],["def_rate",0.07],["cri",0.03],["cri",0.04],["cri",0.03],["res",0.06],["cri",0.04]],"p":777666204,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ela7b","ct":1693874163,"e":94080,"f":"set_vampire","g":5,"id":1295540409,"l":true,"level":88,"mainStatBaseValue":9,"mainStatId":"la7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9],["max_hp_rate",0.09],["att_rate",0.09],["def_rate",0.09],["cri",0.06],["max_hp_rate",0.09],["max_hp_rate",0.09],["max_hp_rate",0.07],["att_rate",0.05],["def_rate",0.07]],"p":326831592,"s":"d3cb","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eal85b_u","ct":1693892577,"e":94039,"f":"set_speed","g":5,"id":1297578046,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["def_rate",0.07],["cri",0.04],["att_rate",0],["cri_dmg",0.04],["cri",0.05],["att_rate",0],["def_rate",0.04],["cri_dmg",0.05],["cri",0.03],["att_rate",0.11,"c"],["def_rate",0.03,"u"],["cri",0.03,"u"],["att_rate",0.03,"u"],["cri_dmg",0.02,"u"]],"p":323638178,"s":"46a4","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eih9n","ct":1693921011,"e":95760,"f":"set_penetrate","g":5,"id":1300670242,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"imh_neck_m11","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["max_hp_rate",0.09],["cri",0.06],["speed",5],["att_rate",0.09],["cri",0.06],["cri",0.06],["cri",0.06],["max_hp_rate",0.06],["att_rate",0.09]],"p":461351155,"s":"bdac","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ela7r","ct":1694051288,"e":95760,"f":"set_immune","g":5,"id":1311832421,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"la7_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["att_rate",0.09],["def_rate",0.09],["speed",5],["cri",0.06],["speed",3],["speed",4],["def_rate",0.05],["att_rate",0.09],["att_rate",0.09]],"s":"c359","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ela7a","ct":1694182220,"e":95760,"f":"set_vampire","g":5,"id":1319942405,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"la7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.09],["def_rate",0.09],["speed",5],["cri_dmg",0.08],["max_hp_rate",0.06],["cri_dmg",0.06],["max_hp_rate",0.05],["cri_dmg",0.07],["speed",3]],"p":48988520,"s":"0","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eiu51r","ct":1694268912,"e":95592,"f":"set_res","g":5,"id":1327616181,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"iu51_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["acc",0.06],["speed",0],["def_rate",0.06],["res",0.06],["acc",0.08],["res",0.08],["acc",0.05],["res",0.05],["speed",0],["speed",5,"c","change2_speed_2_3"]],"p":90857803,"s":"d99b","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ela7w","ct":1694312566,"e":96383,"f":"set_vampire","g":5,"id":1330713921,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"la7_wepo_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.09],["cri_dmg",0],["speed",5],["cri",0.06],["max_hp_rate",0.05],["max_hp_rate",0.05],["speed",4],["cri",0.04],["max_hp_rate",0.08],["cri_dmg",0.06,"c","change2_cri_dmg_1_1"]],"p":48988520,"s":"4942","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ela7h","ct":1694399170,"e":93856,"f":"set_vampire","g":5,"id":1339029649,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"la7_helm_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["att_rate",0.09],["def_rate",0.09],["speed",5],["cri",0.06],["def_rate",0.08],["def_rate",0.06],["att_rate",0.05],["cri",0.03],["speed",3]],"s":"0","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eah19b","ct":1694610303,"e":94920,"f":"set_speed","g":5,"id":1354490436,"l":true,"level":88,"mainStatBaseValue":9,"mainStatId":"ah19_boot_m1","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9],["att_rate",0.07],["cri",0.05],["cri_dmg",0.06],["res",0.07],["att_rate",0.09],["cri_dmg",0.04],["att_rate",0.06],["res",0.06],["res",0.08]],"p":96079748,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ela7n","ct":1694693378,"e":93855,"f":"set_immune","g":5,"id":1360281980,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"la7_neck_m","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["att_rate",0.09],["def_rate",0.09],["speed",5],["cri",0.06],["cri",0.04],["cri",0.06],["cri",0.06],["att_rate",0.09],["cri",0.06]],"p":640588979,"s":"bf97","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eah17r","ct":1694710948,"e":94136,"f":"set_max_hp","g":5,"id":1362828555,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ah17_ring_m1","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["att_rate",0.07],["speed",5],["def_rate",0.07],["acc",0.07],["acc",0.07],["acc",0.09],["acc",0.07],["def_rate",0.09],["def_rate",0.09]],"p":620426700,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ess10n","ct":1694785665,"e":82320,"f":"set_speed","g":5,"id":1368533909,"l":true,"level":78,"mainStatBaseValue":0.12,"mainStatId":"ss10_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["def_rate",0.07],["speed",4],["res",0.07],["acc",0.07],["speed",2],["res",0.08],["res",0.07],["acc",0.06],["acc",0.06]],"p":21884461,"s":"d849","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eah10b","ct":1694915637,"e":93800,"f":"set_cri_dmg","g":5,"id":1388427710,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ah10_boot_m1","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["max_hp_rate",0.06],["speed",4],["cri",0.05],["res",0.06],["speed",3],["max_hp_rate",0.05],["res",0.04],["speed",4],["res",0.08]],"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eot2r_u1","ct":1694917485,"e":83255,"f":"set_rage","g":5,"id":1388720566,"l":true,"level":78,"mainStatBaseValue":0.12,"mainStatId":"ot2u_ring_m1","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["speed",3],["def",32],["cri",0.04],["cri_dmg",0.05],["cri_dmg",0.04],["cri_dmg",0.07],["cri",0.04],["speed",3],["cri_dmg",0.04]],"p":690904230,"s":"1a22","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecb6h_u","ct":1694941950,"e":93771,"f":"set_cri_dmg","g":5,"id":1393005362,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["att_rate",0.05],["speed",3],["cri",0],["cri_dmg",0.06],["speed",3],["cri_dmg",0.07],["speed",4],["speed",2],["speed",4],["att_rate",0.01,"u"],["speed",4,"u"],["cri",0.01,"u"],["cri_dmg",0.02,"u"],["cri",0.04,"c","change2_cri_1_2"]],"s":"32fe","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6w","ct":1694950763,"e":76440,"f":"set_counter","g":4,"id":1394544142,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["acc",0.05],["cri",0.03],["speed",4],["speed",2],["speed",3],["speed",3],["max_hp",164],["cri",0.05]],"s":"886d","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecb6w_u","ct":1694950763,"e":84464,"f":"set_res","g":4,"id":1394544157,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["res",0.08],["cri",0.05],["cri_dmg",0.05],["cri_dmg",0.07],["res",0.07],["cri",0.04],["att_rate",0],["cri",0.05],["res",0.03,"u"],["cri",0.03,"u"],["cri_dmg",0.02,"u"],["att_rate",0.01,"u"],["att_rate",0.08,"c","change1_att_rate_1_1"]],"p":306770592,"s":"69ad","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecb6w_u","ct":1694950763,"e":93750,"f":"set_counter","g":5,"id":1394544167,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["acc",0.06],["max_hp_rate",0.08],["att_rate",0.07],["res",0.06],["acc",0.08],["max_hp_rate",0.04],["max_hp_rate",0.08],["acc",0.05],["res",0.07],["acc",0.04,"u"],["max_hp_rate",0.04,"u"],["att_rate",0.01,"u"],["res",0.03,"u"]],"s":"f88","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecb6w_u","ct":1694950851,"e":84375,"f":"set_vampire","g":4,"id":1394560081,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["cri_dmg",0.07],["att_rate",0.08],["cri",0.05],["cri",0.05],["cri_dmg",0.06],["cri_dmg",0.06],["res",0.05],["res",0.08],["cri_dmg",0.03,"u"],["att_rate",0.01,"u"],["cri",0.02,"u"],["res",0.03,"u"]],"s":"75cf","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecb6w_u","ct":1694950876,"e":84467,"f":"set_cri_dmg","g":4,"id":1394564468,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["speed",3],["cri_dmg",0.05],["cri",0.04],["cri",0.04],["cri",0.03],["cri",0.04],["att_rate",0],["speed",2],["speed",1,"u"],["cri_dmg",0.01,"u"],["cri",0.04,"u"],["att_rate",0.01,"u"],["att_rate",0.07,"c","change2_att_rate_1_2"]],"s":"97fa","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecb6h_u","ct":1694951172,"e":98815,"f":"set_res","g":5,"id":1394616557,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["res",0.05],["max_hp_rate",0.04],["cri_dmg",0.07],["speed",3],["res",0.08],["res",0.06],["res",0.05],["cri_dmg",0.07],["res",0.05],["res",0.07,"u"],["max_hp_rate",0.01,"u"],["cri_dmg",0.02,"u"]],"p":28398305,"s":"7d62","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6h_u","ct":1694951273,"e":84419,"f":"set_res","g":4,"id":1394634189,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["speed",3],["cri_dmg",0.07],["res",0.05],["res",0.07],["res",0.05],["res",0.07],["max_hp_rate",0],["res",0.04],["cri_dmg",0.01,"u"],["res",0.07,"u"],["max_hp_rate",0.01,"u"],["max_hp_rate",0.05,"c","change1_max_hp_rate_1_2"]],"p":566472035,"s":"dec5","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6h_u","ct":1694951558,"e":86259,"f":"set_cri_dmg","g":4,"id":1394686000,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["cri",0.04],["att_rate",0.06],["speed",4],["cri",0.05],["cri",0.05],["speed",3],["cri_dmg",0],["cri",0.05],["cri",0.04,"u"],["att_rate",0.01,"u"],["speed",1,"u"],["cri_dmg",0.01,"u"],["cri_dmg",0.06,"c","change2_cri_dmg_1_1"]],"s":"8a1f","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6a_u","ct":1694956922,"e":95318,"f":"set_res","g":5,"id":1395712527,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["speed",2],["max_hp",194],["def_rate",0.08],["res",0],["speed",4],["def_rate",0.04],["def_rate",0.04],["def_rate",0.08],["def_rate",0.07],["res",0.07,"c"],["speed",1,"u"],["max_hp",56,"u"],["def_rate",0.07,"u"],["res",0.01,"u"]],"s":"f321","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6a_u","ct":1694959631,"e":98528,"f":"set_vampire","g":5,"id":1396264718,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,3],["def_rate",0.07],["res",0.06],["max_hp_rate",0.06],["acc",0.05],["def_rate",0.04],["res",0.04],["max_hp_rate",0.04],["max_hp_rate",0.08],["res",0.05],["def_rate",0.03,"u"],["res",0.04,"u"],["max_hp_rate",0.04,"u"],["acc",0.01,"u"]],"s":"bab7","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6h_u","ct":1695010279,"e":93772,"f":"set_cri_dmg","g":5,"id":1402663039,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["cri_dmg",0.05],["att_rate",0],["speed",3],["cri",0.05],["speed",2],["cri",0.04],["cri",0.05],["speed",3],["speed",4],["att_rate",0.07,"c"],["cri_dmg",0.01,"u"],["att_rate",0.01,"u"],["speed",3,"u"],["cri",0.03,"u"]],"p":158971995,"s":"e913","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6h_u","ct":1695010338,"e":93750,"f":"set_res","g":5,"id":1402672680,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["acc",0.06],["max_hp_rate",0],["def_rate",0.07],["res",0.08],["res",0.07],["max_hp_rate",0],["acc",0.07],["acc",0.04],["acc",0.04],["max_hp_rate",0.06,"c"],["acc",0.05,"u"],["max_hp_rate",0.03,"u"],["def_rate",0.01,"u"],["res",0.03,"u"]],"p":6885517,"s":"f4d","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6h_u","ct":1695010338,"e":84467,"f":"set_counter","g":4,"id":1402672686,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["def_rate",0],["max_hp_rate",0.07],["cri_dmg",0.05],["max_hp_rate",0.05],["cri_dmg",0.06],["max_hp_rate",0.05],["cri",0.05],["max_hp_rate",0.04],["def_rate",0.01,"u"],["max_hp_rate",0.05,"u"],["cri_dmg",0.02,"u"],["cri",0.01,"u"],["def_rate",0.06,"c","change2_def_rate_1_1"]],"p":568689715,"s":"a272","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6h","ct":1695010338,"e":9797,"f":"set_vampire","g":5,"id":1402672720,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["cri",0.04],["acc",0.05],["speed",3],["att_rate",0.06],["speed",2],["cri",0.05]],"s":"4ff","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6b_u","ct":1695011147,"e":93799,"f":"set_res","g":5,"id":1402810067,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["max_hp_rate",0.07],["res",0],["cri",0.04],["max_hp",183],["max_hp_rate",0.08],["max_hp_rate",0.04],["max_hp",162],["max_hp_rate",0.04],["cri",0.05],["max_hp_rate",0.05,"u"],["res",0.01,"u"],["cri",0.02,"u"],["max_hp",112,"u"],["res",0.03,"c","change1_res_1_1"]],"p":31856726,"s":"8cb0","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecb6h_u","ct":1695011648,"e":97399,"f":"set_cri_dmg","g":5,"id":1402898503,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["def_rate",0.06],["cri_dmg",0],["speed",4],["max_hp_rate",0.06],["def_rate",0.06],["def_rate",0.05],["max_hp_rate",0.07],["cri_dmg",0],["def_rate",0.04],["def_rate",0.05,"u"],["cri_dmg",0.02,"u"],["max_hp_rate",0.03,"u"],["cri_dmg",0.06,"c","change1_cri_dmg_2_2"]],"p":591089796,"s":"2058","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eah21n","ct":1695109838,"e":93968,"f":"set_cri_dmg","g":5,"id":1415487105,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"ah21_neck_m1","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["att_rate",0.07],["cri",0.05],["def_rate",0.07],["speed",5],["speed",4],["att_rate",0.05],["cri",0.03],["att_rate",0.09],["speed",3]],"p":738614105,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecd6a_u","ct":1695118195,"e":93750,"f":"set_torrent","g":5,"id":1416222058,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri",0],["speed",4],["cri_dmg",0.05],["res",0.06],["cri_dmg",0.04],["cri_dmg",0.07],["cri",0],["res",0.08],["cri_dmg",0.07],["cri",0.06,"c"],["cri",0.02,"u"],["cri_dmg",0.04,"u"],["res",0.03,"u"]],"p":890790459,"s":"aab2","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eah21a","ct":1695218947,"e":94024,"f":"set_cri_dmg","g":5,"id":1424165891,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"ah21_armo_m1","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["def_rate",0.07],["cri",0.05],["cri_dmg",0.06],["speed",5],["cri",0.06],["cri",0.06],["speed",3],["def_rate",0.06],["def_rate",0.09]],"p":434015426,"s":"0","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"exc109001","ct":1695482031,"g":5,"id":1444525856,"l":true,"mg":1111,"op":[["res",0.11],["ek_c109001",1]],"s":"f75a"},{"code":"eih4a","ct":1695484860,"e":93750,"f":"set_att","g":5,"id":1444890132,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"imh_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["cri_dmg",0.07],["speed",4],["cri",0.03],["max_hp_rate",0.05],["cri",0.06],["cri_dmg",0.08],["cri",0.04],["cri",0.05],["cri",0.05]],"s":"9e2e","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eum13n","ct":1695702216,"e":92232,"f":"set_speed","g":5,"id":1462923960,"l":true,"level":75,"mainStatBaseValue":0.12,"mainStatId":"um13_neck_m","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["max_hp_rate",0.06],["cri",0.05],["speed",4],["acc",0.06],["cri",0.05],["speed",3],["cri",0.05],["cri",0.05],["acc",0.04]],"p":48982864,"s":"5de","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6a","ct":1695869369,"e":73864,"f":"set_speed","g":4,"id":1476441427,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["cri",0.05],["def_rate",0.05],["max_hp_rate",0.07],["cri",0.03],["max_hp_rate",0.07],["max_hp_rate",0.08],["acc",0.05],["cri",0.03]],"p":403357976,"s":"88df","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6h_u","ct":1695874459,"e":93815,"f":"set_counter","g":5,"id":1477587046,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["max_hp_rate",0.07],["att_rate",0.07],["def_rate",0.07],["cri",0.04],["def_rate",0.05],["cri",0.03],["cri",0.03],["att_rate",0.06],["att_rate",0.08],["max_hp_rate",0.01,"u"],["att_rate",0.04,"u"],["def_rate",0.03,"u"],["cri",0.03,"u"]],"s":"972d","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6a_u","ct":1695874459,"e":93750,"f":"set_counter","g":5,"id":1477587057,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp_rate",0.07],["def_rate",0.07],["speed",4.0],["acc",0.07],["speed",3],["acc",0.07],["def_rate",0.06],["acc",0.04],["speed",4],["max_hp_rate",0.01,"u"],["def_rate",0.03,"u"],["speed",2,"u"],["acc",0.04,"u"]],"s":"97e7","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6b_u","ct":1695874459,"e":93750,"f":"set_counter","g":5,"id":1477587080,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["max_hp_rate",0.07],["att_rate",0.07],["def_rate",0.07],["acc",0.07],["max_hp_rate",0.07],["def_rate",0.05],["att_rate",0.07],["att_rate",0.04],["acc",0.06],["max_hp_rate",0.03,"u"],["att_rate",0.04,"u"],["def_rate",0.03,"u"],["acc",0.03,"u"]],"s":"c502","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecb6n","ct":1695874459,"e":82128,"f":"set_counter","g":5,"id":1477587102,"l":true,"level":85,"mainStatBaseValue":0.13,"mainStatId":"cra6_neck_m","mainStatType":"cri_dmg","mainStatValue":0.65,"mg":1111,"op":[["cri_dmg",0.13],["max_hp_rate",0.07],["att_rate",0.07],["cri",0.04],["speed",4.0],["speed",2],["att_rate",0.07],["cri",0.03],["max_hp_rate",0.08],["max_hp_rate",0.05]],"s":"6f0c","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecb6r_u","ct":1695874460,"e":95090,"f":"set_counter","g":5,"id":1477587124,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["att_rate",0.07],["def_rate",0.07],["cri",0.04],["cri_dmg",0.06],["cri_dmg",0.04],["cri",0.04],["cri_dmg",0.05],["att_rate",0.05],["cri_dmg",0.04],["att_rate",0.03,"u"],["def_rate",0.01,"u"],["cri",0.02,"u"],["cri_dmg",0.04,"u"]],"p":96079743,"s":"e14","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6n","ct":1695877024,"e":82031,"f":"set_speed","g":5,"id":1478142240,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["def_rate",0.07],["max_hp",180],["acc",0.07],["speed",0],["acc",0.07],["acc",0.04],["speed",0],["def_rate",0.06],["speed",0],["speed",4,"c","change2_speed_3_1"]],"p":590699704,"s":"af7b","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6n","ct":1695911806,"e":86688,"f":"set_speed","g":4,"id":1485375946,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["cri",0.05],["att_rate",0.06],["speed",4],["att_rate",0.05],["speed",3],["cri",0.05],["cri_dmg",0.06],["cri_dmg",0.04]],"p":659243748,"s":"404f","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6a","ct":1695914040,"e":87438,"f":"set_acc","g":4,"id":1485898799,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["speed",4],["cri",0.04],["res",0.06],["speed",4],["speed",3],["speed",2],["def_rate",0.04],["cri",0.05]],"s":"74df","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a","ct":1695947410,"e":8161,"f":"set_cri","g":5,"id":1490172520,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["cri_dmg",0.07],["acc",0.07],["def_rate",0.06],["max_hp_rate",0.04],["cri_dmg",0.05],["acc",0.08]],"s":"a22c","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a_u","ct":1695948957,"e":98074,"f":"set_speed","g":5,"id":1490428702,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,1],["cri_dmg",0.04],["max_hp_rate",0.08],["res",0.05],["cri",0.05],["res",0.06],["cri",0.05],["cri",0.05],["cri_dmg",0.07],["max_hp_rate",0.07],["cri_dmg",0.02,"u"],["max_hp_rate",0.03,"u"],["res",0.03,"u"],["cri",0.03,"u"]],"p":669363338,"s":"4727","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ess11r","ct":1695980630,"e":89880,"f":"set_speed","g":5,"id":1496409944,"l":true,"level":78,"mainStatBaseValue":0.12,"mainStatId":"ss11_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["def_rate",0.07],["speed",4],["res",0.07],["acc",0.07],["speed",3],["def_rate",0.07],["res",0.08],["res",0.06],["res",0.04]],"p":218403497,"s":"72a6","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6h_u","ct":1695981528,"e":93750,"f":"set_cri","g":5,"id":1496567808,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["def",29],["speed",4],["acc",0.05],["att",40],["speed",4],["speed",2],["def",29],["speed",4],["def",30],["def",27,"u"],["speed",3,"u"],["acc",0.01,"u"],["att",11,"u"]],"s":"e768","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6h","ct":1695981528,"e":74082,"f":"set_speed","g":4,"id":1496567838,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["att_rate",0.05],["def_rate",0.05],["speed",4],["speed",2],["speed",4],["att_rate",0.06],["def",27],["def_rate",0.05]],"p":659243748,"s":"33e7","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6w_u","ct":1695981604,"e":93759,"f":"set_speed","g":5,"id":1496581052,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["att_rate",0.07],["res",0.08],["cri_dmg",0.05],["max_hp_rate",0.07],["max_hp_rate",0.04],["cri_dmg",0.06],["max_hp_rate",0.05],["cri_dmg",0.07],["max_hp_rate",0.06],["att_rate",0.01,"u"],["res",0.01,"u"],["cri_dmg",0.03,"u"],["max_hp_rate",0.05,"u"]],"p":21884461,"s":"15e8","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6w","ct":1695981634,"e":74592,"f":"set_speed","g":4,"id":1496586296,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["max_hp",187],["speed",4],["cri_dmg",0.05],["cri_dmg",0.06],["speed",4],["cri_dmg",0.04],["res",0.08],["res",0.07]],"s":"e914","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6a_u","ct":1695981662,"e":84632,"f":"set_speed","g":4,"id":1496590728,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri",0.04],["cri_dmg",0.06],["speed",3],["cri_dmg",0.07],["cri_dmg",0.07],["cri",0.03],["acc",0.07],["cri_dmg",0.05],["cri",0.02,"u"],["cri_dmg",0.04,"u"],["acc",0.01,"u"]],"p":795195383,"s":"6b1e","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a","ct":1695981662,"e":8569,"f":"set_acc","g":5,"id":1496590816,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["max_hp_rate",0.04],["def_rate",0.04],["res",0.08],["acc",0.06],["max_hp_rate",0.08],["def_rate",0.06]],"s":"54e5","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6n","ct":1695981790,"e":90384,"f":"set_speed","g":5,"id":1496612742,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_neck_m","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["speed",2],["cri",0.03],["cri_dmg",0.05],["def",29],["cri_dmg",0.06],["cri_dmg",0.06],["def",28],["speed",4],["def",33]],"s":"4f67","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6r_u","ct":1695984156,"e":94654,"f":"set_speed","g":5,"id":1497008762,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"res","mainStatValue":0.65,"mg":1111,"op":[["res",0.13,null,null,0],["def_rate",0.07],["cri",0.04],["max_hp_rate",0.06],["speed",0],["cri",0.03],["cri",0.04],["max_hp_rate",0.04],["max_hp_rate",0.08],["speed",0],["speed",2,"c"],["def_rate",0.01,"u"],["cri",0.03,"u"],["max_hp_rate",0.04,"u"],["speed",1,"u"]],"p":389494760,"s":"2d10","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6n","ct":1695984169,"e":17752,"f":"set_speed","g":5,"id":1497010955,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_neck_m","mainStatType":"def_rate","mainStatValue":0.6,"mg":1111,"op":[["def_rate",0.12],["max_hp_rate",0.08],["def",29],["speed",2],["cri_dmg",0.06],["speed",4],["max_hp_rate",0.04],["def",34]],"p":545449824,"s":"4c76","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6r_u","ct":1696000182,"e":93815,"f":"set_speed","g":5,"id":1500062217,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,1],["speed",4],["att",0],["cri",0.03],["cri_dmg",0.07],["cri",0.05],["cri_dmg",0.07],["cri",0.03],["cri_dmg",0.05],["speed",4],["speed",1,"u"],["att",11,"u"],["cri",0.03,"u"],["cri_dmg",0.03,"u"],["att",46,"c","change2_att_1_2"]],"p":494187001,"s":"1124","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6h_u","ct":1696352505,"e":86259,"f":"set_speed","g":4,"id":1541258505,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["speed",2],["att_rate",0.07],["cri",0.04],["speed",1],["speed",3],["speed",2],["def_rate",0.08],["speed",3],["speed",4,"u"],["att_rate",0.01,"u"],["cri",0.01,"u"],["def_rate",0.01,"u"]],"p":326831592,"s":"4fff","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6a","ct":1696352545,"e":74652,"f":"set_speed","g":4,"id":1541262139,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["acc",0.06],["max_hp_rate",0.08],["speed",4],["max_hp_rate",0.06],["max_hp_rate",0.08],["speed",4],["cri_dmg",0.04],["cri_dmg",0.06]],"s":"921f","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eiu51w","ct":1696429922,"e":3498,"f":"set_rage","g":5,"id":1550003470,"level":88,"mainStatBaseValue":103,"mainStatId":"iu51_weap_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["att_rate",0.06],["max_hp_rate",0.06],["res",0.06],["cri_dmg",0.05],["res",0.07]],"s":"faa4","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eiu31w","ct":1696439752,"e":2352,"f":"set_revenge","g":5,"id":1551254123,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"iu31_weap_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["att_rate",0.06],["max_hp_rate",0.06],["res",0.06],["speed",4],["max_hp_rate",0.08]],"s":"dd48","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eih7a","ct":1696440299,"e":96600,"f":"set_immune","g":5,"id":1551301611,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"imh_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.09],["def_rate",0.09],["speed",5],["cri",0.06],["max_hp_rate",0.06],["speed",4],["def_rate",0.06],["def_rate",0.09],["cri",0.05]],"p":110853212,"s":"69dc","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6w_u","ct":1696693249,"e":103397,"f":"set_speed","g":5,"id":1570812246,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["acc",0.04],["speed",2],["cri_dmg",0.07],["max_hp",199],["speed",2],["speed",2],["speed",3],["speed",3],["cri_dmg",0.04],["acc",0.01,"u"],["speed",4,"u"],["cri_dmg",0.02,"u"],["max_hp",56,"u"]],"p":96079748,"s":"92c7","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6w_u","ct":1696693259,"e":93815,"f":"set_speed","g":5,"id":1570813561,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["acc",0.04],["res",0.07],["cri_dmg",0.07],["max_hp_rate",0.08],["max_hp_rate",0.05],["res",0.08],["res",0.07],["cri_dmg",0.07],["cri_dmg",0.07],["acc",0.01,"u"],["res",0.04,"u"],["cri_dmg",0.03,"u"],["max_hp_rate",0.03,"u"]],"p":90857803,"s":"8950","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eah21w","ct":1696693632,"e":93823,"f":"set_cri_dmg","g":5,"id":1570859068,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"ah21_weap_m1","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.07],["att_rate",0.07],["cri_dmg",0.06],["speed",5],["speed",3],["max_hp_rate",0.06],["cri_dmg",0.08],["att_rate",0.09],["att_rate",0.06]],"p":591089796,"s":"0","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"exc101701","ct":1696770186,"g":5,"id":1574475925,"mg":1111,"op":[["max_hp_rate",0.13],["ek_c101701",2]],"s":"1a9e"},{"code":"exc101701","ct":1696770190,"g":5,"id":1574476142,"l":true,"mg":1111,"op":[["max_hp_rate",0.12],["ek_c101701",3]],"p":306770592,"s":"1f15"},{"code":"ecs13w","ct":1697089651,"e":82137,"f":"set_speed","g":5,"id":1587144632,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"cs13_weap_m1","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.08],["att_rate",0.08],["speed",4],["cri_dmg",0.07],["speed",3],["att_rate",0.09],["speed",4],["max_hp_rate",0.09],["speed",3]],"s":"2eaf","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecq6h","ct":1697249128,"e":3094,"f":"set_coop","g":5,"id":1595378390,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["max_hp_rate",0.07],["att_rate",0.05],["res",0.08],["speed",4],["max_hp_rate",0.05]],"s":"905a","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eah19h","ct":1697809217,"e":118324,"f":"set_speed","g":5,"id":1624804788,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"ah19_helm_m1","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["max_hp_rate",0.07],["def_rate",0.07],["speed",5],["res",0.07],["speed",4],["speed",4],["speed",4],["def_rate",0.07],["speed",4]],"p":897188455,"s":"0","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecl23r","ct":1698325785,"e":93856,"f":"set_speed","g":5,"id":1653826956,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"wc2023_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,1],["max_hp_rate",0.09],["cri",0.06],["cri_dmg",0.08],["speed",5],["speed",4],["speed",4],["max_hp_rate",0.05],["max_hp_rate",0.08],["cri",0.03]],"p":618609916,"s":"f0e3","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eiu12a","ct":1698594482,"f":"set_scar","g":5,"id":1674412887,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"iu12_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.07],["def_rate",0.07],["cri",0.04],["cri_dmg",0.06]],"s":"6e62","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eah14b","ct":1698757844,"e":95404,"f":"set_res","g":5,"id":1680890938,"l":true,"level":88,"mainStatBaseValue":9,"mainStatId":"ah14_boot_m1","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9],["def_rate",0.06],["max_hp_rate",0.06],["acc",0.06],["res",0.06],["acc",0.05],["acc",0.06],["def_rate",0.04],["res",0.05],["def_rate",0.05]],"p":226377978,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eiu11h","ct":1698812238,"e":95060,"f":"set_speed","g":5,"id":1682787417,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"iu11_helm_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["att_rate",0.09],["max_hp_rate",0.09],["speed",5],["cri",0.06],["max_hp_rate",0.05],["max_hp_rate",0.07],["max_hp_rate",0.06],["speed",4],["speed",4]],"p":739641017,"s":"d736","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eda15h","ct":1698812238,"e":82031,"f":"set_speed","g":5,"id":1682787418,"l":true,"level":80,"mainStatBaseValue":513,"mainStatId":"duna6_helm_m1","mainStatType":"max_hp","mainStatValue":2565,"mg":1111,"op":[["max_hp",513],["cri",0.03],["speed",0],["att_rate",0.08],["cri_dmg",0.06],["cri_dmg",0.07],["cri",0.05],["cri_dmg",0.06],["att_rate",0.08],["att_rate",0.04],["speed",2,"c","change2_speed_1_1"]],"p":306859366,"s":"6f70","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eih9n","ct":1698812369,"e":97409,"f":"set_penetrate","g":5,"id":1682793427,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"imh_neck_m11","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["max_hp_rate",0.09],["cri",0.06],["speed",5],["att_rate",0.09],["max_hp_rate",0.09],["speed",4],["speed",3],["speed",4],["cri",0.06]],"p":306859366,"s":"4db8","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eah14r","ct":1698934036,"e":95060,"f":"set_res","g":5,"id":1687751055,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ah14_ring_m1","mainStatType":"res","mainStatValue":0.65,"mg":1111,"op":[["res",0.13],["max_hp_rate",0.06],["att_rate",0.06],["def_rate",0.06],["speed",4],["speed",4],["att_rate",0.05],["att_rate",0.08],["att_rate",0.05],["speed",2]],"p":279573776,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecb6n_u","ct":1699197498,"e":84463,"f":"set_res","g":4,"id":1702201074,"l":true,"level":90,"mainStatBaseValue":0.12,"mainStatId":"cra7_neck_m","mainStatType":"cri","mainStatValue":0.6,"mg":1111,"op":[["cri",0.12,null,null,0],["speed",3],["res",0.07],["def_rate",0.07],["speed",4],["speed",4],["def_rate",0.04],["acc",0.07],["speed",2],["speed",3,"u"],["res",0.01,"u"],["def_rate",0.03,"u"],["acc",0.01,"u"]],"s":"3372","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecb6n_u","ct":1699197520,"e":93750,"f":"set_cri_dmg","g":5,"id":1702203221,"l":true,"level":90,"mainStatBaseValue":0.14,"mainStatId":"cra7_neck_m","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14,null,null,0],["max_hp_rate",0.05],["cri",0],["def_rate",0.07],["max_hp",186],["max_hp_rate",0.07],["max_hp",198],["def_rate",0.07],["max_hp_rate",0.04],["def_rate",0.08],["max_hp_rate",0.04,"u"],["cri",0.01,"u"],["def_rate",0.04,"u"],["max_hp",112,"u"],["cri",0.04,"c","change2_cri_1_1"]],"p":434015426,"s":"859a","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecb6n_u","ct":1699236439,"e":94231,"f":"set_res","g":5,"id":1703676098,"l":true,"level":90,"mainStatBaseValue":0.12,"mainStatId":"cra7_neck_m","mainStatType":"cri","mainStatValue":0.6,"mg":1111,"op":[["cri",0.12,null,null,0],["cri_dmg",0.07],["speed",3],["max_hp_rate",0.04],["att_rate",0.05],["speed",4],["cri_dmg",0.05],["cri_dmg",0.05],["cri_dmg",0.07],["speed",4],["cri_dmg",0.04,"u"],["speed",2,"u"],["max_hp_rate",0.01,"u"],["att_rate",0.01,"u"]],"p":461989175,"s":"aba0","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecb6w_u","ct":1699322044,"e":93770,"f":"set_vampire","g":5,"id":1707619478,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["att_rate",0.08],["max_hp_rate",0.05],["cri_dmg",0],["cri",0.05],["att_rate",0.07],["max_hp_rate",0.05],["cri",0.05],["att_rate",0.05],["att_rate",0.07],["cri_dmg",0.07,"c"],["att_rate",0.05,"u"],["max_hp_rate",0.03,"u"],["cri_dmg",0.01,"u"],["cri",0.02,"u"]],"p":798777729,"s":"1b07","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecb6h_u","ct":1699322469,"e":93770,"f":"set_cri_dmg","g":5,"id":1707635213,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["cri",0.05],["res",0.06],["speed",4],["cri_dmg",0],["speed",3],["cri",0.05],["speed",4],["speed",2],["speed",4],["cri",0.02,"u"],["res",0.01,"u"],["speed",4,"u"],["cri_dmg",0.01,"u"],["cri_dmg",0.07,"c","change2_cri_dmg_1_2"]],"s":"bd8f","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6w_u","ct":1699322993,"e":86067,"f":"set_vampire","g":4,"id":1707653977,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["max_hp_rate",0.05],["speed",3],["cri_dmg",0.07],["cri_dmg",0.05],["speed",4],["speed",4],["cri",0.04],["cri_dmg",0.06],["max_hp_rate",0.01,"u"],["speed",2,"u"],["cri_dmg",0.03,"u"],["cri",0.01,"u"]],"p":313179896,"s":"b375","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6b","ct":1699524396,"e":75692,"f":"set_cri","g":4,"id":1715726620,"l":true,"level":85,"mainStatBaseValue":8,"mainStatId":"cra6_boot_m","mainStatType":"speed","mainStatValue":40,"mg":1111,"op":[["speed",8],["cri_dmg",0.05],["def_rate",0.06],["cri",0.03],["def_rate",0.08],["cri",0.03],["cri_dmg",0.07],["att",35],["def_rate",0.08]],"s":"dc71","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eiu31w","ct":1699706143,"e":2292,"f":"set_revenge","g":5,"id":1728014892,"level":88,"mainStatBaseValue":103,"mainStatId":"iu31_weap_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["att_rate",0.06],["max_hp_rate",0.06],["res",0.06],["speed",4],["max_hp_rate",0.05]],"s":"eaed","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eiu51w","ct":1700455409,"e":4664,"f":"set_rage","g":5,"id":1770631627,"level":88,"mainStatBaseValue":103,"mainStatId":"iu51_weap_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["att_rate",0.06],["max_hp_rate",0.06],["res",0.06],["cri_dmg",0.05],["res",0.06]],"s":"a0a5","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecq6n_u","ct":1700532021,"e":93772,"f":"set_rage","g":5,"id":1773767234,"l":true,"level":90,"mainStatBaseValue":0.14,"mainStatId":"cra7_neck_m","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14,null,null,0],["def",30],["att_rate",0.04],["speed",3],["cri",0.03],["speed",4],["speed",2],["cri",0.04],["att_rate",0.06],["att_rate",0.05],["def",9,"u"],["att_rate",0.04,"u"],["speed",2,"u"],["cri",0.02,"u"]],"p":690904230,"s":"6105","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eal85b_u","ct":1700635875,"e":103685,"f":"set_vampire","g":5,"id":1777828559,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["cri_dmg",0],["speed",4],["def_rate",0.05],["res",0.04],["speed",3],["speed",2],["speed",3],["res",0.05],["def_rate",0.04],["cri_dmg",0.01,"u"],["speed",3,"u"],["def_rate",0.03,"u"],["res",0.03,"u"],["cri_dmg",0.05,"c","change2_cri_dmg_1_1"]],"s":"98b6","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eal85n_u","ct":1700641764,"e":93829,"f":"set_vampire","g":5,"id":1778028869,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_neck_m","mainStatType":"def_rate","mainStatValue":0.65,"mg":1111,"op":[["def_rate",0.13,null,null,0],["acc",0.06],["speed",3],["cri",0.05],["max_hp_rate",0],["acc",0.05],["acc",0.08],["speed",2],["acc",0.08],["speed",2],["max_hp_rate",0.07,"c"],["acc",0.05,"u"],["speed",2,"u"],["cri",0.01,"u"],["max_hp_rate",0.01,"u"]],"s":"e7d","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eah14a","ct":1700803284,"e":93750,"f":"set_res","g":5,"id":1783540481,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"ah14_armo_m1","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.06],["def_rate",0.06],["res",0.06],["cri",0.05],["res",0.06],["max_hp_rate",0.07],["def_rate",0.04],["cri",0.05],["cri",0.05]],"s":"0","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eiu21r","ct":1700988861,"e":93856,"f":"set_speed","g":5,"id":1795607593,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"iu21_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["def_rate",0.07],["speed",3],["cri",0.04],["res",0.07],["res",0.06],["cri",0.06],["def_rate",0.06],["speed",3],["res",0.07]],"p":559859822,"s":"67f2","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eih4a","ct":1700994850,"f":"set_att","g":5,"id":1796151091,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"imh_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["cri_dmg",0.05],["res",0.07],["max_hp_rate",0.09],["acc",0.09]],"s":"ee25","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eih9n","ct":1700994909,"e":93750,"f":"set_penetrate","g":5,"id":1796156402,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"imh_neck_m11","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["max_hp_rate",0.09],["cri",0.06],["speed",5],["att_rate",0.09],["speed",3],["max_hp_rate",0.08],["cri",0.06],["att_rate",0.08],["att_rate",0.06]],"s":"e6cb","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eal85b_u","ct":1701103523,"e":93750,"f":"set_counter","g":5,"id":1804369966,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"def_rate","mainStatValue":0.65,"mg":1111,"op":[["def_rate",0.13,null,null,0],["max_hp_rate",0],["res",0.08],["att",42],["att_rate",0.08],["att",45],["res",0.05],["res",0.06],["att",43],["att_rate",0.04],["max_hp_rate",0.08,"c"],["max_hp_rate",0.01,"u"],["res",0.04,"u"],["att",33,"u"],["att_rate",0.03,"u"]],"s":"d825","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"exc202201","ct":1701232533,"g":5,"id":1809058744,"l":true,"mg":1111,"op":[["res",0.15],["ek_c202201",2]],"s":"bbfc"},{"code":"exc202201","ct":1701232540,"g":5,"id":1809059097,"l":true,"mg":1111,"op":[["res",0.16],["ek_c202201",3]],"p":389494760,"s":"68f7"},{"code":"eah17h","ct":1701235250,"e":93750,"f":"set_max_hp","g":5,"id":1809176155,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"ah17_helm_m1","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["max_hp_rate",0.07],["def_rate",0.07],["speed",5],["res",0.07],["max_hp_rate",0.06],["res",0.05],["def_rate",0.06],["max_hp_rate",0.06],["speed",3]],"p":326928979,"s":"0","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eum13a","ct":1701274041,"e":82032,"f":"set_speed","g":5,"id":1810869248,"l":true,"level":78,"mainStatBaseValue":57,"mainStatId":"um13_armo_m","mainStatType":"def","mainStatValue":285,"mg":1111,"op":[["def",57],["max_hp_rate",0.06],["speed",4],["cri",0.05],["acc",0.06],["cri",0.04],["max_hp_rate",0.08],["cri",0.05],["acc",0.04],["cri",0.05]],"p":150271128,"s":"68d9","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eiu12w","ct":1701490284,"e":93750,"f":"set_penetrate","g":5,"id":1818219857,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"iu12_weap_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["att_rate",0.08],["max_hp_rate",0.08],["speed",4],["cri",0.05],["cri",0.03],["att_rate",0.09],["max_hp_rate",0.06],["att_rate",0.09],["cri",0.06]],"p":795195383,"s":"fcc0","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eiu31n","ct":1701506336,"e":93750,"f":"set_vampire","g":5,"id":1818872512,"l":true,"level":88,"mainStatBaseValue":0.12,"mainStatId":"iu31_neck_m","mainStatType":"cri","mainStatValue":0.6,"mg":1111,"op":[["cri",0.12],["max_hp_rate",0.07],["def_rate",0.07],["speed",3],["cri_dmg",0.06],["def_rate",0.07],["def_rate",0.07],["max_hp_rate",0.06],["speed",4],["cri_dmg",0.06]],"s":"a31","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eal85b_u","ct":1701508150,"e":93750,"f":"set_speed","g":5,"id":1818940282,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["acc",0.07],["att",0],["att_rate",0.05],["cri",0.05],["att_rate",0.06],["att_rate",0.07],["att_rate",0.05],["att",0],["acc",0.06],["acc",0.03,"u"],["att",22,"u"],["att_rate",0.05,"u"],["cri",0.01,"u"],["att",64,"c","change2_att_2_1"]],"s":"9ee3","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eal85b_u","ct":1701508620,"e":93750,"f":"set_speed","g":5,"id":1818957037,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["res",0.08],["acc",0],["max_hp_rate",0.07],["max_hp",171],["res",0.04],["max_hp",160],["max_hp_rate",0.04],["max_hp",161],["max_hp",191],["acc",0.07,"c"],["res",0.03,"u"],["acc",0.01,"u"],["max_hp_rate",0.03,"u"],["max_hp",224,"u"]],"p":389494760,"s":"794b","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eal85b_u","ct":1701508668,"e":93750,"f":"set_speed","g":5,"id":1818958688,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["max_hp_rate",0.08],["cri",0.04],["cri_dmg",0.05],["def_rate",0.04],["def_rate",0.08],["max_hp_rate",0.07],["def_rate",0.05],["cri_dmg",0.07],["cri",0.03],["max_hp_rate",0.03,"u"],["cri",0.02,"u"],["cri_dmg",0.02,"u"],["def_rate",0.04,"u"]],"p":241191727,"s":"b2fc","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eot3r_u2","ct":1701839954,"e":93750,"f":"set_speed","g":5,"id":1830795504,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ot3u_ring_m2","mainStatType":"res","mainStatValue":0.65,"mg":1111,"op":[["res",0.13],["speed",2],["max_hp",180],["def",38],["cri",0.04],["cri",0.05],["def",38],["cri",0.06],["speed",3],["speed",3]],"p":6885517,"s":"165c","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ewb1r","ct":1701935651,"e":93750,"f":"set_speed","g":5,"id":1834878032,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"wb1_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["speed",5],["cri",0.06],["cri_dmg",0.08],["acc",0.09],["speed",4],["speed",4],["speed",4],["cri",0.05],["cri_dmg",0.07]],"s":"a2b8","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecs12w","ct":1701953800,"e":82031,"f":"set_speed","g":5,"id":1836149988,"l":true,"level":78,"mainStatBaseValue":95,"mainStatId":"cs12_weap_m1","mainStatType":"att","mainStatValue":475,"mg":1111,"op":[["att",95],["att_rate",0.07],["speed",4],["cri",0.04],["max_hp_rate",0.07],["max_hp_rate",0.04],["att_rate",0.06],["att_rate",0.06],["cri",0.05],["cri",0.05]],"p":549294853,"s":"35fc","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"exc112301","ct":1701953816,"g":5,"id":1836151170,"l":true,"mg":1111,"op":[["max_hp_rate",0.14],["ek_c112301",1]],"s":"e6a9"},{"code":"ere_sp_w","ct":1701996691,"e":93750,"f":"set_speed","g":5,"id":1838332519,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"ere_sp_w_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["att_rate",0.08],["speed",4],["cri",0.05],["cri_dmg",0],["speed",4],["att_rate",0.05],["cri",0.04],["att_rate",0.07],["att_rate",0.06],["cri_dmg",0.07,"c","change2_cri_dmg_1_2"]],"s":"c260","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ere_sp_h","ct":1701996691,"e":93750,"f":"set_speed","g":5,"id":1838332524,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"ere_sp_h_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["max_hp_rate",0.08],["att_rate",0.08],["speed",4],["cri",0.05],["speed",4],["speed",3],["cri",0.06],["cri",0.04],["att_rate",0.05]],"p":99507012,"s":"cc6c","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ere_sp_a","ct":1701996691,"e":93750,"f":"set_speed","g":5,"id":1838332525,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"ere_sp_a_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.08],["def_rate",0.08],["speed",4],["acc",0.08],["max_hp_rate",0.07],["acc",0.07],["max_hp_rate",0.09],["speed",3],["acc",0.06]],"p":4647526,"s":"89b4","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ere_sp_n","ct":1701996691,"e":93856,"f":"set_speed","g":5,"id":1838332526,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ere_sp_n_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["max_hp",0],["def_rate",0.08],["speed",4],["acc",0.08],["max_hp",0],["speed",4],["speed",3],["def_rate",0.07],["acc",0.08],["max_hp",305,"c","change2_max_hp_2_1"]],"p":226377978,"s":"1a8","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ere_sp_r","ct":1701996691,"e":93750,"f":"set_speed","g":5,"id":1838332527,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ere_sp_r_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["att_rate",0.08],["def_rate",0.08],["speed",4],["acc",0.08],["speed",4],["speed",3],["acc",0.09],["def_rate",0.07],["speed",3]],"p":225876663,"s":"3949","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ere_sp_b","ct":1701996691,"e":93750,"f":"set_speed","g":5,"id":1838332528,"l":true,"level":88,"mainStatBaseValue":9,"mainStatId":"ere_sp_b_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9],["max_hp_rate",0.08],["att_rate",0.08],["def_rate",0.08],["cri",0.05],["cri",0.03],["cri",0.04],["def_rate",0.07],["def_rate",0.09],["att_rate",0.07]],"p":518421029,"s":"d516","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eiu51r","ct":1702020029,"e":93750,"f":"set_res","g":5,"id":1839826439,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"iu51_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["cri_dmg",0],["att_rate",0.06],["def_rate",0.06],["res",0.06],["def_rate",0.08],["res",0.08],["cri_dmg",0],["res",0.06],["att_rate",0.08],["cri_dmg",0.09,"c","change2_cri_dmg_2_2"]],"s":"652a","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"exc101601","ct":1702025934,"g":5,"id":1840127454,"l":true,"mg":1111,"op":[["acc",0.12],["ek_c101601",1]],"p":525461035,"s":"52c0"},{"code":"exc208501","ct":1702026000,"g":5,"id":1840130722,"l":true,"mg":1111,"op":[["att_rate",0.08],["ek_c208501",3]],"s":"f8ea"},{"code":"exc208501","ct":1702026013,"g":5,"id":1840131324,"l":true,"mg":1111,"op":[["att_rate",0.13],["ek_c208501",3]],"s":"8899"},{"code":"exc111901","ct":1702026413,"g":5,"id":1840150222,"l":true,"mg":1111,"op":[["att_rate",0.14],["ek_c111901",1]],"p":306859366,"s":"9742"},{"code":"eah19r","ct":1702355451,"e":93750,"f":"set_speed","g":5,"id":1858123965,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ah19_ring_m1","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["max_hp_rate",0.07],["att",0],["speed",5],["acc",0.07],["max_hp_rate",0.09],["acc",0.08],["speed",4],["att",0],["att",0],["att",101,"c","change2_att_3_1"]],"p":518782830,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecd6w_u","ct":1702434780,"e":93750,"f":"set_penetrate","g":5,"id":1862090546,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["cri_dmg",0.07],["speed",4],["cri",0.05],["att_rate",0],["cri",0.04],["speed",3],["cri",0.03],["cri",0.04],["cri_dmg",0.05],["att_rate",0.07,"c"],["cri_dmg",0.02,"u"],["speed",1,"u"],["cri",0.04,"u"],["att_rate",0.01,"u"]],"p":158971995,"s":"3ff2","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecd6h_u","ct":1702434780,"e":84462,"f":"set_torrent","g":4,"id":1862090550,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["att",34],["att_rate",0.05],["cri_dmg",0.07],["att_rate",0.08],["att_rate",0.04],["att_rate",0.06],["speed",0],["cri_dmg",0.07],["att",11,"u"],["att_rate",0.05,"u"],["cri_dmg",0.02,"u"],["speed",0,"u"],["speed",4,"c","change2_speed_1_2"]],"p":890790459,"s":"4e10","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ere_co_w","ct":1702596384,"e":93750,"f":"set_counter","g":5,"id":1870371729,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"ere_co_w_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.08],["speed",4],["cri",0.05],["acc",0.08],["cri",0.06],["acc",0.09],["acc",0.08],["max_hp_rate",0.05],["speed",4]],"s":"6a15","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ere_co_h","ct":1702596384,"e":93750,"f":"set_counter","g":5,"id":1870371734,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"ere_co_h_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["max_hp_rate",0.08],["def_rate",0.08],["cri",0.05],["acc",0.08],["def_rate",0.07],["max_hp_rate",0.08],["max_hp_rate",0.06],["def_rate",0.07],["cri",0.05]],"p":180232242,"s":"b556","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ere_co_a","ct":1702596384,"e":93750,"f":"set_counter","g":5,"id":1870371735,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"ere_co_a_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.08],["def_rate",0.08],["cri",0.05],["acc",0.08],["max_hp_rate",0.08],["max_hp_rate",0.05],["def_rate",0.05],["def_rate",0.07],["acc",0.06]],"s":"123b","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ere_co_n","ct":1702596384,"e":93750,"f":"set_counter","g":5,"id":1870371737,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"ere_co_n_m","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["max_hp_rate",0.08],["speed",4],["cri",0.05],["acc",0.08],["speed",3],["acc",0.08],["speed",3],["acc",0.06],["speed",4]],"p":96079743,"s":"4446","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ere_co_r","ct":1702596384,"e":93750,"f":"set_counter","g":5,"id":1870371742,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ere_co_r_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["att_rate",0.08],["cri",0.05],["cri_dmg",0.07],["acc",0.08],["cri_dmg",0.06],["att_rate",0.05],["cri",0.03],["cri_dmg",0.08],["cri_dmg",0.08]],"p":568689715,"s":"afdf","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ere_co_b","ct":1702596384,"e":93750,"f":"set_counter","g":5,"id":1870371743,"l":true,"level":88,"mainStatBaseValue":9,"mainStatId":"ere_co_b_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9],["max_hp_rate",0.08],["def_rate",0.08],["cri",0.05],["acc",0.08],["def_rate",0.06],["acc",0.08],["cri",0.03],["max_hp_rate",0.07],["acc",0.05]],"p":568689715,"s":"ec07","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6w_u","ct":1702707180,"e":93750,"f":"set_cri","g":5,"id":1876168756,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["cri",0.03],["att_rate",0.07],["cri_dmg",0.05],["max_hp_rate",0.08],["cri",0.05],["cri_dmg",0.06],["cri",0.03],["cri",0.05],["att_rate",0.05],["cri",0.04,"u"],["att_rate",0.03,"u"],["cri_dmg",0.02,"u"],["max_hp_rate",0.01,"u"]],"p":360878989,"s":"642d","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"exc112202","ct":1702827763,"g":5,"id":1890516830,"l":true,"mg":1111,"op":[["cri",0.12],["ek_c112202",2]],"s":"a775"},{"code":"ecw6a","ct":1702876091,"e":73828,"f":"set_speed","g":4,"id":1893825637,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["res",0.08],["max_hp_rate",0.08],["speed",2],["speed",3],["speed",2],["max_hp_rate",0.05],["acc",0.07],["res",0.07]],"s":"57e3","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6n","ct":1702893818,"e":82031,"f":"set_speed","g":5,"id":1895726655,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["speed",4],["def_rate",0.08],["cri",0.05],["res",0],["res",0],["def_rate",0.07],["cri",0.05],["def_rate",0.05],["cri",0.03],["res",0.06,"c","change1_res_2_1"]],"s":"ec5c","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6w_u","ct":1702894050,"e":93750,"f":"set_speed","g":5,"id":1895749753,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["cri",0.03],["cri_dmg",0.07],["att_rate",0],["speed",4],["cri",0.05],["cri",0.03],["att_rate",0],["cri",0.05],["att_rate",0],["att_rate",0.14,"c"],["cri",0.04,"u"],["cri_dmg",0.01,"u"],["att_rate",0.04,"u"]],"p":99507012,"s":"bb8b","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6n_u","ct":1702894119,"e":84375,"f":"set_cri","g":4,"id":1895756907,"l":true,"level":90,"mainStatBaseValue":0.14,"mainStatId":"cra7_neck_m","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14,null,null,0],["def_rate",0.07],["cri",0.05],["speed",4],["cri",0.05],["speed",3],["speed",4],["att_rate",0],["def_rate",0.05],["att_rate",0.05,"c"],["def_rate",0.03,"u"],["cri",0.02,"u"],["speed",2,"u"],["att_rate",0.01,"u"]],"p":583954927,"s":"61e5","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6w_u","ct":1702894144,"e":93750,"f":"set_speed","g":5,"id":1895759346,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["res",0.06],["att_rate",0.04],["speed",4],["cri_dmg",0.06],["speed",3],["res",0.07],["att_rate",0.07],["speed",4],["att_rate",0.04],["res",0.03,"u"],["att_rate",0.04,"u"],["speed",2,"u"],["cri_dmg",0.01,"u"]],"p":306859366,"s":"57a5","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6n","ct":1702894249,"f":"set_speed","g":5,"id":1895770976,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_neck_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["max_hp_rate",0.05],["def_rate",0.07],["att_rate",0.08],["acc",0.07]],"p":522853044,"s":"c819","statMultiplier":2.5,"tierMultiplier":1,"type":"neck"},{"code":"ecw6n","ct":1702894286,"e":82031,"f":"set_speed","g":5,"id":1895774983,"level":85,"mainStatBaseValue":0.13,"mainStatId":"cra6_neck_m","mainStatType":"cri_dmg","mainStatValue":0.65,"mg":1111,"op":[["cri_dmg",0.13],["att_rate",0.07],["def_rate",0.07],["res",0.07],["def",32],["att_rate",0.06],["res",0.05],["att_rate",0.06],["def_rate",0.04],["def_rate",0.04]],"p":323638178,"s":"b780","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6a_u","ct":1702894352,"e":93750,"f":"set_speed","g":5,"id":1895781680,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["res",0.07],["acc",0.07],["max_hp_rate",0.04],["speed",0],["res",0.06],["max_hp_rate",0.08],["max_hp_rate",0.07],["res",0.05],["acc",0.08],["res",0.04,"u"],["acc",0.03,"u"],["max_hp_rate",0.04,"u"],["speed",0,"u"],["speed",4,"c","change2_speed_1_3"]],"p":241191727,"s":"de72","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6h_u","ct":1702895147,"e":93750,"f":"set_cri","g":5,"id":1895864631,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["cri",0.03],["max_hp_rate",0.06],["cri_dmg",0],["def_rate",0.07],["def_rate",0.08],["cri",0.04],["def_rate",0.06],["max_hp_rate",0.08],["def_rate",0.07],["cri",0.02,"u"],["max_hp_rate",0.03,"u"],["cri_dmg",0.01,"u"],["def_rate",0.05,"u"],["cri_dmg",0.06,"c","change2_cri_dmg_1_1"]],"p":434015426,"s":"6338","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6w","ct":1702895239,"e":73828,"f":"set_cri","g":4,"id":1895874138,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["att_rate",0.05],["cri",0.04],["speed",3],["speed",3],["cri",0.05],["speed",4],["max_hp",164],["speed",2]],"s":"b84a","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"exc112302","ct":1702948244,"g":5,"id":1899778700,"l":true,"mg":1111,"op":[["max_hp_rate",0.14],["ek_c112302",2]],"s":"6390"},{"code":"exc112303","ct":1702966727,"g":5,"id":1900700611,"l":true,"mg":1111,"op":[["max_hp_rate",0.14],["ek_c112303",3]],"s":"6cb0"},{"code":"euq7h","ct":1703040014,"e":82031,"f":"set_cri_dmg","g":5,"id":1903537842,"l":true,"level":78,"mainStatBaseValue":513,"mainStatId":"uq7_helm_m","mainStatType":"max_hp","mainStatValue":2565,"mg":1111,"op":[["max_hp",513],["att_rate",0.06],["cri",0.05],["cri_dmg",0.06],["max_hp_rate",0.06],["max_hp_rate",0.07],["max_hp_rate",0.07],["cri",0.03],["att_rate",0.06],["cri",0.05]],"s":"fb7c","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"euq7a","ct":1703041994,"e":82031,"f":"set_cri_dmg","g":5,"id":1903619236,"l":true,"level":78,"mainStatBaseValue":57,"mainStatId":"uq7_armo_m","mainStatType":"def","mainStatValue":285,"mg":1111,"op":[["def",57],["cri",0.05],["cri_dmg",0.06],["max_hp_rate",0.06],["speed",4],["cri",0.04],["speed",4],["speed",4],["max_hp_rate",0.06],["max_hp_rate",0.07]],"p":784315107,"s":"9d73","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"euq7n","ct":1703047131,"e":82031,"f":"set_cri","g":5,"id":1903827158,"level":78,"mainStatBaseValue":0.13,"mainStatId":"uq7_neck_m","mainStatType":"cri_dmg","mainStatValue":0.65,"mg":1111,"op":[["cri_dmg",0.13],["cri",0.05],["att_rate",0.06],["max_hp_rate",0.06],["acc",0.06],["max_hp_rate",0.07],["acc",0.08],["att_rate",0.05],["acc",0.07],["att_rate",0.06]],"s":"e681","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"euq7w","ct":1703047131,"e":82086,"f":"set_cri_dmg","g":5,"id":1903827162,"l":true,"level":78,"mainStatBaseValue":95,"mainStatId":"uq7_weap_m","mainStatType":"att","mainStatValue":475,"mg":1111,"op":[["att",95],["att_rate",0.06],["cri",0.05],["cri_dmg",0.06],["max_hp_rate",0.06],["cri",0.04],["max_hp_rate",0.07],["max_hp_rate",0.07],["max_hp_rate",0.07],["max_hp_rate",0.08]],"s":"a483","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"euq7b","ct":1703047132,"e":82086,"f":"set_cri_dmg","g":5,"id":1903827192,"l":true,"level":78,"mainStatBaseValue":0.12,"mainStatId":"uq7_boot_m","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["cri",0.05],["cri_dmg",0.06],["max_hp_rate",0.06],["acc",0.06],["cri",0.05],["acc",0.08],["max_hp_rate",0.07],["cri_dmg",0.06],["cri_dmg",0.04]],"p":525461035,"s":"e498","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"euq7r","ct":1703047132,"e":82031,"f":"set_cri","g":5,"id":1903827211,"l":true,"level":78,"mainStatBaseValue":0.12,"mainStatId":"uq7_ring_m","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["cri",0.05],["cri_dmg",0.06],["max_hp_rate",0.06],["speed",4],["speed",2],["max_hp_rate",0.07],["speed",3],["speed",3],["speed",2]],"p":659243748,"s":"8afb","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6h_u","ct":1703141661,"e":93750,"f":"set_speed","g":5,"id":1906756378,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["att_rate",0],["acc",0.07],["cri_dmg",0.04],["speed",4],["cri_dmg",0.07],["speed",4],["cri_dmg",0.07],["cri_dmg",0.07],["speed",4],["att_rate",0.01,"u"],["acc",0.01,"u"],["cri_dmg",0.04,"u"],["speed",2,"u"],["att_rate",0.08,"c","change2_att_rate_1_2"]],"p":494187001,"s":"757a","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6h","ct":1703141678,"e":82031,"f":"set_acc","g":5,"id":1906757106,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["cri",0.05],["acc",0.07],["res",0.07],["att_rate",0.08],["acc",0.07],["acc",0.06],["cri",0.03],["acc",0.06],["cri",0.03]],"p":117268286,"s":"bd7","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6a","ct":1703175377,"e":73828,"f":"set_speed","g":4,"id":1908105131,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["max_hp_rate",0.08],["res",0.08],["acc",0.05],["acc",0.05],["res",0.08],["acc",0.07],["cri_dmg",0.04],["cri_dmg",0.04]],"s":"50e7","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a_u","ct":1703175377,"e":93750,"f":"set_speed","g":5,"id":1908105139,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["def_rate",0],["acc",0.04],["max_hp_rate",0.05],["speed",3],["max_hp_rate",0.05],["acc",0.05],["max_hp_rate",0.08],["acc",0.06],["max_hp_rate",0.06],["def_rate",0.01,"u"],["acc",0.04,"u"],["max_hp_rate",0.05,"u"],["def_rate",0.07,"c","change2_def_rate_1_2"]],"p":894623419,"s":"ac7c","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a_u","ct":1703175406,"e":93750,"f":"set_speed","g":5,"id":1908106285,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["def_rate",0.08],["res",0.08],["speed",2],["max_hp_rate",0.06],["speed",2],["def_rate",0.08],["def_rate",0.06],["max_hp_rate",0.07],["speed",3],["def_rate",0.04,"u"],["res",0.01,"u"],["speed",2,"u"],["max_hp_rate",0.03,"u"]],"p":218403497,"s":"6abd","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eum13b","ct":1703213230,"e":82080,"f":"set_speed","g":5,"id":1908937718,"l":true,"level":78,"mainStatBaseValue":8,"mainStatId":"um13_boot_m","mainStatType":"speed","mainStatValue":40,"mg":1111,"op":[["speed",8],["att_rate",0.06],["max_hp_rate",0.06],["cri",0.05],["cri_dmg",0],["att_rate",0.06],["att_rate",0.06],["max_hp_rate",0.08],["cri",0.05],["cri",0.04],["cri_dmg",0.04,"c","change2_cri_dmg_1_1"]],"p":279573776,"s":"13cd","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecs12a","ct":1703308864,"e":82031,"f":"set_cri","g":5,"id":1913449308,"l":true,"level":78,"mainStatBaseValue":57,"mainStatId":"cs12_armo_m1","mainStatType":"def","mainStatValue":285,"mg":1111,"op":[["def",57],["cri",0.04],["cri_dmg",0.06],["speed",4],["max_hp_rate",0.07],["cri",0.05],["speed",3],["speed",3],["cri",0.05],["cri_dmg",0.07]],"p":480028811,"s":"9e29","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"exc112203","ct":1703315091,"g":5,"id":1914229424,"l":true,"mg":1111,"op":[["cri",0.12],["ek_c112203",3]],"s":"1da2"},{"code":"eiu21r","ct":1703345070,"e":93750,"f":"set_speed","g":5,"id":1918328237,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"iu21_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["def_rate",0.07],["speed",3],["cri",0.04],["res",0.07],["speed",4],["cri",0.05],["speed",3],["def_rate",0.08],["def_rate",0.06]],"s":"c163","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"exc112201","ct":1703377846,"g":5,"id":1920730843,"l":true,"mg":1111,"op":[["cri",0.12],["ek_c112201",1]],"s":"250a"},{"code":"ecw6a","ct":1703431685,"e":73828,"f":"set_speed","g":4,"id":1927057511,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["cri_dmg",0.05],["max_hp_rate",0.05],["speed",4],["cri_dmg",0.07],["speed",2],["speed",3],["res",0.04],["cri_dmg",0.06]],"p":545449824,"s":"4f20","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eah19a","ct":1703484568,"e":93750,"f":"set_speed","g":5,"id":1931044545,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"ah19_armo_m1","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.07],["speed",5],["cri",0.05],["def_rate",0.07],["cri",0.03],["cri",0.06],["speed",3],["max_hp_rate",0.08],["speed",4]],"p":207190343,"s":"0","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"exc103901","ct":1703485979,"g":5,"id":1931179435,"mg":1111,"op":[["cri",0.09],["ek_c103901",3]],"s":"c296"},{"code":"exc103901","ct":1703485985,"g":5,"id":1931180015,"l":true,"mg":1111,"op":[["cri",0.06],["ek_c103901",2]],"s":"6948"},{"code":"eih9n","ct":1703486429,"e":93750,"f":"set_penetrate","g":5,"id":1931224415,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"imh_neck_m11","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["max_hp_rate",0.09],["cri",0.06],["speed",5],["att_rate",0.09],["max_hp_rate",0.08],["cri",0.04],["max_hp_rate",0.07],["att_rate",0.05],["att_rate",0.08]],"p":490684210,"s":"8b0","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6w","ct":1703502922,"e":82031,"f":"set_speed","g":5,"id":1932781906,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["res",0.04],["speed",0],["max_hp_rate",0.06],["att_rate",0.05],["res",0.05],["max_hp_rate",0.08],["att_rate",0.07],["res",0.05],["max_hp_rate",0.08],["speed",2,"c","change1_speed_1_1"]],"p":894623419,"s":"ca47","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6w","ct":1703502922,"e":82143,"f":"set_acc","g":5,"id":1932781920,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["res",0.08],["att_rate",0.06],["cri_dmg",0.05],["acc",0.06],["acc",0.08],["cri_dmg",0.05],["res",0.08],["cri_dmg",0.04],["cri_dmg",0.07]],"p":6911147,"s":"d27","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6h","ct":1703646613,"f":"set_cri","g":5,"id":1940430552,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["cri_dmg",0.07],["def_rate",0.06],["max_hp_rate",0.05],["acc",0.06]],"s":"dd76","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6w_u","ct":1703646688,"e":84375,"f":"set_cri","g":4,"id":1940434100,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["acc",0.07],["max_hp_rate",0.04],["speed",4],["speed",4],["acc",0.06],["speed",4],["cri_dmg",0.05],["acc",0.07],["acc",0.04,"u"],["max_hp_rate",0.01,"u"],["speed",2,"u"],["cri_dmg",0.01,"u"]],"s":"182f","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6w_u","ct":1703646688,"e":93750,"f":"set_speed","g":5,"id":1940434101,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["cri",0.05],["cri_dmg",0.05],["max_hp_rate",0.06],["acc",0.08],["cri",0.03],["cri_dmg",0.07],["cri_dmg",0.07],["cri",0.05],["cri_dmg",0.05],["cri",0.03,"u"],["cri_dmg",0.04,"u"],["max_hp_rate",0.01,"u"],["acc",0.01,"u"]],"s":"1ff2","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eah22n","ct":1704069210,"e":93750,"f":"set_immune","g":5,"id":1957909968,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ah22_neck_m1","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["res",0.07],["def_rate",0.07],["speed",5],["cri",0.05],["cri",0.03],["def_rate",0.05],["def_rate",0.06],["cri",0.03],["speed",3]],"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eal85b_u","ct":1704095124,"e":93750,"f":"set_speed","g":5,"id":1959203877,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["att_rate",0.08],["max_hp_rate",0],["cri",0.04],["cri_dmg",0.05],["max_hp_rate",0],["att_rate",0.04],["cri",0.04],["cri_dmg",0.06],["att_rate",0.07],["max_hp_rate",0.08,"c"],["att_rate",0.04,"u"],["max_hp_rate",0.03,"u"],["cri",0.02,"u"],["cri_dmg",0.02,"u"]],"p":150271128,"s":"a559","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eal85r_u","ct":1704177759,"e":93750,"f":"set_speed","g":5,"id":1962235405,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,0],["cri_dmg",0.07],["acc",0.08],["cri",0],["res",0.08],["acc",0.05],["cri_dmg",0.04],["acc",0.04],["cri_dmg",0.06],["cri_dmg",0.04],["cri",0.04,"c"],["cri_dmg",0.04,"u"],["acc",0.04,"u"],["cri",0.01,"u"],["res",0.01,"u"]],"s":"7550","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6w_u","ct":1704252274,"e":93750,"f":"set_speed","g":5,"id":1964804569,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["res",0.06],["cri",0.05],["max_hp_rate",0.06],["speed",4],["max_hp_rate",0.08],["cri",0.05],["res",0.08],["res",0.05],["max_hp_rate",0.07],["res",0.04,"u"],["cri",0.02,"u"],["max_hp_rate",0.04,"u"]],"p":279573776,"s":"68e3","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6w_u","ct":1704254341,"e":93750,"f":"set_speed","g":5,"id":1964886762,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["max_hp_rate",0.08],["acc",0.08],["cri_dmg",0.07],["att_rate",0.08],["cri_dmg",0.05],["att_rate",0.07],["acc",0.05],["max_hp_rate",0.07],["cri_dmg",0.05],["max_hp_rate",0.03,"u"],["acc",0.03,"u"],["cri_dmg",0.03,"u"],["att_rate",0.03,"u"]],"s":"b875","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6h_u","ct":1704379061,"e":84375,"f":"set_speed","g":4,"id":1968811157,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["max_hp_rate",0.07],["speed",4],["acc",0.06],["speed",3],["max_hp_rate",0.08],["speed",4],["cri_dmg",0.05],["max_hp_rate",0.05],["max_hp_rate",0.04,"u"],["speed",2,"u"],["acc",0.01,"u"],["cri_dmg",0.01,"u"]],"p":894623419,"s":"943f","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecd6n_u","ct":1704609216,"e":93750,"f":"set_torrent","g":5,"id":1982634674,"l":true,"level":90,"mainStatBaseValue":0.14,"mainStatId":"cra7_neck_m","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14,null,null,2],["speed",3],["att",42],["cri",0.04],["att_rate",0.06],["speed",3],["att_rate",0.06],["att",43],["att_rate",0.04],["att",39],["speed",1,"u"],["att",33,"u"],["cri",0.01,"u"],["att_rate",0.04,"u"]],"s":"ad05","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eiu32h","ct":1704611861,"e":93802,"f":"set_cri","g":5,"id":1982871811,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"iu32_helm_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["att_rate",0.07],["max_hp_rate",0.07],["cri",0.04],["cri_dmg",0.06],["max_hp_rate",0.08],["att_rate",0.09],["cri_dmg",0.07],["cri",0.03],["cri_dmg",0.06]],"p":549294853,"s":"3de6","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eiu52r","ct":1704616985,"e":93750,"f":"set_counter","g":5,"id":1983314284,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"iu52_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["max_hp_rate",0.07],["def_rate",0.07],["speed",3],["cri_dmg",0.06],["max_hp_rate",0.06],["def_rate",0.06],["def_rate",0.07],["cri_dmg",0.05],["cri_dmg",0.05]],"s":"bf4f","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eiu11h","ct":1704619286,"e":93750,"f":"set_speed","g":5,"id":1983504651,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"iu11_helm_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["att_rate",0.09],["max_hp_rate",0.09],["speed",5],["cri",0.06],["max_hp_rate",0.08],["att_rate",0.05],["cri",0.04],["att_rate",0.08],["att_rate",0.06]],"p":518421029,"s":"cac","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eiu41a","ct":1704631506,"e":93750,"f":"set_counter","g":5,"id":1984528251,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"iu41_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.06],["def_rate",0.06],["speed",4],["res",0.06],["speed",4],["def_rate",0.08],["max_hp_rate",0.08],["def_rate",0.08],["max_hp_rate",0.09]],"s":"8a4e","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eih9r","ct":1704631650,"e":93750,"f":"set_res","g":5,"id":1984540949,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"imh_ring_m11","mainStatType":"res","mainStatValue":0.65,"mg":1111,"op":[["res",0.13],["max_hp_rate",0.09],["def_rate",0.09],["speed",5],["acc",0.09],["acc",0.09],["speed",3],["speed",3],["speed",3],["max_hp_rate",0.09]],"p":28398305,"s":"2be4","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eah19w","ct":1704633388,"e":93750,"f":"set_speed","g":5,"id":1984695828,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"ah19_weap_m1","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.07],["att_rate",0.07],["speed",5],["acc",0.07],["att_rate",0.05],["att_rate",0.09],["speed",3],["att_rate",0.08],["att_rate",0.07]],"p":518782830,"s":"0","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eal85b_u","ct":1704636015,"e":93750,"f":"set_speed","g":5,"id":1984935372,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["max_hp_rate",0.05],["def",34],["cri_dmg",0.07],["att_rate",0.05],["att_rate",0.06],["def",28],["max_hp_rate",0.06],["max_hp_rate",0.04],["att_rate",0.07],["max_hp_rate",0.04,"u"],["def",18,"u"],["cri_dmg",0.01,"u"],["att_rate",0.04,"u"]],"s":"9f","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eal85b_u","ct":1704856091,"e":93750,"f":"set_vampire","g":5,"id":1992544299,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["def_rate",0],["max_hp",160],["cri_dmg",0.05],["res",0.04],["cri_dmg",0.06],["max_hp",190],["cri_dmg",0.05],["cri_dmg",0.04],["res",0.08],["def_rate",0.07,"c"],["def_rate",0.01,"u"],["max_hp",112,"u"],["cri_dmg",0.04,"u"],["res",0.03,"u"]],"s":"2c0c","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecd6a","ct":1704948019,"e":82085,"f":"set_torrent","g":5,"id":1996773798,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["speed",2],["max_hp_rate",0.08],["res",0.07],["max_hp",199],["speed",3],["max_hp_rate",0.08],["max_hp_rate",0.07],["speed",2],["max_hp",191]],"s":"2b31","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6h_u","ct":1704949315,"e":93750,"f":"set_speed","g":5,"id":1996948269,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["acc",0.06],["speed",4],["cri_dmg",0.07],["res",0.05],["res",0.08],["res",0.05],["acc",0.06],["acc",0.08],["res",0.06],["acc",0.04,"u"],["cri_dmg",0.01,"u"],["res",0.05,"u"]],"p":636577158,"s":"cae","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecd6a","ct":1705030549,"f":"set_torrent","g":5,"id":2002995558,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["acc",0.07],["max_hp",193],["def_rate",0.07],["cri",0.05]],"s":"2a5","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecd6h_u","ct":1705030559,"e":93750,"f":"set_torrent","g":5,"id":2002996261,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["cri",0.03],["speed",4],["cri_dmg",0.05],["res",0.08],["cri_dmg",0.06],["cri_dmg",0.07],["res",0.05],["speed",3],["speed",3],["cri",0.01,"u"],["speed",2,"u"],["cri_dmg",0.03,"u"],["res",0.03,"u"]],"s":"49b0","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6a_u","ct":1705035322,"e":84411,"f":"set_cri_dmg","g":4,"id":2003362268,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["def_rate",0.07],["speed",4],["cri",0.05],["cri",0.05],["def_rate",0.06],["def_rate",0.04],["acc",0.08],["acc",0.08],["def_rate",0.04,"u"],["cri",0.02,"u"],["acc",0.03,"u"]],"p":48988518,"s":"c6e3","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6a","ct":1705038404,"e":9560,"f":"set_counter","g":5,"id":2003602517,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["max_hp_rate",0.06],["cri",0.05],["res",0.04],["acc",0.08],["acc",0.04],["acc",0.05]],"s":"45","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6h_u","ct":1705041755,"e":93804,"f":"set_cri_dmg","g":5,"id":2003857003,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["att",46],["cri_dmg",0.04],["max_hp_rate",0.08],["res",0.06],["cri_dmg",0.05],["cri_dmg",0.07],["cri_dmg",0.05],["max_hp_rate",0.06],["att",35],["att",22,"u"],["cri_dmg",0.04,"u"],["max_hp_rate",0.03,"u"],["res",0.01,"u"]],"p":847822619,"s":"fc3a","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6w_u","ct":1705050363,"e":84375,"f":"set_res","g":4,"id":2004501127,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["max_hp_rate",0.06],["res",0.07],["speed",4],["speed",4],["max_hp_rate",0.07],["res",0.05],["att_rate",0.07],["speed",3],["max_hp_rate",0.03,"u"],["res",0.03,"u"],["speed",2,"u"],["att_rate",0.01,"u"]],"s":"1352","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecb6a_u","ct":1705053072,"e":93750,"f":"set_counter","g":5,"id":2004697268,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri_dmg",0.04],["speed",3],["max_hp_rate",0.08],["def_rate",0.08],["max_hp_rate",0.06],["cri_dmg",0.04],["max_hp_rate",0.06],["max_hp_rate",0.05],["cri_dmg",0.04],["cri_dmg",0.03,"u"],["max_hp_rate",0.05,"u"],["def_rate",0.01,"u"]],"s":"629","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6w_u","ct":1705071097,"e":93863,"f":"set_res","g":5,"id":2006249124,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["speed",3],["cri",0.03],["res",0.04],["max_hp_rate",0.06],["max_hp_rate",0.08],["res",0.05],["max_hp_rate",0.06],["res",0.05],["speed",2],["speed",1,"u"],["cri",0.01,"u"],["res",0.04,"u"],["max_hp_rate",0.04,"u"]],"p":218403497,"s":"892c","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecb6h","ct":1705071109,"e":82031,"f":"set_counter","g":5,"id":2006250341,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["speed",4],["att_rate",0.07],["acc",0.06],["res",0.05],["res",0.08],["att_rate",0.08],["att_rate",0.04],["speed",3],["res",0.07]],"p":717223364,"s":"e804","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6h","ct":1705071109,"e":27342,"f":"set_counter","g":5,"id":2006250342,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["def_rate",0.08],["cri",0.05],["cri_dmg",0.05],["speed",3],["speed",2],["cri",0.04],["def_rate",0.04]],"s":"23c1","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6w","ct":1705114558,"e":82086,"f":"set_cri_dmg","g":5,"id":2008384390,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["cri",0.05],["att_rate",0.04],["max_hp_rate",0.04],["speed",4],["speed",3],["max_hp_rate",0.07],["att_rate",0.08],["max_hp_rate",0.07],["att_rate",0.05]],"s":"4a80","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eus8w","ct":1705126396,"e":93750,"f":"set_speed","g":5,"id":2009335986,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"un8_weap_m1","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.09],["att_rate",0.09],["speed",5],["acc",0.09],["speed",4],["max_hp_rate",0.06],["speed",3],["acc",0.06],["acc",0.09]],"s":"7f6b","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eal85b_u","ct":1705152618,"e":93750,"f":"set_rage","g":5,"id":2011430764,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,0],["cri",0],["cri_dmg",0.04],["max_hp_rate",0.05],["acc",0.08],["cri_dmg",0.05],["acc",0.05],["cri_dmg",0.06],["max_hp_rate",0.07],["cri",0],["cri",0.06,"c"],["cri",0.02,"u"],["cri_dmg",0.03,"u"],["max_hp_rate",0.03,"u"],["acc",0.03,"u"]],"s":"a58b","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eus8h","ct":1705161253,"e":93862,"f":"set_speed","g":5,"id":2012198829,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"un8_helm_m1","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["max_hp_rate",0.09],["speed",5],["cri",0.06],["acc",0.09],["acc",0.05],["acc",0.09],["cri",0.03],["max_hp_rate",0.06],["cri",0.05]],"s":"e7c2","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eus8a","ct":1705213851,"e":93750,"f":"set_speed","g":5,"id":2014873252,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"un8_armo_m1","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.09],["speed",5],["cri",0.06],["res",0.09],["speed",3],["max_hp_rate",0.09],["res",0.06],["max_hp_rate",0.06],["max_hp_rate",0.09]],"p":620426700,"s":"4782","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eus8b","ct":1705240177,"e":93861,"f":"set_speed","g":5,"id":2016902853,"l":true,"level":88,"mainStatBaseValue":9,"mainStatId":"un8_boot_m1","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9],["cri",0.06],["acc",0.09],["att_rate",0.09],["max_hp_rate",0.09],["max_hp_rate",0.08],["cri",0.05],["att_rate",0.08],["acc",0.08],["att_rate",0.05]],"p":649028156,"s":"1e29","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eal85r","ct":1705243174,"e":82031,"f":"set_penetrate","g":5,"id":2017167572,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"al85_ring_m","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["acc",0.05],["res",0.04],["def",29],["max_hp",196],["max_hp",174],["acc",0.05],["res",0.07],["acc",0.08],["res",0.06]],"p":48982864,"s":"c570","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecb6r","ct":1705244277,"e":82031,"f":"set_res","g":5,"id":2017265718,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"res","mainStatValue":0.6,"mg":1111,"op":[["res",0.12],["cri_dmg",0.05],["speed",4],["max_hp",176],["att_rate",0.04],["att_rate",0.04],["cri_dmg",0.04],["cri_dmg",0.04],["cri_dmg",0.05],["att_rate",0.07]],"p":403357976,"s":"7ee0","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eal85r_u","ct":1705245285,"e":93750,"f":"set_vampire","g":5,"id":2017356019,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,0],["def_rate",0.06],["acc",0.05],["cri",0.03],["cri_dmg",0.07],["cri",0.04],["cri_dmg",0.07],["cri",0.05],["cri_dmg",0.04],["acc",0.05],["def_rate",0.01,"u"],["acc",0.03,"u"],["cri",0.03,"u"],["cri_dmg",0.03,"u"]],"p":798777729,"s":"361d","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecb6w_u","ct":1705304460,"e":93804,"f":"set_counter","g":5,"id":2019544740,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["acc",0.05],["max_hp_rate",0],["speed",4],["res",0.08],["res",0.06],["speed",4],["acc",0.04],["max_hp_rate",0],["max_hp_rate",0],["acc",0.03,"u"],["max_hp_rate",0.04,"u"],["speed",1,"u"],["res",0.03,"u"],["max_hp_rate",0.11,"c","change2_max_hp_rate_3_1"]],"p":717223364,"s":"f8a2","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecb6a_u","ct":1705304473,"e":93750,"f":"set_cri_dmg","g":5,"id":2019545099,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri",0],["max_hp_rate",0.06],["cri_dmg",0.06],["def_rate",0.05],["max_hp_rate",0.04],["def_rate",0.05],["cri_dmg",0.04],["max_hp_rate",0.07],["def_rate",0.07],["max_hp_rate",0.04,"u"],["cri_dmg",0.02,"u"],["def_rate",0.04,"u"],["cri",0.02,"c","change1_cri_1_1"],["cri",0.01,"u"]],"p":736028830,"s":"1ea2","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eah22r","ct":1705390872,"e":93750,"f":"set_immune","g":5,"id":2022267621,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ah22_ring_m1","mainStatType":"res","mainStatValue":0.65,"mg":1111,"op":[["res",0.13],["max_hp_rate",0.07],["speed",5],["def_rate",0.07],["acc",0.07],["speed",4],["acc",0.06],["acc",0.06],["acc",0.07],["def_rate",0.08]],"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eal85n_u","ct":1705391355,"e":93750,"f":"set_res","g":5,"id":2022281446,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["res",0.06],["def_rate",0.05],["acc",0.08],["max_hp",163],["acc",0.07],["res",0.08],["def_rate",0.04],["res",0.06],["res",0.08],["res",0.05,"u"],["def_rate",0.03,"u"],["acc",0.03,"u"],["max_hp",56,"u"]],"p":893757497,"s":"1287","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6h","ct":1705478614,"e":82031,"f":"set_speed","g":5,"id":2024850782,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["cri_dmg",0.05],["res",0.06],["speed",3],["cri",0.05],["cri",0.05],["res",0.07],["speed",3],["res",0.08],["cri_dmg",0.06]],"p":306770592,"s":"a694","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6w_u","ct":1705478628,"e":84375,"f":"set_speed","g":4,"id":2024851183,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["speed",4],["max_hp",157],["cri",0.04],["speed",3],["speed",3],["max_hp",150],["cri_dmg",0],["speed",3],["speed",3,"u"],["max_hp",112,"u"],["cri",0.01,"u"],["cri_dmg",0.01,"u"],["cri_dmg",0.07,"c","change2_cri_dmg_1_2"]],"p":115835449,"s":"406a","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6w","ct":1705478653,"e":82031,"f":"set_speed","g":5,"id":2024851848,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["cri",0.05],["max_hp",158],["att_rate",0.07],["speed",4],["att_rate",0.05],["speed",2],["att_rate",0.06],["att_rate",0.07],["max_hp",181]],"s":"adb6","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecn23r","ct":1705551897,"e":93750,"f":"set_speed","g":5,"id":2026412395,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"wc2023_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["max_hp_rate",0.09],["cri",0.06],["cri_dmg",0.08],["speed",5],["speed",4],["cri",0.05],["cri_dmg",0.07],["cri",0.06],["cri_dmg",0.06]],"s":"c683","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecs14n","ct":1705552327,"e":82031,"f":"set_speed","g":5,"id":2026424962,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"cs14_neck_m1","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["def_rate",0.08],["speed",4],["res",0.08],["acc",0.08],["res",0.07],["acc",0.05],["def_rate",0.06],["speed",3],["speed",3]],"p":90857803,"s":"4705","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecb6h_u","ct":1705570726,"e":93863,"f":"set_vampire","g":5,"id":2027220836,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["def_rate",0.07],["cri_dmg",0.07],["def",34],["att_rate",0.04],["cri_dmg",0.04],["def_rate",0.07],["cri_dmg",0.07],["att_rate",0.05],["att_rate",0.07],["def_rate",0.03,"u"],["cri_dmg",0.03,"u"],["def",9,"u"],["att_rate",0.04,"u"]],"p":313179896,"s":"57e5","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6h","ct":1705570759,"e":73828,"f":"set_vampire","g":4,"id":2027221801,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["speed",4],["def",28],["cri_dmg",0.04],["speed",4],["speed",4],["def",30],["cri",0.04],["speed",2]],"s":"edf3","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6h_u","ct":1705570782,"e":93863,"f":"set_counter","g":5,"id":2027222422,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["att_rate",0.06],["def_rate",0.08],["cri_dmg",0.06],["cri",0.03],["att_rate",0.05],["att_rate",0.06],["cri",0.04],["def_rate",0.06],["cri",0.04],["att_rate",0.04,"u"],["def_rate",0.03,"u"],["cri_dmg",0.01,"u"],["cri",0.03,"u"]],"p":360878989,"s":"fc4a","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6r","ct":1705893640,"e":19239,"f":"set_speed","g":5,"id":2038111401,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["cri_dmg",0.05],["res",0.08],["acc",0.08],["att",39],["acc",0.05],["res",0.07],["res",0.08]],"s":"f1a1","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6b_u","ct":1705903493,"e":93750,"f":"set_cri","g":5,"id":2038874253,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,0],["cri",0.05],["speed",2],["res",0.05],["max_hp_rate",0.08],["res",0.07],["cri",0.05],["cri",0.04],["speed",3],["res",0.08],["cri",0.03,"u"],["speed",1,"u"],["res",0.04,"u"],["max_hp_rate",0.01,"u"]],"s":"b090","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6h","ct":1706000509,"e":3964,"f":"set_speed","g":5,"id":2043861084,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["att",44],["cri",0.05],["res",0.06],["def_rate",0.07],["att",38]],"p":360502881,"s":"5e9d","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6w_u","ct":1706001487,"e":93750,"f":"set_cri","g":5,"id":2043892879,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["max_hp_rate",0.07],["cri",0.04],["cri_dmg",0.07],["att_rate",0.06],["att_rate",0.06],["max_hp_rate",0.06],["cri",0.05],["att_rate",0.06],["att_rate",0.06],["max_hp_rate",0.03,"u"],["cri",0.02,"u"],["cri_dmg",0.01,"u"],["att_rate",0.05,"u"]],"s":"37cf","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eal85b_u","ct":1706162050,"e":93805,"f":"set_speed","g":5,"id":2048932715,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["def_rate",0.04],["cri",0.05],["acc",0.05],["max_hp",166],["cri",0.05],["def_rate",0.06],["max_hp",192],["acc",0.08],["cri",0.05],["def_rate",0.03,"u"],["cri",0.03,"u"],["acc",0.03,"u"],["max_hp",112,"u"]],"p":549294853,"s":"3a88","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eah22b","ct":1706235521,"e":93803,"f":"set_immune","g":5,"id":2051113296,"l":true,"level":88,"mainStatBaseValue":9,"mainStatId":"ah22_boot_m1","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9],["def_rate",0.07],["max_hp_rate",0.07],["cri",0.05],["res",0.07],["cri",0.04],["res",0.07],["def_rate",0.05],["max_hp_rate",0.09],["max_hp_rate",0.09]],"p":713583798,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6b_u","ct":1706353874,"e":84375,"f":"set_speed","g":4,"id":2055869382,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["def_rate",0.04],["cri_dmg",0.07],["max_hp_rate",0.08],["cri_dmg",0.07],["def_rate",0.07],["def_rate",0.08],["res",0],["max_hp_rate",0.08],["def_rate",0.04,"u"],["cri_dmg",0.02,"u"],["max_hp_rate",0.03,"u"],["res",0.01,"u"],["res",0.08,"c","change2_res_1_2"]],"p":110838566,"s":"62af","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eal85b_u","ct":1706378560,"e":93803,"f":"set_speed","g":5,"id":2057530391,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["def_rate",0.05],["cri_dmg",0.06],["att_rate",0.08],["cri",0],["att_rate",0.05],["cri_dmg",0.06],["def_rate",0.08],["att_rate",0.06],["cri_dmg",0.04],["def_rate",0.03,"u"],["cri_dmg",0.03,"u"],["att_rate",0.04,"u"],["cri",0.01,"u"],["cri",0.04,"c","change2_cri_1_2"]],"s":"53c2","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6a","ct":1706414991,"e":82031,"f":"set_cri","g":5,"id":2058772361,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["cri",0.04],["speed",3],["res",0.07],["def_rate",0.08],["speed",4],["def_rate",0.06],["res",0.06],["res",0.07],["cri",0.04]],"s":"4f6a","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eal85b_u","ct":1706415536,"e":93804,"f":"set_speed","g":5,"id":2058805133,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["def_rate",0.06],["res",0.06],["max_hp_rate",0],["cri",0.03],["cri",0.03],["def_rate",0.06],["res",0.08],["res",0.07],["def_rate",0.06],["max_hp_rate",0.05,"c"],["def_rate",0.04,"u"],["res",0.04,"u"],["max_hp_rate",0.01,"u"],["cri",0.02,"u"]],"s":"f3dc","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6w","ct":1706441913,"f":"set_acc","g":4,"id":2060434624,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["max_hp_rate",0.06],["res",0.07],["cri_dmg",0.06]],"p":522853044,"s":"be10","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6a_u","ct":1706541353,"e":93802,"f":"set_cri","g":5,"id":2064216941,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri",0.04],["res",0.05],["speed",3],["cri_dmg",0.05],["cri",0.05],["res",0.04],["speed",4],["cri_dmg",0.06],["cri",0.04],["cri",0.03,"u"],["res",0.03,"u"],["speed",1,"u"],["cri_dmg",0.02,"u"]],"s":"10e6","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6w","ct":1706541435,"e":82144,"f":"set_speed","g":5,"id":2064220982,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["att_rate",0.08],["acc",0.07],["max_hp_rate",0.05],["res",0.07],["acc",0.08],["att_rate",0.06],["res",0.08],["max_hp_rate",0.04],["max_hp_rate",0.05]],"p":403357976,"s":"f782","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6h","ct":1706620357,"f":"set_cri","g":5,"id":2066291963,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["def_rate",0.08],["res",0.06],["att_rate",0.04],["max_hp_rate",0.05]],"s":"d519","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6h","ct":1706620525,"e":82085,"f":"set_cri","g":5,"id":2066298537,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["speed",2],["att_rate",0.04],["cri_dmg",0.06],["cri",0.05],["cri_dmg",0.06],["cri",0.04],["att_rate",0.04],["att_rate",0.05],["cri",0.04]],"s":"6589","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6w_u","ct":1706620599,"e":93750,"f":"set_res","g":5,"id":2066301482,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["cri",0.05],["speed",2],["res",0.08],["att_rate",0.04],["speed",4],["res",0.07],["cri",0.04],["res",0.05],["res",0.07],["cri",0.02,"u"],["speed",1,"u"],["res",0.05,"u"],["att_rate",0.01,"u"]],"p":389494760,"s":"b666","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecb6b","ct":1706657162,"e":82031,"f":"set_vampire","g":5,"id":2067112315,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_boot_m","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["cri",0.05],["def",33],["max_hp_rate",0.06],["def_rate",0.05],["max_hp_rate",0.07],["cri",0.05],["cri",0.05],["def",31],["def",32]],"p":313179896,"s":"74e9","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eiu21a","ct":1706684102,"e":2332,"f":"set_vampire","g":5,"id":2067869313,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"iu21_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.06],["speed",4],["res",0.06],["cri_dmg",0.05],["cri_dmg",0.08]],"s":"55f6","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eiu21n","ct":1706778716,"e":93750,"f":"set_cri_dmg","g":5,"id":2071394636,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"iu21_neck_m","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["att_rate",0.09],["def_rate",0.09],["speed",5],["cri",0.06],["cri",0.05],["def_rate",0.06],["att_rate",0.09],["speed",4],["def_rate",0.08]],"p":591089796,"s":"1f1f","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ess13n","ct":1706780572,"e":82031,"f":"set_speed","g":5,"id":2071559998,"l":true,"level":78,"mainStatBaseValue":0.13,"mainStatId":"ss13_neck_m","mainStatType":"cri_dmg","mainStatValue":0.65,"mg":1111,"op":[["cri_dmg",0.13],["max_hp_rate",0.07],["att_rate",0.07],["speed",4],["cri",0.04],["speed",2],["att_rate",0.08],["max_hp_rate",0.05],["max_hp_rate",0.07],["speed",3]],"s":"7337","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eus8n","ct":1706889460,"e":93860,"f":"set_speed","g":5,"id":2078298748,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"un8_neck_m1","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["speed",5],["cri",0.06],["att_rate",0.09],["max_hp_rate",0.09],["max_hp_rate",0.09],["att_rate",0.08],["speed",3],["att_rate",0.09],["speed",3]],"s":"fc05","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eus8r","ct":1706892248,"e":93861,"f":"set_speed","g":5,"id":2078474272,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"un8_ring_m1","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["max_hp_rate",0.09],["speed",5],["cri",0.06],["cri_dmg",0.08],["cri_dmg",0.06],["cri_dmg",0.05],["cri",0.05],["max_hp_rate",0.09],["speed",3]],"p":596366779,"s":"ad26","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eiu12b","ct":1706925455,"f":"set_shield","g":5,"id":2079299987,"l":true,"level":88,"mainStatBaseValue":9,"mainStatId":"iu12_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9],["res",0.07],["max_hp_rate",0.07],["def_rate",0.07],["acc",0.07]],"s":"e3a1","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eal85b_u","ct":1707100081,"e":93750,"f":"set_speed","g":5,"id":2084745648,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["def_rate",0],["acc",0.08],["res",0.06],["max_hp_rate",0.05],["max_hp_rate",0.07],["max_hp_rate",0.05],["max_hp_rate",0.06],["max_hp_rate",0.05],["res",0.04],["def_rate",0.01,"u"],["acc",0.01,"u"],["res",0.03,"u"],["max_hp_rate",0.07,"u"],["def_rate",0.07,"c","change2_def_rate_1_1"]],"s":"2ccb","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eah22a","ct":1707290467,"e":93750,"f":"set_immune","g":5,"id":2089731577,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"ah22_armo_m1","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.07],["def_rate",0.07],["res",0.07],["cri",0.05],["cri",0.03],["res",0.07],["max_hp_rate",0.05],["res",0.08],["res",0.05]],"s":"0","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eot3n_u3","ct":1707293465,"e":93750,"f":"set_att","g":5,"id":2089861086,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"ot3u_neck_m3","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["att_rate",0.05],["res",0.08],["def",35],["cri",0.06],["def",32],["att_rate",0.05],["cri",0.04],["def",36],["att_rate",0.08]],"s":"990e","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eot3r_u1","ct":1707293472,"f":"set_att","g":5,"id":2089861315,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ot3u_ring_m1","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["cri_dmg",0.05],["res",0.08],["max_hp_rate",0.08],["def",36]],"s":"eab","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"exc206201","ct":1707467590,"g":5,"id":2095902029,"l":true,"mg":1111,"op":[["speed",8],["ek_c206201",2]],"s":"caa2"},{"code":"exc206201","ct":1707467595,"g":5,"id":2095902430,"l":true,"mg":1111,"op":[["speed",9],["ek_c206201",3]],"p":566472035,"s":"6728"},{"code":"ecw6a_u","ct":1707487214,"e":93750,"f":"set_acc","g":5,"id":2097373980,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["speed",4],["cri_dmg",0.07],["cri",0.04],["acc",0.06],["speed",2],["cri",0.05],["cri",0.05],["speed",2],["acc",0.08],["speed",2,"u"],["cri_dmg",0.01,"u"],["cri",0.03,"u"],["acc",0.03,"u"]],"s":"bac1","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a","ct":1707493083,"f":"set_speed","g":5,"id":2097839766,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["res",0.05],["acc",0.06],["max_hp",188],["max_hp_rate",0.05]],"p":568417281,"s":"a73f","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6h_u","ct":1707493091,"e":93750,"f":"set_acc","g":5,"id":2097840413,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["def_rate",0.08],["speed",4],["def",29],["cri",0.05],["speed",2],["speed",2],["speed",2],["speed",3],["def",32],["def_rate",0.01,"u"],["speed",4,"u"],["def",18,"u"],["cri",0.01,"u"]],"p":559859822,"s":"c2a1","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6a_u","ct":1707570325,"e":93862,"f":"set_cri","g":5,"id":2102818293,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri_dmg",0.06],["cri",0.05],["acc",0.08],["max_hp_rate",0.05],["max_hp_rate",0.08],["cri_dmg",0.04],["max_hp_rate",0.07],["cri_dmg",0.06],["cri",0.03],["cri_dmg",0.03,"u"],["cri",0.02,"u"],["acc",0.01,"u"],["max_hp_rate",0.04,"u"]],"s":"91f3","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a_u","ct":1707579459,"e":84375,"f":"set_speed","g":4,"id":2103561103,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["speed",4],["def_rate",0.08],["cri_dmg",0.05],["speed",3],["speed",3],["speed",3],["res",0.04],["res",0.07],["speed",3,"u"],["def_rate",0.01,"u"],["cri_dmg",0.01,"u"],["res",0.03,"u"]],"s":"dc70","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a","ct":1707582380,"f":"set_acc","g":5,"id":2103767124,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["acc",0.05],["max_hp",164],["max_hp_rate",0.06],["cri",0.03]],"p":323638178,"s":"2ec1","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6r","ct":1707585479,"f":"set_acc","g":4,"id":2103945239,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"acc","mainStatValue":0.6,"mg":1111,"op":[["acc",0.12],["att_rate",0.08],["cri_dmg",0.07],["max_hp",179]],"p":360502881,"s":"edff","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6w","ct":1707595052,"e":1865,"f":"set_speed","g":4,"id":2104279288,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["att_rate",0.07],["cri_dmg",0.06],["acc",0.04],["acc",0.05]],"p":545449824,"s":"d700","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6a","ct":1707634837,"e":12476,"f":"set_speed","g":5,"id":2106228453,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["cri_dmg",0.06],["cri",0.04],["res",0.08],["max_hp_rate",0.05],["max_hp_rate",0.04],["cri",0.05]],"s":"9df3","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecd6w_u","ct":1707730599,"e":93750,"f":"set_penetrate","g":5,"id":2110924322,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["acc",0.05],["res",0.06],["max_hp_rate",0.06],["cri_dmg",0.07],["res",0.07],["acc",0.08],["max_hp_rate",0.07],["res",0.05],["res",0.06],["acc",0.03,"u"],["res",0.05,"u"],["max_hp_rate",0.03,"u"],["cri_dmg",0.01,"u"]],"p":326831592,"s":"35f3","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecd6b","ct":1707831482,"f":"set_scar","g":4,"id":2114759155,"level":85,"mainStatBaseValue":8,"mainStatId":"cra6_boot_m","mainStatType":"speed","mainStatValue":40,"mg":1111,"op":[["speed",8],["cri_dmg",0.06],["att",41],["def_rate",0.07]],"p":545449824,"s":"2be3","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6w_u","ct":1707984836,"e":93750,"f":"set_speed","g":5,"id":2121257472,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["att_rate",0.06],["speed",3],["cri",0.05],["cri_dmg",0.07],["att_rate",0.05],["cri",0.04],["cri",0.05],["cri",0.04],["cri",0.03],["att_rate",0.03,"u"],["cri",0.05,"u"],["cri_dmg",0.01,"u"]],"p":793619248,"s":"ef9c","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6b_u","ct":1707986961,"e":93750,"f":"set_speed","g":5,"id":2121373185,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["cri",0.05],["att_rate",0.05],["cri_dmg",0],["acc",0.07],["cri",0.05],["att_rate",0.07],["cri_dmg",0],["att_rate",0.05],["cri",0.04],["cri",0.03,"u"],["att_rate",0.04,"u"],["cri_dmg",0.02,"u"],["acc",0.01,"u"],["cri_dmg",0.09,"c","change2_cri_dmg_2_2"]],"p":583954927,"s":"ad1e","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eot3r_u1","ct":1707988277,"e":93750,"f":"set_speed","g":5,"id":2121441876,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ot3u_ring_m1","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["att",38],["max_hp_rate",0.09],["speed",3],["res",0.08],["res",0.07],["res",0.06],["speed",4],["speed",4],["max_hp_rate",0.05]],"p":96079748,"s":"be42","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6h","ct":1708148701,"f":"set_speed","g":4,"id":2126739471,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["def_rate",0.08],["cri",0.04],["acc",0.08]],"p":627243561,"s":"6d3a","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6w","ct":1708148770,"e":1982,"f":"set_acc","g":5,"id":2126741481,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["speed",3],["max_hp_rate",0.07],["cri_dmg",0.06],["cri",0.05],["cri",0.04]],"p":360502881,"s":"3b96","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6a","ct":1708148803,"f":"set_speed","g":5,"id":2126742492,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["res",0.04],["def_rate",0.08],["cri",0.04],["acc",0.05]],"p":360502881,"s":"a309","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6h_u","ct":1708148813,"e":93750,"f":"set_speed","g":5,"id":2126742800,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["cri",0.05],["acc",0.07],["def_rate",0.06],["max_hp_rate",0.05],["def_rate",0.07],["def_rate",0.06],["acc",0.04],["def_rate",0.05],["max_hp_rate",0.06],["cri",0.01,"u"],["acc",0.03,"u"],["def_rate",0.05,"u"],["max_hp_rate",0.03,"u"]],"p":590699704,"s":"3a6","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ela8n","ct":1708488110,"e":93750,"f":"set_speed","g":5,"id":2135372005,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"la8_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["def_rate",0.09],["speed",5],["res",0.09],["acc",0.09],["res",0.08],["res",0.06],["acc",0.08],["acc",0.06],["acc",0.08]],"p":899011010,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ela8b","ct":1708594531,"e":93862,"f":"set_speed","g":5,"id":2139237574,"l":true,"level":88,"mainStatBaseValue":9,"mainStatId":"la8_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9],["max_hp_rate",0.09],["att_rate",0.09],["def_rate",0.09],["cri",0.06],["cri",0.05],["att_rate",0.07],["max_hp_rate",0.08],["max_hp_rate",0.07],["def_rate",0.06]],"p":218403497,"s":"c625","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ela8a","ct":1708699865,"e":93750,"f":"set_speed","g":5,"id":2142093452,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"la8_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.09],["def_rate",0.09],["speed",5],["res",0.09],["speed",4],["def_rate",0.05],["speed",4],["def_rate",0.09],["res",0.07]],"p":389494760,"s":"0","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eah22h","ct":1708700141,"e":93863,"f":"set_immune","g":5,"id":2142102830,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"ah22_helm_m1","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["def_rate",0.07],["acc",0.07],["res",0.07],["speed",5],["def_rate",0.07],["def_rate",0.09],["acc",0.07],["res",0.06],["acc",0.06]],"s":"0","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6w_u","ct":1708835823,"e":84471,"f":"set_speed","g":4,"id":2149094317,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["speed",3],["acc",0.06],["max_hp_rate",0.08],["speed",4],["speed",4],["max_hp_rate",0.07],["cri",0.04],["cri",0.03],["speed",2,"u"],["acc",0.01,"u"],["max_hp_rate",0.03,"u"],["cri",0.02,"u"]],"s":"77d8","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6w","ct":1708836357,"e":73828,"f":"set_cri","g":4,"id":2149133295,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["speed",3],["cri",0.03],["max_hp_rate",0.04],["speed",3],["speed",2],["speed",4],["cri_dmg",0.04],["cri_dmg",0.05]],"s":"1a8","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6r","ct":1708836571,"e":82031,"f":"set_acc","g":5,"id":2149149204,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"res","mainStatValue":0.6,"mg":1111,"op":[["res",0.12],["def_rate",0.08],["max_hp_rate",0.06],["cri",0.05],["acc",0.07],["max_hp_rate",0.04],["acc",0.05],["cri",0.04],["def_rate",0.05],["cri",0.03]],"s":"b2bf","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6w_u","ct":1708849487,"e":93750,"f":"set_acc","g":5,"id":2150114260,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["att_rate",0.07],["cri_dmg",0.04],["speed",2],["cri",0.03],["speed",4],["cri",0.05],["speed",3],["speed",2],["cri",0.03],["att_rate",0.01,"u"],["cri_dmg",0.01,"u"],["speed",3,"u"],["cri",0.03,"u"]],"s":"6983","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6a","ct":1708854407,"e":73982,"f":"set_speed","g":4,"id":2150481857,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["max_hp",181],["def_rate",0.08],["speed",2],["speed",3],["speed",4],["max_hp",172],["res",0.06],["def_rate",0.07]],"s":"15bc","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ela8w","ct":1708858417,"e":93750,"f":"set_max_hp","g":5,"id":2150775127,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"la8_wepo_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.09],["max_hp",0],["speed",5],["res",0.09],["speed",4],["max_hp_rate",0.08],["max_hp_rate",0.05],["speed",3],["speed",4],["max_hp",183,"c","change2_max_hp_1_2"]],"p":739641017,"s":"0","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6w_u","ct":1708858507,"e":93750,"f":"set_speed","g":5,"id":2150781870,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["cri",0.04],["speed",2],["cri_dmg",0.07],["acc",0.08],["cri_dmg",0.04],["cri_dmg",0.06],["speed",2],["speed",3],["speed",2],["cri",0.01,"u"],["speed",3,"u"],["cri_dmg",0.03,"u"],["acc",0.01,"u"]],"p":518421029,"s":"2e53","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eiu32w","ct":1708869824,"e":93750,"f":"set_acc","g":5,"id":2151692442,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"iu32_weap_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["att_rate",0.07],["max_hp_rate",0.07],["speed",3],["acc",0.07],["speed",3],["max_hp_rate",0.08],["att_rate",0.05],["max_hp_rate",0.06],["max_hp_rate",0.08]],"s":"2197","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6a","ct":1708870404,"e":82031,"f":"set_acc","g":5,"id":2151743407,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["cri",0.05],["speed",2],["max_hp_rate",0.07],["def_rate",0.06],["cri",0.04],["cri",0.04],["max_hp_rate",0.08],["def_rate",0.08],["max_hp_rate",0.07]],"s":"b5bb","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6w","ct":1708872038,"e":39993,"f":"set_acc","g":5,"id":2151884103,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["cri",0.05],["max_hp_rate",0.07],["cri_dmg",0.05],["speed",3],["speed",4],["max_hp_rate",0.06],["cri",0.04],["max_hp_rate",0.05]],"s":"6e87","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6w_u","ct":1708872272,"e":93804,"f":"set_speed","g":5,"id":2151903486,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["cri_dmg",0.05],["speed",3],["att_rate",0.06],["max_hp_rate",0.05],["att_rate",0.04],["cri_dmg",0.07],["max_hp_rate",0.06],["speed",4],["cri_dmg",0.06],["cri_dmg",0.03,"u"],["speed",1,"u"],["att_rate",0.03,"u"],["max_hp_rate",0.03,"u"]],"s":"ba01","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6b_u","ct":1708873580,"e":93750,"f":"set_acc","g":5,"id":2152014884,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["max_hp_rate",0.06],["att_rate",0.06],["res",0],["def_rate",0.07],["def_rate",0.06],["max_hp_rate",0.07],["res",0],["max_hp_rate",0.04],["max_hp_rate",0.05],["res",0.11,"c"],["max_hp_rate",0.05,"u"],["att_rate",0.01,"u"],["res",0.03,"u"],["def_rate",0.03,"u"]],"p":21884461,"s":"dcc0","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eal85b_u","ct":1708918581,"e":93863,"f":"set_speed","g":5,"id":2153414067,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["acc",0.07],["att_rate",0.07],["max_hp",0],["speed",4],["speed",3],["att_rate",0.08],["att_rate",0.06],["max_hp",0],["acc",0.07],["acc",0.03,"u"],["att_rate",0.04,"u"],["max_hp",112,"u"],["speed",1,"u"],["max_hp",309,"c","change2_max_hp_2_2"]],"p":899011010,"s":"baf4","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6n","ct":1708935431,"e":73922,"f":"set_speed","g":4,"id":2154045784,"l":true,"level":85,"mainStatBaseValue":0.11,"mainStatId":"cra6_neck_m","mainStatType":"cri","mainStatValue":0.55,"mg":1111,"op":[["cri",0.11],["speed",4],["acc",0.08],["cri_dmg",0.07],["acc",0.06],["speed",3],["speed",2],["def_rate",0.07],["speed",2]],"s":"da64","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6w_u","ct":1709015810,"e":93750,"f":"set_acc","g":5,"id":2156211616,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["att_rate",0.08],["speed",0],["cri_dmg",0.07],["acc",0.05],["att_rate",0.07],["cri_dmg",0.05],["att_rate",0.07],["cri_dmg",0.05],["acc",0.07],["att_rate",0.04,"u"],["speed",0,"u"],["cri_dmg",0.03,"u"],["acc",0.03,"u"],["speed",3,"c","change2_speed_1_2"]],"s":"6566","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eih9n","ct":1709016391,"e":93750,"f":"set_penetrate","g":5,"id":2156226369,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"imh_neck_m11","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["max_hp_rate",0.09],["cri",0.06],["speed",5],["att_rate",0.09],["speed",3],["speed",4],["speed",3],["max_hp_rate",0.07],["speed",3]],"p":618609916,"s":"2f74","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ela8r","ct":1709021074,"e":93862,"f":"set_max_hp","g":5,"id":2156341348,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"la8_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["def_rate",0.09],["speed",5],["res",0.09],["acc",0.09],["def_rate",0.05],["def_rate",0.08],["def_rate",0.07],["acc",0.06],["def_rate",0.07]],"p":893757497,"s":"35eb","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecs15w","ct":1709198551,"e":82031,"f":"set_speed","g":5,"id":2159926269,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"cs15_weap_m1","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.08],["speed",4],["res",0.08],["acc",0.08],["max_hp_rate",0.08],["res",0.07],["max_hp_rate",0.08],["acc",0.07],["acc",0.06]],"p":110838566,"s":"aea6","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eih4h","ct":1709214188,"e":3498,"f":"set_def","g":5,"id":2160337152,"level":88,"mainStatBaseValue":553,"mainStatId":"imh_helm_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["att_rate",0.05],["cri",0.04],["speed",3],["acc",0.09],["acc",0.05]],"s":"3efb","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eal85n_u","ct":1709274459,"e":93750,"f":"set_speed","g":5,"id":2161464314,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_neck_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,0],["cri_dmg",0.06],["cri",0.04],["res",0.08],["max_hp_rate",0.08],["res",0.07],["cri_dmg",0.06],["cri_dmg",0.05],["res",0.07],["cri_dmg",0.07],["cri_dmg",0.04,"u"],["cri",0.01,"u"],["res",0.04,"u"],["max_hp_rate",0.01,"u"]],"s":"3f41","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ela8h","ct":1709366505,"e":93862,"f":"set_speed","g":5,"id":2163380815,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"la8_helm_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["max_hp_rate",0.09],["speed",5],["res",0.09],["acc",0.09],["res",0.07],["res",0.05],["acc",0.06],["speed",4],["max_hp_rate",0.09]],"p":713631381,"s":"82d1","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"exc202001","ct":1709712739,"g":5,"id":2171220621,"mg":1111,"op":[["speed",10],["ek_c202001",3]],"s":"a480"},{"code":"exc202001","ct":1709712752,"g":5,"id":2171220939,"mg":1111,"op":[["speed",10],["ek_c202001",1]],"s":"2094"},{"code":"exc202001","ct":1709712936,"g":5,"id":2171224959,"l":true,"mg":1111,"op":[["speed",10],["ek_c202001",2]],"p":562155721,"s":"290a"},{"code":"ecw6a","ct":1709889907,"e":73922,"f":"set_speed","g":4,"id":2176808434,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["max_hp_rate",0.06],["speed",4],["acc",0.08],["speed",1],["speed",3],["speed",2],["res",0.06],["max_hp_rate",0.07]],"s":"dec7","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6w_u","ct":1709890142,"e":93750,"f":"set_speed","g":5,"id":2176821438,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["res",0.08],["cri_dmg",0.04],["speed",4],["att_rate",0.06],["res",0.05],["res",0.08],["att_rate",0.08],["speed",3],["cri_dmg",0.04],["res",0.04,"u"],["cri_dmg",0.02,"u"],["speed",1,"u"],["att_rate",0.03,"u"]],"p":713631381,"s":"7840","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecq6b","ct":1709952472,"f":"set_coop","g":5,"id":2179311086,"l":true,"level":85,"mainStatBaseValue":8,"mainStatId":"cra6_boot_m","mainStatType":"speed","mainStatValue":40,"mg":1111,"op":[["speed",8],["def_rate",0.06],["cri",0.05],["res",0.05],["att_rate",0.06]],"s":"8c35","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eiu32h","ct":1709988234,"e":93862,"f":"set_cri","g":5,"id":2180478765,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"iu32_helm_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["att_rate",0.07],["max_hp_rate",0.07],["cri",0.04],["cri_dmg",0.06],["cri_dmg",0.06],["cri_dmg",0.05],["cri_dmg",0.07],["att_rate",0.06],["cri",0.04]],"p":115835449,"s":"7e2c","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6r_u","ct":1710049208,"e":93863,"f":"set_acc","g":5,"id":2182640389,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"acc","mainStatValue":0.65,"mg":1111,"op":[["acc",0.13,null,null,0],["speed",3],["max_hp_rate",0.07],["att_rate",0.07],["res",0.07],["att_rate",0.08],["res",0.08],["speed",4],["max_hp_rate",0.08],["max_hp_rate",0.08],["speed",1,"u"],["max_hp_rate",0.04,"u"],["att_rate",0.03,"u"],["res",0.03,"u"]],"p":590699704,"s":"247","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6h","ct":1710054409,"e":73828,"f":"set_acc","g":4,"id":2183027208,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["max_hp_rate",0.07],["speed",3],["cri",0.04],["speed",4],["speed",3],["speed",2],["att_rate",0.06],["max_hp_rate",0.06]],"s":"8d48","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6w_u","ct":1710056355,"e":84375,"f":"set_speed","g":4,"id":2183176619,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["speed",2],["res",0.04],["acc",0.05],["speed",4],["speed",3],["res",0.04],["att_rate",0.07],["speed",3],["speed",3,"u"],["res",0.03,"u"],["acc",0.01,"u"],["att_rate",0.01,"u"]],"p":225876663,"s":"4bc9","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6h","ct":1710072742,"e":73924,"f":"set_acc","g":4,"id":2184381870,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["speed",3],["att",35],["max_hp_rate",0.08],["speed",4],["att",39],["speed",4],["acc",0.04],["att",42]],"p":323638178,"s":"c78","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6h","ct":1710081673,"f":"set_speed","g":4,"id":2185097428,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["cri",0.04],["cri_dmg",0.07],["res",0.08]],"p":440334191,"s":"3662","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6r_u","ct":1710082271,"e":84375,"f":"set_acc","g":4,"id":2185148258,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"acc","mainStatValue":0.65,"mg":1111,"op":[["acc",0.13,null,null,0],["def",30],["speed",2],["max_hp_rate",0],["speed",4],["speed",4],["speed",2],["cri_dmg",0.06],["max_hp_rate",0],["def",9,"u"],["speed",3,"u"],["max_hp_rate",0.03,"u"],["cri_dmg",0.01,"u"],["max_hp_rate",0.11,"c","change2_max_hp_rate_2_2"]],"p":403476926,"s":"52a4","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6h_u","ct":1710125285,"e":93750,"f":"set_speed","g":5,"id":2186430690,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["res",0.07],["def_rate",0.05],["speed",3],["max_hp_rate",0.05],["max_hp_rate",0.05],["max_hp_rate",0.08],["def_rate",0.04],["max_hp_rate",0.08],["speed",3],["res",0.01,"u"],["def_rate",0.03,"u"],["speed",1,"u"],["max_hp_rate",0.05,"u"]],"p":769932771,"s":"cb87","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6h_u","ct":1710125326,"e":93750,"f":"set_acc","g":5,"id":2186431865,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["cri",0.05],["max_hp_rate",0.08],["acc",0.07],["speed",3],["cri",0.04],["acc",0.08],["max_hp_rate",0.08],["max_hp_rate",0.08],["speed",4],["cri",0.02,"u"],["max_hp_rate",0.04,"u"],["acc",0.03,"u"],["speed",1,"u"]],"p":899011010,"s":"55c3","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6w","ct":1710126616,"e":18655,"f":"set_speed","g":5,"id":2186466517,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["att_rate",0.05],["cri_dmg",0.04],["cri",0.05],["res",0.06],["cri_dmg",0.07],["res",0.05],["res",0.05]],"p":440334191,"s":"3a5","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecs11r","ct":1710463521,"e":93861,"f":"set_max_hp","g":5,"id":2194259314,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"cs11_ring_m1","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["def_rate",0.08],["speed",4],["acc",0.08],["res",0.08],["speed",4],["def_rate",0.06],["def_rate",0.06],["acc",0.08],["res",0.07]],"p":226377978,"s":"5794","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eot3r_u4","ct":1710507219,"e":91773,"f":"set_vampire","g":5,"id":2196695880,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ot3u_ring_m4","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["cri",0.03],["att_rate",0.08],["cri_dmg",0.06],["def",33],["def",35],["cri",0.05],["cri",0.03],["att_rate",0.07]],"s":"22e8","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecb6a","ct":1710765143,"e":3964,"f":"set_counter","g":5,"id":2208228998,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["max_hp_rate",0.07],["res",0.05],["cri",0.04],["def_rate",0.04],["cri",0.03]],"s":"28f8","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6b_u","ct":1710768062,"e":93750,"f":"set_cri_dmg","g":5,"id":2208462837,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"def_rate","mainStatValue":0.65,"mg":1111,"op":[["def_rate",0.13,null,null,0],["max_hp_rate",0.05],["max_hp",0],["def",29],["res",0.08],["max_hp_rate",0.08],["max_hp_rate",0.04],["res",0.06],["res",0.08],["def",28],["max_hp_rate",0.04,"u"],["max_hp",56,"u"],["def",18,"u"],["res",0.04,"u"],["max_hp",160,"c","change2_max_hp_1_1"]],"p":893757497,"s":"d4a2","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecb6h","ct":1710812221,"e":1982,"f":"set_cri_dmg","g":5,"id":2210102316,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["speed",4],["max_hp_rate",0.08],["res",0.05],["acc",0.05],["max_hp_rate",0.08]],"s":"75b9","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6w_u","ct":1710812279,"e":93750,"f":"set_cri_dmg","g":5,"id":2210103803,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["cri",0],["speed",3],["att_rate",0.04],["max_hp_rate",0.05],["att_rate",0.05],["att_rate",0.07],["speed",3],["speed",4],["speed",3],["cri",0.01,"u"],["speed",3,"u"],["att_rate",0.04,"u"],["max_hp_rate",0.01,"u"],["cri",0.04,"c","change2_cri_1_1"]],"p":11185757,"s":"3b71","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecb6a_u","ct":1710812307,"e":93750,"f":"set_counter","g":5,"id":2210104511,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["speed",4],["cri",0.05],["def_rate",0.06],["max_hp_rate",0.06],["def_rate",0.08],["cri",0.05],["speed",3],["speed",2],["cri",0.05],["speed",2,"u"],["cri",0.03,"u"],["def_rate",0.03,"u"],["max_hp_rate",0.01,"u"]],"p":568689715,"s":"9e27","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6a","ct":1710812307,"e":73828,"f":"set_vampire","g":4,"id":2210104515,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["res",0.06],["speed",4],["cri",0.03],["speed",3],["speed",3],["speed",4],["max_hp",159],["cri",0.04]],"s":"32f0","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6w","ct":1710812698,"e":73828,"f":"set_res","g":4,"id":2210115802,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["cri",0.05],["cri_dmg",0.07],["speed",4],["cri_dmg",0.07],["cri",0.04],["cri_dmg",0.05],["max_hp_rate",0.04],["cri",0.03]],"s":"696b","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecb6h","ct":1710897942,"e":6704,"f":"set_vampire","g":5,"id":2212150491,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["max_hp_rate",0.08],["def",33],["cri",0.05],["att_rate",0.06],["max_hp_rate",0.06],["cri",0.03]],"s":"ef25","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eal85n_u","ct":1711087559,"e":93750,"f":"set_speed","g":5,"id":2216419210,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["att_rate",0.05],["speed",3],["res",0],["def",31],["speed",3],["speed",3],["speed",4],["res",0],["def",32],["att_rate",0.01,"u"],["speed",3,"u"],["res",0.03,"u"],["def",18,"u"],["res",0.1,"c","change2_res_2_2"]],"s":"99e1","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eal85n","ct":1711088204,"e":82031,"f":"set_speed","g":5,"id":2216442796,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"al85_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["att_rate",0.05],["att",34],["max_hp",163],["speed",4],["speed",3],["att",33],["max_hp",196],["att_rate",0.06],["max_hp",189]],"p":166490,"s":"e1b7","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecb6a","ct":1711340064,"e":73828,"f":"set_counter","g":4,"id":2224920636,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["def_rate",0.08],["speed",3],["max_hp_rate",0.08],["speed",4],["max_hp_rate",0.08],["speed",3],["cri_dmg",0.07],["def_rate",0.06]],"s":"6003","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6a","ct":1711356508,"e":2973,"f":"set_vampire","g":5,"id":2225731924,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["acc",0.08],["res",0.04],["speed",4],["max_hp_rate",0.04],["max_hp_rate",0.06]],"s":"5f92","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6w","ct":1711368370,"e":73923,"f":"set_vampire","g":4,"id":2226334464,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["cri",0.04],["speed",2],["cri_dmg",0.07],["speed",3],["speed",3],["speed",4],["acc",0.04],["acc",0.08]],"s":"811e","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecb6a","ct":1711425671,"e":82031,"f":"set_vampire","g":5,"id":2228126615,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["def_rate",0.05],["max_hp_rate",0.08],["acc",0.08],["res",0.04],["acc",0.08],["acc",0.04],["acc",0.04],["res",0.05],["acc",0.07]],"s":"60b4","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6a_u","ct":1711425706,"e":84375,"f":"set_res","g":4,"id":2228127402,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp_rate",0.07],["res",0.05],["def_rate",0.08],["def_rate",0.07],["res",0.08],["def_rate",0.07],["acc",0.07],["def_rate",0.06],["max_hp_rate",0.01,"u"],["res",0.03,"u"],["def_rate",0.05,"u"],["acc",0.01,"u"]],"p":713631381,"s":"4541","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eiu12b","ct":1711460956,"f":"set_shield","g":5,"id":2228948935,"l":true,"level":88,"mainStatBaseValue":9,"mainStatId":"iu12_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9],["res",0.07],["max_hp_rate",0.07],["def_rate",0.07],["acc",0.07]],"s":"d956","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eih6r","ct":1711524757,"e":93862,"f":"set_immune","g":5,"id":2230045201,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"imh_ring_m3","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["res",0.06],["acc",0.08],["cri",0.04],["att_rate",0.08],["att_rate",0.07],["att_rate",0.06],["res",0.05],["cri",0.03],["res",0.05]],"s":"8c17","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eiu51b","ct":1711524757,"e":93750,"f":"set_speed","g":5,"id":2230045203,"l":true,"level":88,"mainStatBaseValue":9,"mainStatId":"iu51_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9],["max_hp_rate",0.09],["def_rate",0.09],["res",0.09],["acc",0.09],["max_hp_rate",0.05],["res",0.08],["res",0.06],["def_rate",0.09],["acc",0.06]],"s":"2f25","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eiu22a","ct":1711631354,"e":93750,"f":"set_penetrate","g":5,"id":2232095205,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"iu22_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.07],["def_rate",0.07],["cri",0.05],["cri_dmg",0.06],["cri",0.05],["def_rate",0.07],["cri_dmg",0.05],["max_hp_rate",0.06],["cri",0.06]],"p":847822619,"s":"fddd","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eih9r","ct":1711631477,"e":93920,"f":"set_res","g":5,"id":2232099646,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"imh_ring_m11","mainStatType":"res","mainStatValue":0.65,"mg":1111,"op":[["res",0.13],["max_hp_rate",0.09],["def_rate",0.09],["speed",5],["acc",0.09],["acc",0.09],["max_hp_rate",0.08],["max_hp_rate",0.08],["acc",0.09],["speed",4]],"p":636577158,"s":"a953","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecb6a_u","ct":1711681401,"e":93862,"f":"set_counter","g":5,"id":2233107404,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["speed",2],["cri",0.05],["def_rate",0.08],["max_hp_rate",0.05],["def_rate",0.04],["speed",4],["cri",0.04],["cri",0.03],["speed",4],["speed",2,"u"],["cri",0.03,"u"],["def_rate",0.03,"u"],["max_hp_rate",0.01,"u"]],"s":"d6ee","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6a_u","ct":1711681457,"e":93750,"f":"set_vampire","g":5,"id":2233108959,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp_rate",0.08],["cri_dmg",0.06],["res",0.06],["speed",3],["speed",4],["res",0.04],["cri_dmg",0.07],["cri_dmg",0.06],["cri_dmg",0.05],["max_hp_rate",0.01,"u"],["cri_dmg",0.04,"u"],["res",0.03,"u"],["speed",1,"u"]],"s":"b2c1","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6a_u","ct":1711681520,"e":84375,"f":"set_res","g":4,"id":2233110737,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["acc",0.07],["speed",4],["res",0.07],["res",0.04],["speed",4],["res",0.06],["max_hp_rate",0.08],["speed",3],["acc",0.01,"u"],["speed",2,"u"],["res",0.04,"u"],["max_hp_rate",0.01,"u"]],"p":28398305,"s":"6e31","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"exc109101","ct":1711857997,"g":5,"id":2237102003,"l":true,"mg":1111,"op":[["res",0.09],["ek_c109101",2]],"p":636577158,"s":"6340"},{"code":"eal85n_u","ct":1711858473,"e":93863,"f":"set_counter","g":5,"id":2237115399,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["acc",0.08],["def_rate",0.06],["cri",0.05],["cri_dmg",0.07],["cri",0.04],["cri_dmg",0.07],["acc",0.08],["def_rate",0.08],["cri_dmg",0.07],["acc",0.03,"u"],["def_rate",0.03,"u"],["cri",0.02,"u"],["cri_dmg",0.03,"u"]],"s":"5465","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"exc110101","ct":1711859192,"g":5,"id":2237136940,"l":true,"mg":1111,"op":[["speed",7],["ek_c110101",1]],"p":568689715,"s":"a6cf"},{"code":"exc110101","ct":1711859199,"g":5,"id":2237137145,"l":true,"mg":1111,"op":[["speed",10],["ek_c110101",3]],"s":"f9bf"},{"code":"ecb6w_u","ct":1711934480,"e":93862,"f":"set_res","g":5,"id":2238763993,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["acc",0.05],["cri",0.04],["max_hp_rate",0.07],["res",0.07],["res",0.06],["cri",0.04],["cri",0.04],["res",0.08],["max_hp_rate",0.04],["acc",0.01,"u"],["cri",0.03,"u"],["max_hp_rate",0.03,"u"],["res",0.04,"u"]],"p":6885517,"s":"1c49","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecb6h","ct":1711934480,"e":3964,"f":"set_vampire","g":5,"id":2238763994,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["att",43],["cri_dmg",0.06],["acc",0.08],["speed",4],["acc",0.07]],"s":"cd1","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eal85n_u","ct":1711943062,"e":93750,"f":"set_res","g":5,"id":2238992507,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["res",0.08],["speed",2],["cri",0.05],["att_rate",0.04],["att_rate",0.08],["att_rate",0.04],["att_rate",0.08],["att_rate",0.06],["cri",0.05],["res",0.01,"u"],["cri",0.02,"u"],["att_rate",0.07,"u"]],"s":"8141","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eiu41a","ct":1711961614,"e":93750,"f":"set_counter","g":5,"id":2239472709,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"iu41_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.06],["def_rate",0.06],["speed",4],["res",0.06],["res",0.07],["speed",4],["res",0.06],["res",0.09],["max_hp_rate",0.08]],"p":559859824,"s":"f7c","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eah22w","ct":1712021329,"e":93750,"f":"set_immune","g":5,"id":2240779763,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"ah22_weap_m1","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.07],["att_rate",0.07],["speed",5],["cri",0.05],["cri",0.05],["max_hp_rate",0.06],["speed",4],["cri",0.04],["att_rate",0.09]],"s":"0","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eal85b_u","ct":1712314770,"e":93750,"f":"set_cri_dmg","g":5,"id":2249488507,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["cri_dmg",0.06],["cri",0],["def_rate",0.08],["att_rate",0.05],["att_rate",0.05],["att_rate",0.04],["cri_dmg",0.05],["cri_dmg",0.07],["def_rate",0.08],["cri",0.04,"c"],["cri_dmg",0.03,"u"],["cri",0.01,"u"],["def_rate",0.03,"u"],["att_rate",0.04,"u"]],"p":704271358,"s":"bb5d","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecg6a","ct":1712451845,"e":9852,"f":"set_shield","g":5,"id":2253346580,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["max_hp_rate",0.06],["acc",0.06],["speed",4],["def_rate",0.04],["acc",0.04],["def_rate",0.07]],"s":"a51","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eal85r_u","ct":1712542817,"e":93862,"f":"set_cri_dmg","g":5,"id":2257469979,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,0],["cri",0.03],["cri_dmg",0],["def_rate",0.06],["max_hp_rate",0.05],["cri_dmg",0],["cri_dmg",0],["max_hp_rate",0.07],["max_hp_rate",0.04],["def_rate",0.05],["cri",0.01,"u"],["cri_dmg",0.03,"u"],["def_rate",0.03,"u"],["max_hp_rate",0.04,"u"],["cri_dmg",0.12,"c","change2_cri_dmg_3_2"]],"p":591089796,"s":"2c24","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"exc109101","ct":1712548564,"g":5,"id":2257774540,"mg":1111,"op":[["res",0.13],["ek_c109101",3]],"s":"5220"},{"code":"exc109101","ct":1712548644,"g":5,"id":2257778861,"l":true,"mg":1111,"op":[["res",0.16],["ek_c109101",1]],"s":"8f1f"},{"code":"eal85b_u","ct":1712736647,"e":93750,"f":"set_speed","g":5,"id":2263136846,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["max_hp_rate",0.04],["def_rate",0.07],["def",32],["cri_dmg",0.07],["def_rate",0.07],["max_hp_rate",0.05],["cri_dmg",0.06],["def_rate",0.07],["def_rate",0.06],["max_hp_rate",0.03,"u"],["def_rate",0.05,"u"],["def",9,"u"],["cri_dmg",0.02,"u"]],"s":"4378","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6b_u","ct":1712892905,"e":93750,"f":"set_cri","g":5,"id":2265984311,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["cri_dmg",0.04],["att",38],["acc",0.08],["att_rate",0.06],["cri_dmg",0.06],["cri_dmg",0.07],["cri_dmg",0.06],["att_rate",0.05],["acc",0.08],["cri_dmg",0.04,"u"],["att",11,"u"],["acc",0.03,"u"],["att_rate",0.03,"u"]],"s":"44b","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eah21r","ct":1713025254,"e":93750,"f":"set_cri_dmg","g":5,"id":2268832536,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ah21_ring_m1","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["speed",5],["cri",0.05],["cri_dmg",0.06],["max_hp_rate",0.07],["cri_dmg",0.08],["cri_dmg",0.06],["cri_dmg",0.06],["cri_dmg",0.04],["speed",4]],"p":899521626,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eal85n_u","ct":1713147840,"e":93803,"f":"set_vampire","g":5,"id":2271281400,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_neck_m","mainStatType":"def_rate","mainStatValue":0.65,"mg":1111,"op":[["def_rate",0.13,null,null,0],["cri",0],["speed",2],["cri_dmg",0.07],["res",0.05],["speed",2],["cri_dmg",0.04],["res",0.05],["cri_dmg",0.05],["cri",0],["cri",0.02,"u"],["speed",1,"u"],["cri_dmg",0.03,"u"],["res",0.03,"u"],["cri",0.06,"c","change2_cri_2_1"]],"s":"707a","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eah23n","ct":1713776806,"e":93750,"f":"set_counter","g":5,"id":2284288170,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"ah23_neck_m1","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["cri",0.05],["max_hp_rate",0.07],["def_rate",0.07],["speed",5],["speed",3],["speed",4],["speed",3],["def_rate",0.05],["def_rate",0.05]],"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"exc112901","ct":1714034144,"g":5,"id":2289973254,"mg":1111,"op":[["res",0.13],["ek_c112901",3]],"s":"a6c4"},{"code":"exc112901","ct":1714034148,"g":5,"id":2289973428,"mg":1111,"op":[["res",0.14],["ek_c112901",3]],"s":"7c80"},{"code":"exc112901","ct":1714034151,"g":5,"id":2289973579,"mg":1111,"op":[["res",0.12],["ek_c112901",1]],"s":"3cad"},{"code":"exc112901","ct":1714034156,"g":5,"id":2289973699,"mg":1111,"op":[["res",0.15],["ek_c112901",3]],"p":48988520,"s":"51c4"},{"code":"exc112901","ct":1714034168,"g":5,"id":2289974253,"mg":1111,"op":[["res",0.13],["ek_c112901",2]],"s":"8191"},{"code":"ecs5w","ct":1714049426,"f":"set_scar","g":5,"id":2290581263,"l":true,"level":78,"mainStatBaseValue":95,"mainStatId":"cs5_weap_m1","mainStatType":"att","mainStatValue":475,"mg":1111,"op":[["att",95],["att_rate",0.07],["speed",4],["cri",0.04],["acc",0.07]],"s":"c0ca","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eiu21r","ct":1714122430,"e":93750,"f":"set_speed","g":5,"id":2292196268,"level":88,"mainStatBaseValue":0.13,"mainStatId":"iu21_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["def_rate",0.07],["speed",3],["cri",0.04],["res",0.07],["def_rate",0.05],["cri",0.05],["cri",0.04],["cri",0.06],["def_rate",0.06]],"p":350226992,"s":"3b64","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecb6n_u","ct":1714231161,"e":84375,"f":"set_res","g":4,"id":2296597756,"l":true,"level":90,"mainStatBaseValue":0.14,"mainStatId":"cra7_neck_m","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14,null,null,0],["speed",4],["cri",0.05],["def_rate",0.06],["def_rate",0.05],["def_rate",0.07],["cri",0.04],["max_hp_rate",0],["def_rate",0.07],["cri",0.02,"u"],["def_rate",0.05,"u"],["max_hp_rate",0.01,"u"],["max_hp_rate",0.06,"c","change2_max_hp_rate_1_1"]],"s":"e075","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eep_w","ct":1714284409,"e":93750,"f":"set_speed","g":5,"id":2298865302,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"ep_weapon_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["att_rate",0.08],["max_hp",188],["max_hp_rate",0.09],["cri",0.03],["max_hp",196],["att_rate",0.07],["cri",0.05],["max_hp",178],["max_hp",202]],"s":"2add","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eep_a","ct":1714284422,"e":93862,"f":"set_speed","g":5,"id":2298866017,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"ep_armor_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["cri_dmg",0.08],["speed",3],["acc",0.07],["res",0.07],["speed",3],["acc",0.07],["res",0.08],["cri_dmg",0.08],["speed",3]],"p":279573776,"s":"6db7","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eep_n","ct":1714284436,"e":93750,"f":"set_speed","g":5,"id":2298866778,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ep_neck_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["att",0],["cri",0.03],["cri_dmg",0.05],["speed",4],["cri_dmg",0.07],["speed",4],["cri_dmg",0.04],["speed",3],["speed",4],["att",43,"c","change2_att_1_2"]],"p":518782830,"s":"b7b8","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eal85n_u","ct":1714284692,"e":93750,"f":"set_speed","g":5,"id":2298881181,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["cri",0.03],["speed",2],["att_rate",0.06],["acc",0.05],["cri",0.04],["acc",0.07],["speed",3],["cri",0.05],["att_rate",0.08],["cri",0.03,"u"],["speed",1,"u"],["att_rate",0.03,"u"],["acc",0.03,"u"]],"p":6885517,"s":"aa0f","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eiu52r","ct":1714293950,"e":93750,"f":"set_counter","g":5,"id":2299390917,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"iu52_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["max_hp_rate",0.07],["def_rate",0.07],["speed",3],["cri_dmg",0.06],["max_hp_rate",0.05],["speed",4],["def_rate",0.06],["max_hp_rate",0.07],["def_rate",0.07]],"s":"edab","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eih9n","ct":1714294051,"e":93750,"f":"set_penetrate","g":5,"id":2299396303,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"imh_neck_m11","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["max_hp_rate",0.09],["cri",0.06],["speed",5],["att_rate",0.09],["speed",4],["cri",0.03],["cri",0.05],["cri",0.04],["cri",0.04]],"p":568689715,"s":"b570","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eal85n_u","ct":1714295058,"e":93750,"f":"set_torrent","g":5,"id":2299448611,"l":true,"level":90,"mainStatBaseValue":0.14,"mainStatId":"cra7_neck_m","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14,null,null,0],["res",0],["speed",2],["att",34],["att_rate",0.07],["att",37],["att",41],["att_rate",0.04],["speed",3],["res",0],["res",0.1,"c"],["res",0.03,"u"],["speed",1,"u"],["att",33,"u"],["att_rate",0.03,"u"]],"p":49161666,"s":"e0c1","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eiu31n","ct":1714357889,"e":93750,"f":"set_vampire","g":5,"id":2302140953,"l":true,"level":88,"mainStatBaseValue":0.12,"mainStatId":"iu31_neck_m","mainStatType":"cri","mainStatValue":0.6,"mg":1111,"op":[["cri",0.12],["max_hp_rate",0.07],["def_rate",0.07],["speed",3],["cri_dmg",0.06],["speed",4],["cri_dmg",0.04],["speed",4],["speed",3],["max_hp_rate",0.06]],"s":"ba6c","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6a_u","ct":1714372187,"e":93750,"f":"set_speed","g":5,"id":2302877324,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["speed",4],["max_hp_rate",0.05],["cri_dmg",0.06],["def_rate",0.06],["def_rate",0.05],["max_hp_rate",0.08],["def_rate",0.08],["def_rate",0.08],["cri_dmg",0.05],["max_hp_rate",0.03,"u"],["cri_dmg",0.02,"u"],["def_rate",0.05,"u"]],"s":"25b2","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a","ct":1714372449,"f":"set_acc","g":5,"id":2302890195,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["cri_dmg",0.04],["cri",0.04],["def_rate",0.08],["res",0.07]],"s":"f6eb","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a_u","ct":1714372535,"e":93750,"f":"set_speed","g":5,"id":2302894522,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["acc",0.08],["def_rate",0.08],["max_hp_rate",0],["speed",4],["def_rate",0.04],["def_rate",0.04],["acc",0.08],["acc",0.08],["def_rate",0.05],["acc",0.04,"u"],["def_rate",0.05,"u"],["max_hp_rate",0.01,"u"],["max_hp_rate",0.07,"c","change2_max_hp_rate_1_2"]],"p":403476926,"s":"9a31","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a","ct":1714372736,"e":73828,"f":"set_speed","g":4,"id":2302903744,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["cri",0.04],["speed",3],["res",0.05],["res",0.07],["res",0.04],["speed",4],["acc",0.08],["cri",0.04]],"s":"f38b","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a","ct":1714372736,"e":73863,"f":"set_cri","g":4,"id":2302903748,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["acc",0.05],["speed",3],["cri",0.05],["speed",2],["speed",2],["speed",4],["cri_dmg",0.07],["acc",0.08]],"s":"a5d7","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a","ct":1714372767,"f":"set_speed","g":5,"id":2302905160,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["cri_dmg",0.07],["acc",0.06],["max_hp",165],["max_hp_rate",0.04]],"p":440334191,"s":"a10b","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a_u","ct":1714372767,"e":84375,"f":"set_acc","g":4,"id":2302905165,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["res",0.05],["speed",4],["max_hp",184],["speed",4],["speed",3],["speed",3],["cri",0.04],["res",0.08],["res",0.03,"u"],["speed",3,"u"],["max_hp",56,"u"],["cri",0.01,"u"]],"p":559859822,"s":"9502","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a","ct":1714372794,"e":82031,"f":"set_acc","g":5,"id":2302906497,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["cri_dmg",0.05],["acc",0.08],["res",0.05],["cri",0.05],["acc",0.08],["acc",0.05],["acc",0.08],["res",0.07],["acc",0.07]],"s":"be91","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a_u","ct":1714372845,"e":93805,"f":"set_speed","g":5,"id":2302908784,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp_rate",0.08],["cri",0.05],["cri_dmg",0.06],["speed",3],["cri_dmg",0.05],["max_hp_rate",0.08],["max_hp_rate",0.08],["cri",0.05],["speed",4],["max_hp_rate",0.04,"u"],["cri",0.02,"u"],["cri_dmg",0.02,"u"],["speed",1,"u"]],"p":350226992,"s":"ac27","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a_u","ct":1714372977,"e":93805,"f":"set_speed","g":5,"id":2302915221,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["speed",4],["def_rate",0.07],["cri",0.04],["cri_dmg",0.07],["def_rate",0.04],["cri_dmg",0.04],["speed",3],["def_rate",0.08],["cri_dmg",0.07],["speed",1,"u"],["def_rate",0.04,"u"],["cri",0.01,"u"],["cri_dmg",0.03,"u"]],"s":"38c2","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eal85b_u","ct":1714654886,"e":93750,"f":"set_speed","g":5,"id":2313852169,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["cri",0.05],["def",30],["max_hp",191],["max_hp_rate",0.07],["cri",0.04],["max_hp",166],["max_hp",187],["max_hp_rate",0.04],["max_hp",196],["cri",0.02,"u"],["def",9,"u"],["max_hp",224,"u"],["max_hp_rate",0.03,"u"]],"p":739641017,"s":"ea97","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eal85b_u","ct":1714654912,"e":93805,"f":"set_speed","g":5,"id":2313853560,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["att",38],["att_rate",0.08],["max_hp_rate",0.05],["max_hp",193],["max_hp",201],["att",39],["att",46],["max_hp",200],["max_hp",161],["att",33,"u"],["att_rate",0.01,"u"],["max_hp_rate",0.01,"u"],["max_hp",224,"u"]],"p":898971885,"s":"bd02","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecb6a","ct":1714656508,"e":1982,"f":"set_cri_dmg","g":5,"id":2313936220,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["def_rate",0.08],["max_hp_rate",0.05],["speed",4],["res",0.07],["max_hp_rate",0.06]],"p":28393107,"s":"2ec5","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6h","ct":1714795035,"e":73828,"f":"set_acc","g":4,"id":2319231336,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["cri_dmg",0.05],["cri",0.03],["speed",4],["speed",3],["speed",4],["cri_dmg",0.07],["res",0.06],["cri_dmg",0.06]],"s":"6835","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6h_u","ct":1714795035,"e":93750,"f":"set_speed","g":5,"id":2319231341,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["def_rate",0.06],["acc",0.07],["speed",2],["res",0.05],["def_rate",0.05],["acc",0.08],["res",0.05],["speed",4],["acc",0.07],["def_rate",0.03,"u"],["acc",0.04,"u"],["speed",1,"u"],["res",0.03,"u"]],"p":166490,"s":"78f9","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6h_u","ct":1714795252,"e":93750,"f":"set_speed","g":5,"id":2319240618,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["cri",0],["speed",4],["att_rate",0.05],["cri_dmg",0.06],["att_rate",0.08],["cri",0],["speed",4],["cri_dmg",0.04],["att_rate",0.08],["cri",0.02,"u"],["speed",1,"u"],["att_rate",0.04,"u"],["cri_dmg",0.02,"u"],["cri",0.05,"c","change2_cri_2_1"]],"s":"15d9","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eiu41a","ct":1714803060,"e":93862,"f":"set_counter","g":5,"id":2319570044,"level":88,"mainStatBaseValue":62,"mainStatId":"iu41_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.06],["def_rate",0.06],["speed",4],["res",0.06],["res",0.09],["max_hp_rate",0.09],["def_rate",0.08],["max_hp_rate",0.05],["res",0.07]],"s":"9091","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6h_u","ct":1714869304,"e":93750,"f":"set_cri","g":5,"id":2321814545,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["cri_dmg",0.07],["max_hp_rate",0.07],["speed",0],["cri",0.04],["cri_dmg",0.05],["cri_dmg",0.04],["max_hp_rate",0.07],["cri",0.03],["cri_dmg",0.05],["speed",3,"c"],["cri_dmg",0.04,"u"],["max_hp_rate",0.03,"u"],["cri",0.02,"u"]],"s":"1b53","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eah23r","ct":1715070139,"e":93750,"f":"set_counter","g":5,"id":2327785535,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ah23_ring_m1","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["att_rate",0.07],["cri",0.05],["def_rate",0.07],["speed",5],["speed",4],["att_rate",0.05],["att_rate",0.06],["def_rate",0.09],["att_rate",0.05]],"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"exc101401","ct":1715132984,"g":5,"id":2329599513,"mg":1111,"op":[["acc",0.13],["ek_c101401",1]],"s":"4567"},{"code":"exc101401","ct":1715132991,"g":5,"id":2329599688,"mg":1111,"op":[["acc",0.15],["ek_c101401",1]],"s":"ee39"},{"code":"exc101401","ct":1715132995,"g":5,"id":2329599856,"mg":1111,"op":[["acc",0.14],["ek_c101401",1]],"s":"f8e7"},{"code":"exc101401","ct":1715133007,"g":5,"id":2329600327,"mg":1111,"op":[["acc",0.11],["ek_c101401",2]],"s":"6cb0"},{"code":"exc101401","ct":1715133011,"g":5,"id":2329600465,"mg":1111,"op":[["acc",0.15],["ek_c101401",3]],"p":440334191,"s":"7461"},{"code":"ecs16n","ct":1715325668,"e":93804,"f":"set_speed","g":5,"id":2335875526,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"cs16_neck_m1","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["att_rate",0.08],["def_rate",0.08],["speed",4],["cri",0.05],["att_rate",0.05],["speed",3],["speed",4],["att_rate",0.06],["def_rate",0.09]],"p":110853212,"s":"23e3","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecd6b","ct":1715333083,"e":1982,"f":"set_penetrate","g":5,"id":2336073694,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_boot_m","mainStatType":"def_rate","mainStatValue":0.6,"mg":1111,"op":[["def_rate",0.12],["cri",0.03],["att_rate",0.07],["speed",4],["cri_dmg",0.06],["cri",0.05]],"s":"8fb7","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecd6w_u","ct":1715349307,"e":93805,"f":"set_penetrate","g":5,"id":2336602419,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["att_rate",0.08],["max_hp_rate",0.07],["cri_dmg",0.05],["speed",4],["max_hp_rate",0.07],["cri_dmg",0.06],["max_hp_rate",0.07],["max_hp_rate",0.07],["att_rate",0.05],["att_rate",0.03,"u"],["max_hp_rate",0.05,"u"],["cri_dmg",0.02,"u"]],"p":736028830,"s":"f6b2","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6a","ct":1715351899,"e":82031,"f":"set_speed","g":5,"id":2336706788,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["speed",4],["cri",0.04],["max_hp_rate",0.06],["res",0.04],["max_hp_rate",0.06],["speed",2],["cri",0.04],["speed",3],["cri",0.05]],"s":"fe32","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a_u","ct":1715351924,"e":93750,"f":"set_speed","g":5,"id":2336707733,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["speed",0],["acc",0.07],["res",0.08],["max_hp_rate",0.07],["acc",0.06],["acc",0.08],["max_hp_rate",0.04],["max_hp_rate",0.07],["speed",0],["speed",4,"c"],["speed",1,"u"],["acc",0.04,"u"],["res",0.01,"u"],["max_hp_rate",0.04,"u"]],"p":306770592,"s":"ffba","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6r","ct":1715396094,"e":9852,"f":"set_speed","g":5,"id":2338046039,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["att_rate",0.07],["res",0.07],["def",28],["acc",0.06],["att_rate",0.04],["def",29]],"s":"6216","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eiu52w","ct":1715409594,"e":93750,"f":"set_max_hp","g":5,"id":2338606438,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"iu52_weap_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.08],["speed",4],["res",0.08],["acc",0.08],["res",0.09],["acc",0.07],["speed",4],["speed",4],["res",0.06]],"p":354206748,"s":"1f9e","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eiu21h","ct":1715413306,"e":3498,"f":"set_res","g":5,"id":2338748442,"level":88,"mainStatBaseValue":553,"mainStatId":"iu21_helm_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["max_hp_rate",0.07],["def_rate",0.07],["speed",3],["acc",0.07],["max_hp_rate",0.08]],"s":"15fd","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eiu11b","ct":1715416248,"e":35679,"f":"set_def","g":5,"id":2338856716,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"iu11_boot_m","mainStatType":"def_rate","mainStatValue":0.65,"mg":1111,"op":[["def_rate",0.13],["max_hp_rate",0.06],["acc",0.06],["speed",4],["cri",0.04],["acc",0.08],["acc",0.05],["cri",0.03]],"s":"b8b0","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecd6r","ct":1715435678,"f":"set_penetrate","g":5,"id":2339655257,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"acc","mainStatValue":0.6,"mg":1111,"op":[["acc",0.12],["att",42],["res",0.04],["cri",0.05],["max_hp_rate",0.06]],"p":440334191,"s":"5278","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecd6a","ct":1715440165,"e":6996,"f":"set_penetrate","g":5,"id":2339877851,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["res",0.08],["cri",0.05],["cri_dmg",0.04],["def_rate",0.06],["cri_dmg",0.06],["def_rate",0.06]],"s":"9572","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6n","ct":1715613061,"e":82031,"f":"set_speed","g":5,"id":2345668837,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["att_rate",0.05],["cri_dmg",0.04],["def_rate",0.08],["speed",2],["speed",3],["def_rate",0.04],["def_rate",0.04],["def_rate",0.06],["att_rate",0.08]],"s":"c071","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6a_u","ct":1715615453,"e":93750,"f":"set_speed","g":5,"id":2345753123,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri_dmg",0.05],["speed",2],["cri",0.03],["res",0.07],["speed",4],["cri_dmg",0.05],["speed",4],["cri_dmg",0.04],["speed",2],["cri_dmg",0.03,"u"],["speed",3,"u"],["cri",0.01,"u"],["res",0.01,"u"]],"s":"fdfe","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6b_u","ct":1715697730,"e":93750,"f":"set_speed","g":5,"id":2347798000,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["cri",0.05],["att",39],["cri_dmg",0.04],["att_rate",0.07],["att_rate",0.06],["cri_dmg",0.05],["cri_dmg",0.06],["cri",0.04],["cri_dmg",0.04],["cri",0.02,"u"],["att",11,"u"],["cri_dmg",0.04,"u"],["att_rate",0.03,"u"]],"p":892353109,"s":"249b","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eal85b_u","ct":1715740101,"e":93750,"f":"set_speed","g":5,"id":2348733488,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["def_rate",0.08],["max_hp_rate",0.07],["cri_dmg",0.07],["att_rate",0.07],["att_rate",0.04],["att_rate",0.07],["cri_dmg",0.05],["def_rate",0.06],["cri_dmg",0.05],["def_rate",0.03,"u"],["max_hp_rate",0.01,"u"],["cri_dmg",0.03,"u"],["att_rate",0.04,"u"]],"p":897188455,"s":"7a14","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecs16h","ct":1715935840,"e":82143,"f":"set_cri","g":5,"id":2353346116,"l":true,"level":78,"mainStatBaseValue":513,"mainStatId":"cs16_helm_m1","mainStatType":"max_hp","mainStatValue":2565,"mg":1111,"op":[["max_hp",513],["att_rate",0.07],["speed",4],["cri",0.04],["cri_dmg",0.06],["cri_dmg",0.05],["cri_dmg",0.05],["cri_dmg",0.05],["speed",2],["att_rate",0.05]],"s":"3939","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"exc203501","ct":1715936014,"g":5,"id":2353349957,"mg":1111,"op":[["max_hp_rate",0.12],["ek_c203501",1]],"p":604874070,"s":"af06"},{"code":"exc203501","ct":1715936017,"g":5,"id":2353350030,"mg":1111,"op":[["max_hp_rate",0.1],["ek_c203501",3]],"s":"41e6"},{"code":"exc203501","ct":1715936023,"g":5,"id":2353350162,"l":true,"mg":1111,"op":[["max_hp_rate",0.11],["ek_c203501",2]],"s":"5291"},{"code":"ecw6r","ct":1716017682,"e":82031,"f":"set_speed","g":5,"id":2355528955,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"def_rate","mainStatValue":0.6,"mg":1111,"op":[["def_rate",0.12],["def",32],["res",0.08],["att_rate",0.08],["acc",0.08],["acc",0.06],["res",0.05],["att_rate",0.07],["acc",0.05],["acc",0.04]],"s":"f079","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6b_u","ct":1716017699,"e":93804,"f":"set_speed","g":5,"id":2355529586,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["max_hp_rate",0.08],["cri",0.04],["cri_dmg",0.06],["def_rate",0.06],["cri_dmg",0.06],["def_rate",0.07],["cri_dmg",0.04],["def_rate",0.08],["cri_dmg",0.07],["max_hp_rate",0.01,"u"],["cri",0.01,"u"],["cri_dmg",0.04,"u"],["def_rate",0.04,"u"]],"p":225876663,"s":"4302","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eih9n","ct":1716102374,"e":93750,"f":"set_penetrate","g":5,"id":2358228066,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"imh_neck_m11","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["max_hp_rate",0.09],["cri",0.06],["speed",5],["att_rate",0.09],["att_rate",0.05],["speed",4],["cri",0.03],["max_hp_rate",0.09],["speed",4]],"p":350226992,"s":"2207","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eih6w","ct":1716102377,"e":93861,"f":"set_speed","g":5,"id":2358228155,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"imh_wepo_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.09],["att_rate",0.09],["speed",5],["cri",0.06],["speed",3],["max_hp_rate",0.07],["cri",0.04],["att_rate",0.09],["max_hp_rate",0.08]],"p":241191727,"s":"86b5","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6a","ct":1716176034,"e":2973,"f":"set_speed","g":5,"id":2360180905,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["def_rate",0.04],["acc",0.06],["max_hp",186],["speed",3],["def_rate",0.04]],"p":627243561,"s":"8acc","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6r","ct":1716791646,"f":"set_speed","g":5,"id":2374695794,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["max_hp_rate",0.04],["res",0.05],["acc",0.06],["max_hp",194]],"p":627243561,"s":"9b0e","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6n_u","ct":1716823981,"e":93750,"f":"set_speed","g":5,"id":2375949179,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["att_rate",0.07],["def",32],["acc",0.07],["speed",4],["speed",3],["acc",0.05],["def",34],["acc",0.08],["speed",3],["att_rate",0.01,"u"],["def",18,"u"],["acc",0.04,"u"],["speed",2,"u"]],"p":559859822,"s":"d8f4","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6w_u","ct":1716963954,"e":93805,"f":"set_speed","g":5,"id":2379388704,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["att_rate",0],["speed",4],["cri",0.03],["cri_dmg",0.06],["speed",3],["att_rate",0],["speed",4],["speed",4],["cri",0.05],["att_rate",0.1,"c"],["att_rate",0.03,"u"],["speed",3,"u"],["cri",0.02,"u"],["cri_dmg",0.01,"u"]],"p":583954927,"s":"25b3","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6h","ct":1716982540,"e":73922,"f":"set_speed","g":4,"id":2379804268,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["acc",0.04],["max_hp_rate",0.06],["speed",4],["speed",3],["acc",0.08],["speed",4],["def",28],["acc",0.07]],"s":"c39e","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ela9b","ct":1717033015,"e":93863,"f":"set_acc","g":5,"id":2381087442,"l":true,"level":88,"mainStatBaseValue":9,"mainStatId":"la9_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9],["max_hp_rate",0.09],["att_rate",0.09],["def_rate",0.09],["acc",0.09],["def_rate",0.08],["def_rate",0.06],["acc",0.05],["acc",0.06],["att_rate",0.06]],"p":313109293,"s":"bf1f","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ela9n","ct":1717033038,"e":93804,"f":"set_torrent","g":5,"id":2381088269,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"la9_neck_m","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["att_rate",0.09],["def_rate",0.09],["speed",5],["cri",0.06],["speed",4],["cri",0.05],["cri",0.03],["speed",3],["def_rate",0.07]],"p":11185757,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ela9w","ct":1717126810,"e":93750,"f":"set_penetrate","g":5,"id":2384321147,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"la9_wepo_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.09],["att_rate",0.09],["speed",5],["cri",0.06],["speed",3],["speed",4],["speed",4],["speed",4],["speed",4]],"p":897188455,"s":"0","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eal85b_u","ct":1717292946,"e":93805,"f":"set_speed","g":5,"id":2389222320,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["att_rate",0.08],["acc",0.04],["cri",0],["cri_dmg",0.06],["cri_dmg",0.06],["cri_dmg",0.04],["acc",0.08],["cri_dmg",0.07],["att_rate",0.08],["att_rate",0.03,"u"],["acc",0.03,"u"],["cri",0.01,"u"],["cri_dmg",0.04,"u"],["cri",0.04,"c","change2_cri_1_1"]],"p":110853212,"s":"df4a","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eot3r_u4","ct":1717293099,"e":93750,"f":"set_speed","g":5,"id":2389227867,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ot3u_ring_m4","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["def_rate",0.08],["cri",0.05],["att_rate",0.06],["cri_dmg",0.04],["att_rate",0.06],["def_rate",0.07],["def_rate",0.05],["def_rate",0.09],["att_rate",0.09]],"s":"1ce9","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eot3n_u1","ct":1717313918,"e":26118,"f":"set_rage","g":5,"id":2389962315,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ot3u_neck_m1","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["speed",2],["max_hp_rate",0.06],["cri_dmg",0.05],["acc",0.09],["acc",0.09],["acc",0.09],["max_hp_rate",0.06]],"s":"443a","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ela9r","ct":1717381132,"e":93862,"f":"set_penetrate","g":5,"id":2391749502,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"la9_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["max_hp_rate",0.09],["def_rate",0.09],["speed",5],["cri",0.06],["def_rate",0.07],["max_hp_rate",0.05],["speed",4],["max_hp_rate",0.07],["def_rate",0.06]],"p":736028830,"s":"980b","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ela9a","ct":1717465891,"e":93804,"f":"set_acc","g":5,"id":2393491274,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"la9_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.09],["def_rate",0.09],["speed",5],["acc",0.09],["max_hp_rate",0.08],["max_hp_rate",0.08],["acc",0.08],["acc",0.05],["acc",0.08]],"p":21884461,"s":"0","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ewb1a","ct":1717580352,"e":93750,"f":"set_torrent","g":5,"id":2395265189,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"wb1_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["speed",5],["cri",0.06],["cri_dmg",0.08],["def_rate",0.09],["speed",4],["speed",4],["speed",4],["cri",0.05],["cri_dmg",0.07]],"p":793619248,"s":"e096","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6w_u","ct":1717645802,"e":93863,"f":"set_speed","g":5,"id":2397005545,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["max_hp_rate",0.07],["cri_dmg",0.05],["speed",4],["att_rate",0.07],["speed",3],["cri_dmg",0.05],["speed",4],["max_hp_rate",0.08],["speed",4],["max_hp_rate",0.03,"u"],["cri_dmg",0.02,"u"],["speed",3,"u"],["att_rate",0.01,"u"]],"p":713583798,"s":"9f03","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ela9h","ct":1717651578,"e":93750,"f":"set_torrent","g":5,"id":2397281783,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"la9_helm_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["att_rate",0.09],["cri_dmg",0],["speed",5],["cri",0.06],["speed",4],["cri",0.04],["att_rate",0.05],["speed",3],["att_rate",0.05],["cri_dmg",0.07,"c","change2_cri_dmg_1_2"]],"s":"8739","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eiu32w","ct":1717741955,"e":10727,"f":"set_acc","g":5,"id":2399461241,"level":88,"mainStatBaseValue":103,"mainStatId":"iu32_weap_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["att_rate",0.07],["max_hp_rate",0.07],["speed",3],["acc",0.07],["acc",0.05],["att_rate",0.06]],"s":"a351","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6a_u","ct":1717814960,"e":93750,"f":"set_speed","g":5,"id":2401205762,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["speed",4],["max_hp_rate",0.07],["cri",0.05],["def_rate",0.05],["def_rate",0.04],["def_rate",0.05],["cri",0.04],["speed",2],["speed",3],["speed",2,"u"],["max_hp_rate",0.01,"u"],["cri",0.02,"u"],["def_rate",0.04,"u"]],"p":590699704,"s":"bb94","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a_u","ct":1717817895,"e":93750,"f":"set_speed","g":5,"id":2401323560,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["speed",4],["max_hp_rate",0.08],["res",0.08],["def_rate",0.07],["speed",4],["def_rate",0.06],["speed",2],["def_rate",0.06],["max_hp_rate",0.07],["speed",2,"u"],["max_hp_rate",0.03,"u"],["res",0.01,"u"],["def_rate",0.04,"u"]],"p":326831592,"s":"257a","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eiu21h","ct":1717824156,"e":46173,"f":"set_res","g":5,"id":2401581262,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"iu21_helm_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["max_hp_rate",0.07],["def_rate",0.07],["speed",3],["acc",0.07],["speed",4],["acc",0.07],["def_rate",0.07],["def_rate",0.05]],"s":"7828","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecd6a_u","ct":1717833500,"e":93804,"f":"set_torrent","g":5,"id":2401942133,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["def_rate",0.04],["cri_dmg",0.07],["speed",3],["max_hp_rate",0.08],["speed",2],["def_rate",0.07],["speed",4],["speed",4],["def_rate",0.05],["def_rate",0.04,"u"],["cri_dmg",0.01,"u"],["speed",3,"u"],["max_hp_rate",0.01,"u"]],"s":"7d95","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6w_u","ct":1717835283,"e":93750,"f":"set_speed","g":5,"id":2402010097,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["speed",2],["cri_dmg",0.04],["cri",0.03],["att_rate",0.05],["att_rate",0.07],["att_rate",0.05],["speed",4],["cri",0.03],["cri_dmg",0.05],["speed",1,"u"],["cri_dmg",0.02,"u"],["cri",0.02,"u"],["att_rate",0.04,"u"]],"s":"e35e","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6w_u","ct":1717835294,"e":93804,"f":"set_speed","g":5,"id":2402010455,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["att_rate",0.06],["acc",0.08],["cri_dmg",0.07],["speed",4],["att_rate",0.08],["speed",3],["att_rate",0.07],["att_rate",0.04],["acc",0.06],["att_rate",0.05,"u"],["acc",0.03,"u"],["cri_dmg",0.01,"u"],["speed",1,"u"]],"p":494187001,"s":"7b6c","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6a","ct":1717835315,"e":82031,"f":"set_speed","g":5,"id":2402011272,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["def_rate",0.07],["cri",0.03],["max_hp",201],["speed",4],["speed",3],["max_hp",192],["speed",4],["cri",0.03],["def_rate",0.07]],"s":"7ff6","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6n","ct":1717835322,"e":1982,"f":"set_speed","g":5,"id":2402011498,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_neck_m","mainStatType":"def_rate","mainStatValue":0.6,"mg":1111,"op":[["def_rate",0.12],["cri_dmg",0.07],["speed",2],["cri",0.05],["res",0.08],["res",0.08]],"s":"6109","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6h_u","ct":1718024331,"e":93750,"f":"set_speed","g":5,"id":2408627998,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["cri",0],["speed",3],["att_rate",0.07],["cri_dmg",0.06],["speed",3],["speed",3],["att_rate",0.08],["speed",2],["speed",4],["cri",0.01,"u"],["speed",4,"u"],["att_rate",0.03,"u"],["cri_dmg",0.01,"u"],["cri",0.04,"c","change2_cri_1_2"]],"s":"2fc1","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eot3r_u1","ct":1718371449,"e":20287,"f":"set_rage","g":5,"id":2416330492,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ot3u_ring_m1","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["cri_dmg",0.05],["def",37],["max_hp_rate",0.07],["acc",0.09],["def",32],["max_hp_rate",0.05],["def",33]],"p":28393107,"s":"d93a","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eot3r_u4","ct":1718371474,"e":93861,"f":"set_vampire","g":5,"id":2416331183,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ot3u_ring_m4","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["cri",0.03],["cri_dmg",0.06],["att_rate",0.07],["res",0.07],["cri",0.03],["att_rate",0.08],["att_rate",0.06],["cri_dmg",0.05],["cri_dmg",0.08]],"s":"444d","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6a","ct":1718371501,"e":82031,"f":"set_cri","g":5,"id":2416331971,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["cri",0.04],["speed",2],["def_rate",0.08],["cri_dmg",0.05],["def_rate",0.07],["cri",0.05],["cri",0.05],["speed",4],["def_rate",0.04]],"s":"a87e","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a","ct":1718371626,"e":73828,"f":"set_speed","g":4,"id":2416335396,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["cri_dmg",0.05],["speed",2],["cri",0.04],["speed",4],["speed",3],["cri_dmg",0.07],["def_rate",0.08],["cri_dmg",0.06]],"s":"22c6","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a","ct":1718371626,"e":73828,"f":"set_acc","g":4,"id":2416335401,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["cri",0.03],["def_rate",0.05],["speed",4],["speed",2],["speed",3],["speed",4],["max_hp",161],["max_hp",167]],"s":"c5ad","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6n","ct":1718510279,"e":82031,"f":"set_speed","g":5,"id":2420182942,"l":true,"level":85,"mainStatBaseValue":0.11,"mainStatId":"cra6_neck_m","mainStatType":"cri","mainStatValue":0.55,"mg":1111,"op":[["cri",0.11],["def_rate",0.08],["att_rate",0.06],["speed",3],["cri_dmg",0.07],["cri_dmg",0.05],["def_rate",0.05],["speed",4],["att_rate",0.07],["att_rate",0.08]],"s":"5e3b","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6n_u","ct":1718510288,"e":93805,"f":"set_speed","g":5,"id":2420183248,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_neck_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,0],["att",35],["cri_dmg",0.06],["speed",4],["def",31],["speed",2],["speed",4],["speed",3],["speed",4],["speed",3],["att",11,"u"],["cri_dmg",0.01,"u"],["speed",4,"u"],["def",9,"u"]],"p":713583798,"s":"d60","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6r","ct":1718587586,"e":82031,"f":"set_speed","g":5,"id":2422195744,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["speed",3],["res",0.04],["att_rate",0.07],["cri",0.04],["speed",2],["speed",3],["cri",0.05],["att_rate",0.08],["att_rate",0.06]],"s":"dc48","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecd6w_u","ct":1718758772,"e":84469,"f":"set_revenge","g":4,"id":2425807121,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["att_rate",0.04],["speed",4],["max_hp_rate",0.08],["speed",4],["speed",3],["speed",4],["cri",0.03],["cri",0.05],["att_rate",0.01,"u"],["speed",3,"u"],["max_hp_rate",0.01,"u"],["cri",0.02,"u"]],"s":"a9ef","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6r_u","ct":1718810780,"e":93802,"f":"set_speed","g":5,"id":2426959799,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["cri",0.03],["cri_dmg",0.07],["acc",0.05],["res",0.07],["cri",0.04],["cri_dmg",0.05],["cri",0.05],["cri_dmg",0.05],["res",0.04],["cri",0.03,"u"],["cri_dmg",0.03,"u"],["acc",0.01,"u"],["res",0.03,"u"]],"p":769932771,"s":"21da","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6w_u","ct":1718811420,"e":93862,"f":"set_speed","g":5,"id":2426978551,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["speed",3],["att_rate",0.08],["acc",0.05],["cri",0.05],["speed",2],["speed",4],["att_rate",0.04],["acc",0.06],["att_rate",0.05],["speed",2,"u"],["att_rate",0.04,"u"],["acc",0.03,"u"],["cri",0.01,"u"]],"p":480028811,"s":"ada9","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ezl1_w","ct":1718876359,"e":93750,"f":"set_cri_dmg","g":5,"id":2430463987,"l":true,"level":88,"mainStatBaseValue":103.0,"mainStatId":"ezl1_weapon_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103.0],["max_hp_rate",0.09],["att_rate",0.09],["speed",5.0],["cri",0.06],["speed",3],["att_rate",0.09],["att_rate",0.07],["max_hp_rate",0.05],["att_rate",0.05]],"p":738614105,"s":"f111","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"exc107101","ct":1718891872,"g":5,"id":2432162276,"mg":1111,"op":[["acc",0.16],["ek_c107101",1]],"s":"565e"},{"code":"exc107101","ct":1718891874,"g":5,"id":2432162593,"mg":1111,"op":[["acc",0.12],["ek_c107101",1]],"s":"be75"},{"code":"exc107101","ct":1718891877,"g":5,"id":2432162913,"mg":1111,"op":[["acc",0.11],["ek_c107101",3]],"s":"253d"},{"code":"exc107101","ct":1718891880,"g":5,"id":2432163317,"mg":1111,"op":[["acc",0.16],["ek_c107101",2]],"s":"955a"},{"code":"exc109001","ct":1718892174,"g":5,"id":2432197676,"mg":1111,"op":[["res",0.14],["ek_c109001",2]],"s":"f1f"},{"code":"exc109001","ct":1718892178,"g":5,"id":2432198038,"mg":1111,"op":[["res",0.13],["ek_c109001",1]],"s":"67e3"},{"code":"exc109001","ct":1718892180,"g":5,"id":2432198312,"mg":1111,"op":[["res",0.15],["ek_c109001",1]],"p":326831592,"s":"c6b2"},{"code":"ecq6b","ct":1718936983,"e":82086,"f":"set_rage","g":5,"id":2434660966,"level":85,"mainStatBaseValue":8,"mainStatId":"cra6_boot_m","mainStatType":"speed","mainStatValue":40,"mg":1111,"op":[["speed",8],["def_rate",0.05],["res",0.05],["acc",0.08],["max_hp_rate",0.06],["max_hp_rate",0.08],["res",0.04],["def_rate",0.07],["res",0.07],["res",0.06]],"s":"9173","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ezl1_h","ct":1718957082,"e":93863,"f":"set_cri_dmg","g":5,"id":2436387238,"l":true,"level":88,"mainStatBaseValue":553.0,"mainStatId":"ezl1_helm_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553.0],["att_rate",0.09],["speed",5.0],["cri",0.06],["cri_dmg",0.08],["speed",3],["cri_dmg",0.07],["cri_dmg",0.04],["speed",4],["att_rate",0.08]],"s":"93e3","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eal85b_u","ct":1718960067,"e":93750,"f":"set_speed","g":5,"id":2436630810,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["cri_dmg",0.06],["cri",0],["att_rate",0.07],["max_hp",181],["cri_dmg",0.07],["att_rate",0.06],["cri_dmg",0.04],["cri",0],["att_rate",0.08],["cri_dmg",0.03,"u"],["cri",0.02,"u"],["att_rate",0.04,"u"],["max_hp",56,"u"],["cri",0.06,"c","change2_cri_2_2"]],"p":99507012,"s":"d74c","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ezl1_r","ct":1719022481,"e":93750,"f":"set_cri_dmg","g":5,"id":2440984992,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ezl1_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["max_hp_rate",0.09],["speed",5.0],["cri",0.06],["cri_dmg",0.08],["cri",0.04],["cri_dmg",0.08],["max_hp_rate",0.08],["speed",3],["speed",3]],"p":613630545,"s":"74c8","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6h_u","ct":1719038304,"e":93750,"f":"set_speed","g":5,"id":2442445949,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["def_rate",0.08],["acc",0.08],["max_hp_rate",0.05],["speed",0],["acc",0.06],["def_rate",0.08],["def_rate",0.04],["max_hp_rate",0.06],["acc",0.07],["def_rate",0.04,"u"],["acc",0.04,"u"],["max_hp_rate",0.03,"u"],["speed",0,"u"],["speed",4,"c","change2_speed_1_3"]],"s":"e0de","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ezl1_b","ct":1719049059,"e":93750,"f":"set_cri_dmg","g":5,"id":2443370535,"l":true,"level":88,"mainStatBaseValue":9.0,"mainStatId":"ezl1_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9.0],["max_hp_rate",0.09],["att_rate",0.09],["def_rate",0.09],["cri",0.06],["att_rate",0.09],["cri",0.06],["att_rate",0.07],["cri",0.04],["def_rate",0.06]],"s":"ccee","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ezl1_a","ct":1719049065,"e":93862,"f":"set_cri_dmg","g":5,"id":2443370994,"l":true,"level":88,"mainStatBaseValue":62.0,"mainStatId":"ezl1_armor_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62.0],["max_hp_rate",0.09],["def_rate",0.09],["speed",5.0],["cri",0.06],["def_rate",0.06],["cri",0.03],["max_hp_rate",0.05],["def_rate",0.08],["def_rate",0.08]],"s":"68dd","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecd6w_u","ct":1719150364,"e":84375,"f":"set_torrent","g":4,"id":2450639997,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["att_rate",0.08],["speed",4],["cri_dmg",0.06],["att_rate",0.04],["cri_dmg",0.05],["cri_dmg",0.06],["cri",0],["cri_dmg",0.06],["att_rate",0.03,"u"],["cri_dmg",0.04,"u"],["cri",0.01,"u"],["cri",0.04,"c","change2_cri_1_2"]],"p":890790459,"s":"355f","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ezl1_n","ct":1719186343,"e":93863,"f":"set_cri_dmg","g":5,"id":2452477065,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"ezl1_neck_m","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["max_hp_rate",0.09],["att_rate",0.09],["speed",5.0],["cri",0.06],["max_hp_rate",0.07],["cri",0.06],["speed",3],["max_hp_rate",0.07],["speed",3]],"p":613630545,"s":"efe1","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecd6w_u","ct":1719193962,"e":93803,"f":"set_penetrate","g":5,"id":2452995627,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["max_hp_rate",0.06],["cri",0.05],["att_rate",0.07],["cri_dmg",0.07],["att_rate",0.04],["max_hp_rate",0.06],["max_hp_rate",0.05],["cri",0.03],["cri",0.05],["max_hp_rate",0.04,"u"],["cri",0.03,"u"],["att_rate",0.03,"u"],["cri_dmg",0.01,"u"]],"s":"96b9","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecq6h_u","ct":1719199545,"e":93750,"f":"set_rage","g":5,"id":2453405847,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["cri_dmg",0.06],["max_hp_rate",0.06],["att_rate",0.07],["cri",0],["cri",0],["max_hp_rate",0.06],["att_rate",0.06],["att_rate",0.08],["att_rate",0.05],["cri",0.06,"c"],["cri_dmg",0.01,"u"],["max_hp_rate",0.03,"u"],["att_rate",0.05,"u"],["cri",0.02,"u"]],"p":690904230,"s":"8e33","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecq6w_u","ct":1719232739,"e":93862,"f":"set_rage","g":5,"id":2455851429,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["att_rate",0],["cri_dmg",0.04],["cri",0.05],["speed",2],["cri_dmg",0.07],["speed",2],["cri_dmg",0.04],["cri",0.04],["cri",0.05],["att_rate",0.01,"u"],["cri_dmg",0.03,"u"],["cri",0.03,"u"],["speed",1,"u"],["att_rate",0.08,"c","change2_att_rate_1_2"]],"s":"6243","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecd6h_u","ct":1719234897,"e":93750,"f":"set_torrent","g":5,"id":2456052972,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["acc",0.05],["res",0.05],["speed",4],["cri_dmg",0.06],["speed",3],["res",0.08],["speed",3],["res",0.06],["res",0.04],["acc",0.01,"u"],["res",0.05,"u"],["speed",2,"u"],["cri_dmg",0.01,"u"]],"s":"a217","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecd6w_u","ct":1719239271,"e":84469,"f":"set_torrent","g":4,"id":2456477299,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["speed",2],["cri_dmg",0.07],["max_hp_rate",0.06],["speed",3],["speed",3],["speed",2],["att_rate",0.05],["speed",3],["speed",4,"u"],["cri_dmg",0.01,"u"],["max_hp_rate",0.01,"u"],["att_rate",0.01,"u"]],"s":"6885","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecd6w_u","ct":1719280987,"e":93750,"f":"set_torrent","g":5,"id":2458542739,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["speed",4],["max_hp_rate",0.08],["res",0.07],["cri_dmg",0.05],["res",0.04],["speed",4],["cri_dmg",0.06],["res",0.04],["cri_dmg",0.06],["speed",1,"u"],["max_hp_rate",0.01,"u"],["res",0.04,"u"],["cri_dmg",0.03,"u"]],"s":"c28b","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6w_u","ct":1719372442,"e":84375,"f":"set_acc","g":4,"id":2462401078,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["max_hp",170],["speed",4],["acc",0],["speed",3],["speed",3],["speed",3],["cri",0.05],["max_hp",182],["max_hp",112,"u"],["speed",3,"u"],["acc",0.01,"u"],["cri",0.01,"u"],["acc",0.07,"c","change2_acc_1_2"]],"s":"4343","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ewb1n","ct":1719373040,"e":93750,"f":"set_torrent","g":5,"id":2462429274,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"wb1_neck_m","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["speed",5],["att_rate",0.09],["cri",0.06],["att",53],["speed",4],["speed",4],["speed",4],["att_rate",0.08],["att_rate",0.08]],"p":494187001,"s":"72b5","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecd6a_u","ct":1719545658,"e":93750,"f":"set_torrent","g":5,"id":2469310601,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri",0.05],["res",0.06],["speed",4],["cri_dmg",0],["speed",4],["res",0.07],["cri",0.04],["res",0.04],["speed",3],["cri",0.02,"u"],["res",0.04,"u"],["speed",2,"u"],["cri_dmg",0.01,"u"],["cri_dmg",0.07,"c","change2_cri_dmg_1_2"]],"s":"e4ef","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eah23a","ct":1719553415,"e":93862,"f":"set_counter","g":5,"id":2469796401,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"ah23_armo_m1","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.07],["cri",0.05],["cri_dmg",0.06],["speed",5],["cri",0.06],["cri",0.04],["max_hp_rate",0.08],["cri",0.06],["max_hp_rate",0.07]],"p":96079743,"s":"0","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eiu11h","ct":1719565819,"e":93750,"f":"set_speed","g":5,"id":2470498110,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"iu11_helm_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["att_rate",0.09],["max_hp_rate",0.09],["speed",5],["cri",0.06],["max_hp_rate",0.06],["att_rate",0.09],["max_hp_rate",0.05],["cri",0.05],["cri",0.03]],"p":795195383,"s":"d9e8","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eiu51b","ct":1719567555,"e":93862,"f":"set_speed","g":5,"id":2470583605,"l":true,"level":88,"mainStatBaseValue":9,"mainStatId":"iu51_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9],["max_hp_rate",0.09],["def_rate",0.09],["res",0.09],["acc",0.09],["res",0.08],["def_rate",0.05],["acc",0.06],["acc",0.05],["acc",0.07]],"p":90857803,"s":"7648","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6h_u","ct":1719752713,"e":84375,"f":"set_speed","g":4,"id":2480610051,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["speed",4],["def_rate",0.08],["acc",0.08],["def_rate",0.08],["def_rate",0.05],["speed",4],["max_hp_rate",0],["acc",0.07],["max_hp_rate",0.08,"c"],["speed",1,"u"],["def_rate",0.04,"u"],["acc",0.03,"u"],["max_hp_rate",0.01,"u"]],"p":31856726,"s":"f4c8","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6a","ct":1719902979,"e":73828,"f":"set_vampire","g":4,"id":2485637611,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["speed",3],["def_rate",0.08],["cri_dmg",0.05],["def_rate",0.08],["def_rate",0.08],["cri_dmg",0.07],["res",0.04],["speed",2]],"s":"a136","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eiu32h","ct":1719935096,"f":"set_cri","g":5,"id":2486622720,"level":88,"mainStatBaseValue":553,"mainStatId":"iu32_helm_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["att_rate",0.07],["max_hp_rate",0.07],["cri",0.04],["cri_dmg",0.06]],"s":"e072","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6a_u","ct":1720061020,"e":93750,"f":"set_vampire","g":5,"id":2489697243,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri",0.05],["cri_dmg",0.07],["res",0.04],["acc",0.05],["acc",0.08],["res",0.06],["cri",0.04],["cri_dmg",0.05],["cri_dmg",0.05],["cri",0.02,"u"],["cri_dmg",0.03,"u"],["res",0.03,"u"],["acc",0.03,"u"]],"s":"e4b7","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6h_u","ct":1720061268,"e":84375,"f":"set_speed","g":4,"id":2489711284,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["def_rate",0.08],["max_hp_rate",0.07],["speed",4],["speed",4],["speed",2],["speed",4],["cri_dmg",0.06],["def_rate",0.04],["def_rate",0.03,"u"],["max_hp_rate",0.01,"u"],["speed",3,"u"],["cri_dmg",0.01,"u"]],"p":713583798,"s":"562f","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6n","ct":1720227089,"e":73923,"f":"set_speed","g":4,"id":2496081670,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_neck_m","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["speed",3],["max_hp_rate",0.05],["def_rate",0.08],["def_rate",0.05],["speed",4],["speed",4],["cri_dmg",0.07],["def_rate",0.04]],"s":"1c2f","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6a_u","ct":1720272643,"e":93750,"f":"set_speed","g":5,"id":2497717407,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["speed",4],["res",0.05],["max_hp_rate",0],["acc",0.08],["speed",4],["res",0.04],["speed",3],["res",0.04],["res",0.06],["speed",2,"u"],["res",0.05,"u"],["max_hp_rate",0.01,"u"],["acc",0.01,"u"],["max_hp_rate",0.06,"c","change2_max_hp_rate_1_1"]],"s":"8082","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eal85b_u","ct":1720273081,"e":93861,"f":"set_speed","g":5,"id":2497736090,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["att_rate",0.08],["cri",0.05],["cri_dmg",0],["res",0.08],["cri",0.05],["res",0.07],["cri",0.05],["cri_dmg",0],["cri_dmg",0],["att_rate",0.01,"u"],["cri",0.03,"u"],["cri_dmg",0.03,"u"],["res",0.03,"u"],["cri_dmg",0.11,"c","change2_cri_dmg_3_1"]],"p":115835449,"s":"9c58","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eah20n","ct":1720502478,"e":93863,"f":"set_acc","g":5,"id":2506099821,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ah20_neck_m1","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["att_rate",0.07],["speed",5],["acc",0.07],["def_rate",0.07],["def_rate",0.07],["acc",0.07],["att_rate",0.09],["def_rate",0.09],["acc",0.06]],"p":403476926,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eah24w","ct":1720767971,"e":93860,"f":"set_cri","g":5,"id":2512093832,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"ah24_weap_m1","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.07],["att_rate",0.07],["cri",0.05],["speed",5],["cri",0.05],["cri",0.04],["att_rate",0.06],["att_rate",0.09],["max_hp_rate",0.06]],"s":"3cad","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecb6h_u","ct":1721292681,"e":93750,"f":"set_vampire","g":5,"id":2523943597,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["def",33],["att_rate",0.07],["cri_dmg",0.06],["cri",0.05],["att_rate",0.08],["cri_dmg",0.05],["cri_dmg",0.06],["cri_dmg",0.04],["cri_dmg",0.06],["def",9,"u"],["att_rate",0.03,"u"],["cri_dmg",0.06,"u"],["cri",0.01,"u"]],"s":"1b3f","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eah24h","ct":1721306197,"e":93861,"f":"set_cri","g":5,"id":2524849777,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"ah24_helm_m1","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["att_rate",0],["cri",0.05],["cri_dmg",0.06],["speed",5],["speed",3],["cri",0.04],["speed",4],["att_rate",0],["cri_dmg",0.08],["att_rate",0.07,"c","change2_att_rate_2_1"]],"p":480028811,"s":"b4c0","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eal85n_u","ct":1721353543,"e":93805,"f":"set_speed","g":5,"id":2526689173,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["acc",0.05],["speed",0],["res",0.08],["max_hp",187],["res",0.04],["max_hp",159],["res",0.08],["acc",0.05],["max_hp",201],["acc",0.03,"u"],["speed",0,"u"],["res",0.04,"u"],["max_hp",168,"u"],["speed",3,"c","change2_speed_1_2"]],"p":636577158,"s":"bf49","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eah20w","ct":1721451814,"e":93750,"f":"set_acc","g":5,"id":2531573716,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"ah20_weap_m1","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.07],["speed",5],["att_rate",0.07],["acc",0.07],["max_hp_rate",0.08],["att_rate",0.09],["acc",0.06],["att_rate",0.07],["acc",0.09]],"s":"0","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6a_u","ct":1721653192,"e":84375,"f":"set_acc","g":4,"id":2542210000,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["acc",0.05],["speed",4],["res",0.05],["acc",0.06],["acc",0.07],["acc",0.04],["def_rate",0.07],["acc",0.08],["acc",0.07,"u"],["res",0.01,"u"],["def_rate",0.01,"u"]],"p":225876663,"s":"de0f","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a_u","ct":1721653344,"e":84375,"f":"set_speed","g":4,"id":2542225851,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["acc",0.06],["speed",4],["cri",0.05],["speed",3],["speed",3],["cri",0.04],["cri_dmg",0.06],["acc",0.07],["acc",0.03,"u"],["speed",2,"u"],["cri",0.02,"u"],["cri_dmg",0.01,"u"]],"s":"a47e","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eah24a","ct":1721696924,"e":93860,"f":"set_cri","g":5,"id":2544307147,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"ah24_armo_m1","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.07],["cri",0.05],["cri_dmg",0.06],["speed",5],["cri_dmg",0.08],["max_hp_rate",0.09],["cri_dmg",0.08],["cri",0.05],["cri",0.03]],"p":115835449,"s":"aa0a","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6r_u","ct":1721721230,"e":84375,"f":"set_speed","g":4,"id":2545118660,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["speed",4],["def_rate",0],["max_hp",166],["speed",4],["def_rate",0],["speed",4],["acc",0.07],["def_rate",0],["def_rate",0.14,"c"],["speed",2,"u"],["def_rate",0.04,"u"],["max_hp",56,"u"],["acc",0.01,"u"]],"p":110838566,"s":"3c3e","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6a_u","ct":1721722484,"e":93750,"f":"set_speed","g":5,"id":2545154009,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp_rate",0.06],["speed",4],["res",0.04],["def_rate",0.08],["max_hp_rate",0.04],["max_hp_rate",0.05],["speed",2],["def_rate",0.07],["speed",4],["max_hp_rate",0.04,"u"],["speed",2,"u"],["res",0.01,"u"],["def_rate",0.03,"u"]],"p":829105288,"s":"8336","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a_u","ct":1721722510,"e":84375,"f":"set_cri","g":4,"id":2545154611,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri",0],["res",0.07],["speed",4],["speed",4],["speed",3],["speed",2],["cri_dmg",0.07],["cri_dmg",0.04],["cri",0.01,"u"],["res",0.01,"u"],["speed",3,"u"],["cri_dmg",0.02,"u"],["cri",0.03,"c","change2_cri_1_1"]],"s":"7f0a","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eal85b","ct":1721724441,"e":82085,"f":"set_speed","g":5,"id":2545205227,"l":true,"level":85,"mainStatBaseValue":8,"mainStatId":"al85_boot_m","mainStatType":"speed","mainStatValue":40,"mg":1111,"op":[["speed",8],["def_rate",0.04],["acc",0.06],["cri",0.05],["def",30],["def_rate",0.07],["def_rate",0.05],["def_rate",0.06],["acc",0.06],["acc",0.04]],"p":659243748,"s":"1bfa","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eot3r_u1","ct":1721749061,"e":93861,"f":"set_att","g":5,"id":2546038921,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ot3u_ring_m1","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["max_hp_rate",0.08],["cri",0],["speed",4],["cri_dmg",0.08],["cri_dmg",0.06],["max_hp_rate",0.08],["cri_dmg",0.08],["cri_dmg",0.08],["max_hp_rate",0.07],["cri",0.04,"c","change2_cri_1_2"]],"p":140659207,"s":"5b88","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eot3r_u4","ct":1721749094,"f":"set_revenge","g":5,"id":2546040131,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ot3u_ring_m4","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["cri",0.05],["res",0.08],["acc",0.07],["att_rate",0.05]],"s":"8d34","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eot3n_u3","ct":1721749108,"e":7695,"f":"set_att","g":5,"id":2546040595,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"ot3u_neck_m3","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["speed",2],["res",0.05],["att_rate",0.06],["att",43],["speed",3],["res",0.08]],"s":"77fe","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"exc601101","ct":1721962529,"g":5,"id":2551914842,"l":true,"mg":1111,"op":[["cri",0.12],["ek_c601101",3]],"p":360551102,"s":"7462"},{"code":"ess14n","ct":1721985072,"e":82144,"f":"set_cri","g":5,"id":2552544383,"l":true,"level":78,"mainStatBaseValue":0.13,"mainStatId":"ss14_neck_m","mainStatType":"cri_dmg","mainStatValue":0.65,"mg":1111,"op":[["cri_dmg",0.13],["max_hp_rate",0.07],["att_rate",0.07],["speed",4],["cri",0.04],["speed",4],["att_rate",0.07],["max_hp_rate",0.04],["cri",0.05],["cri",0.03]],"s":"9258","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eiu12w","ct":1722088742,"e":93750,"f":"set_penetrate","g":5,"id":2555333537,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"iu12_weap_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["att_rate",0.08],["max_hp_rate",0.08],["speed",4],["cri",0.05],["cri",0.06],["speed",4],["max_hp_rate",0.08],["cri",0.03],["att_rate",0.08]],"p":96079743,"s":"c4b0","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eal85b_u","ct":1722227834,"e":93863,"f":"set_res","g":5,"id":2558797681,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["att",37],["res",0],["acc",0.06],["def_rate",0.06],["res",0],["att",42],["def_rate",0.05],["res",0],["def_rate",0.08],["att",22,"u"],["res",0.04,"u"],["acc",0.01,"u"],["def_rate",0.04,"u"],["res",0.1,"c","change2_res_3_1"]],"p":713631381,"s":"c15a","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6n_u","ct":1722349812,"e":93804,"f":"set_speed","g":5,"id":2561932090,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_neck_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,0],["max_hp_rate",0.08],["speed",4],["cri",0],["cri_dmg",0.07],["max_hp_rate",0.04],["cri_dmg",0.07],["speed",4],["speed",3],["cri",0],["max_hp_rate",0.03,"u"],["speed",2,"u"],["cri",0.02,"u"],["cri_dmg",0.02,"u"],["cri",0.04,"c","change2_cri_2_1"]],"s":"583b","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6n","ct":1722349848,"e":6704,"f":"set_speed","g":5,"id":2561933357,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_neck_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["def_rate",0.07],["att",41],["speed",4],["acc",0.06],["acc",0.08],["acc",0.07]],"s":"6a5d","statMultiplier":2.25,"tierMultiplier":1,"type":"neck"},{"code":"ecw6h_u","ct":1722406686,"e":93804,"f":"set_speed","g":5,"id":2563269116,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["att_rate",0.06],["def_rate",0.04],["res",0.06],["speed",3],["speed",3],["att_rate",0.07],["speed",4],["speed",3],["res",0.04],["att_rate",0.03,"u"],["def_rate",0.01,"u"],["res",0.03,"u"],["speed",3,"u"]],"s":"4939","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eih9r","ct":1722577894,"e":93804,"f":"set_res","g":5,"id":2567721286,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"imh_ring_m11","mainStatType":"res","mainStatValue":0.65,"mg":1111,"op":[["res",0.13],["max_hp_rate",0.09],["def_rate",0.09],["speed",5],["acc",0.09],["acc",0.08],["def_rate",0.07],["speed",3],["def_rate",0.05],["def_rate",0.05]],"p":31856726,"s":"7df0","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eih6w","ct":1722577901,"e":93750,"f":"set_speed","g":5,"id":2567721609,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"imh_wepo_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["cri_dmg",0],["att_rate",0.09],["speed",5],["cri",0.06],["speed",3],["cri",0.05],["cri",0.04],["speed",3],["cri",0.03],["cri_dmg",0.07,"c","change2_cri_dmg_1_2"]],"p":669363338,"s":"8590","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eah24b","ct":1722581009,"e":93861,"f":"set_cri","g":5,"id":2567885380,"l":true,"level":88,"mainStatBaseValue":9,"mainStatId":"ah24_boot_m1","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9],["max_hp_rate",0.07],["def_rate",0.07],["cri",0.05],["cri_dmg",0.06],["max_hp_rate",0.07],["cri",0.03],["def_rate",0.05],["def_rate",0.09],["cri",0.05]],"s":"2596","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6w","ct":1722643907,"e":73828,"f":"set_cri","g":4,"id":2570293611,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["res",0.07],["cri_dmg",0.05],["speed",3],["speed",4],["speed",2],["speed",4],["max_hp_rate",0.06],["res",0.08]],"s":"e531","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6w_u","ct":1722659748,"e":93805,"f":"set_acc","g":5,"id":2571078711,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["speed",4],["res",0.05],["acc",0.07],["max_hp_rate",0.05],["acc",0.04],["acc",0.07],["acc",0.05],["res",0.04],["max_hp_rate",0.05],["res",0.03,"u"],["acc",0.05,"u"],["max_hp_rate",0.03,"u"]],"p":590699704,"s":"88b3","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6r_u","ct":1722690036,"e":93862,"f":"set_cri","g":5,"id":2572775896,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,0],["att",40],["cri",0.04],["speed",4],["res",0.08],["att",38],["speed",2],["cri",0.05],["speed",3],["speed",4],["att",22,"u"],["cri",0.02,"u"],["speed",3,"u"],["res",0.01,"u"]],"s":"f349","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6a_u","ct":1722818820,"e":93750,"f":"set_cri","g":5,"id":2578315782,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp_rate",0.04],["def_rate",0.05],["cri",0.04],["cri_dmg",0.06],["max_hp_rate",0.07],["cri",0.05],["cri_dmg",0.05],["cri",0.04],["cri",0.04],["max_hp_rate",0.03,"u"],["def_rate",0.01,"u"],["cri",0.04,"u"],["cri_dmg",0.02,"u"]],"s":"bce9","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"exc114401","ct":1722843452,"g":5,"id":2579892759,"mg":1111,"op":[["acc",0.15],["ek_c114401",2]],"p":620426700,"s":"d307"},{"code":"exc114401","ct":1722843455,"g":5,"id":2579892935,"mg":1111,"op":[["acc",0.15],["ek_c114401",1]],"s":"8787"},{"code":"exc114401","ct":1722843458,"g":5,"id":2579893108,"mg":1111,"op":[["acc",0.1],["ek_c114401",3]],"s":"8f03"},{"code":"eal85r_u","ct":1722843929,"e":93750,"f":"set_speed","g":5,"id":2579922070,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["def_rate",0.05],["acc",0.06],["res",0.07],["speed",3],["speed",4],["def_rate",0.05],["speed",2],["def_rate",0.07],["speed",2],["def_rate",0.04,"u"],["acc",0.01,"u"],["res",0.01,"u"],["speed",3,"u"]],"p":829105288,"s":"b79","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eal85n_u","ct":1722844022,"e":93803,"f":"set_speed","g":5,"id":2579927769,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["speed",0],["def_rate",0.08],["max_hp",189],["att_rate",0.07],["att_rate",0.06],["def_rate",0.05],["def_rate",0.08],["def_rate",0.08],["att_rate",0.05],["def_rate",0.05,"u"],["max_hp",56,"u"],["att_rate",0.04,"u"],["speed",4,"c","change2_speed_1_3"]],"p":829105288,"s":"6344","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eal85b_u","ct":1722844552,"e":93750,"f":"set_penetrate","g":5,"id":2579962083,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["max_hp_rate",0.07],["att_rate",0],["cri",0.05],["cri_dmg",0.04],["cri_dmg",0.05],["max_hp_rate",0.08],["max_hp_rate",0.04],["cri",0.03],["att_rate",0],["max_hp_rate",0.04,"u"],["att_rate",0.03,"u"],["cri",0.02,"u"],["cri_dmg",0.02,"u"],["att_rate",0.08,"c","change2_att_rate_2_1"]],"p":777666204,"s":"5b4d","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eal85b_u","ct":1722845028,"e":93805,"f":"set_res","g":5,"id":2579992439,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["att_rate",0.07],["cri_dmg",0.05],["def_rate",0.05],["res",0],["res",0],["def_rate",0.06],["def_rate",0.06],["cri_dmg",0.07],["def_rate",0.05],["att_rate",0.01,"u"],["cri_dmg",0.02,"u"],["def_rate",0.05,"u"],["res",0.03,"u"],["res",0.11,"c","change2_res_2_2"]],"p":48988520,"s":"f7a4","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eiu12b","ct":1722929538,"e":93750,"f":"set_shield","g":5,"id":2583468205,"l":true,"level":88,"mainStatBaseValue":9,"mainStatId":"iu12_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9],["res",0.07],["max_hp_rate",0.07],["def_rate",0.07],["acc",0.07],["max_hp_rate",0.08],["def_rate",0.05],["acc",0.09],["acc",0.09],["acc",0.06]],"s":"4bc2","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6w_u","ct":1723011712,"e":93861,"f":"set_cri","g":5,"id":2585297243,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["cri_dmg",0.07],["res",0.07],["cri",0.05],["speed",3],["res",0.05],["cri",0.05],["cri_dmg",0.06],["speed",4],["res",0.07],["cri_dmg",0.02,"u"],["res",0.04,"u"],["cri",0.02,"u"],["speed",1,"u"]],"s":"90b3","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecq6b_u","ct":1723081251,"e":84470,"f":"set_immune","g":4,"id":2586884783,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["res",0.04],["max_hp_rate",0.06],["cri_dmg",0],["res",0.08],["max_hp_rate",0.07],["res",0.07],["cri",0.05],["max_hp_rate",0.04],["res",0.04,"u"],["max_hp_rate",0.04,"u"],["cri_dmg",0.01,"u"],["cri",0.01,"u"],["cri_dmg",0.05,"c","change2_cri_dmg_1_1"]],"s":"ab5c","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6n","ct":1723081376,"e":73828,"f":"set_speed","g":4,"id":2586889573,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_neck_m","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["cri",0.03],["speed",3],["cri_dmg",0.04],["cri_dmg",0.05],["cri_dmg",0.06],["speed",4],["acc",0.08],["cri",0.04]],"p":4647526,"s":"c8b","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecq6a_u","ct":1723081562,"e":93750,"f":"set_immune","g":5,"id":2586896646,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri_dmg",0.07],["max_hp",178],["speed",3],["max_hp_rate",0.04],["cri_dmg",0.07],["max_hp_rate",0.08],["cri_dmg",0.05],["max_hp_rate",0.06],["cri_dmg",0.06],["cri_dmg",0.04,"u"],["max_hp",56,"u"],["max_hp_rate",0.04,"u"]],"p":798777729,"s":"f4bc","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6n","ct":1723083271,"e":82031,"f":"set_speed","g":5,"id":2586962259,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["def_rate",0.04],["cri_dmg",0.04],["res",0.04],["speed",3],["def_rate",0.07],["res",0.05],["res",0.07],["cri_dmg",0.07],["cri_dmg",0.04]],"p":326831592,"s":"9d5a","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eah24r","ct":1723100901,"e":93750,"f":"set_cri","g":5,"id":2587779548,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ah24_ring_m1","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["def_rate",0.07],["cri",0.05],["cri_dmg",0.06],["speed",5],["cri",0.03],["cri",0.04],["cri_dmg",0.05],["cri",0.05],["def_rate",0.08]],"s":"2006","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eah21h","ct":1723106139,"e":93802,"f":"set_cri_dmg","g":5,"id":2587958401,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"ah21_helm_m1","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["speed",5],["max_hp_rate",0.07],["cri_dmg",0.06],["cri",0],["max_hp_rate",0.05],["cri_dmg",0.05],["max_hp_rate",0.08],["speed",4],["cri_dmg",0.07],["cri",0.04,"c","change2_cri_1_2"]],"p":784315107,"s":"0","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eah24n","ct":1723213899,"e":93861,"f":"set_cri","g":5,"id":2591378030,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"ah24_neck_m1","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["max_hp_rate",0.07],["att_rate",0],["cri",0.05],["speed",5],["max_hp_rate",0.06],["cri",0.03],["cri",0.03],["speed",3],["max_hp_rate",0.06],["att_rate",0.05,"c","change2_att_rate_1_1"]],"p":96079748,"s":"8b5b","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecq6a_u","ct":1723725342,"e":93750,"f":"set_immune","g":5,"id":2605318044,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["speed",3],["def_rate",0.08],["max_hp",187],["max_hp_rate",0],["speed",4],["max_hp",171],["max_hp",177],["def_rate",0.07],["max_hp",166],["speed",1,"u"],["def_rate",0.03,"u"],["max_hp",224,"u"],["max_hp_rate",0.01,"u"],["max_hp_rate",0.05,"c","change2_max_hp_rate_1_1"]],"s":"932f","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"exc514901","ct":1723798779,"g":5,"id":2607176526,"l":true,"mg":1111,"op":[["max_hp_rate",0.13],["ek_c514901",3]],"p":326707479,"s":"53e8"},{"code":"exc514901","ct":1723798784,"g":5,"id":2607176664,"l":true,"mg":1111,"op":[["max_hp_rate",0.14],["ek_c514901",1]],"s":"d9d9"},{"code":"ecw6a","ct":1723963404,"e":73828,"f":"set_speed","g":4,"id":2612661692,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["speed",4],["max_hp_rate",0.04],["acc",0.04],["max_hp_rate",0.07],["max_hp_rate",0.05],["max_hp_rate",0.07],["def_rate",0.08],["speed",3]],"s":"3b04","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6h_u","ct":1723972747,"e":93750,"f":"set_cri","g":5,"id":2613190111,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["def_rate",0.05],["res",0.04],["cri",0.05],["max_hp_rate",0.08],["def_rate",0.05],["def_rate",0.06],["cri",0.04],["max_hp_rate",0.06],["cri",0.05],["def_rate",0.04,"u"],["res",0.01,"u"],["cri",0.03,"u"],["max_hp_rate",0.03,"u"]],"s":"b90e","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecq6h_u","ct":1724030071,"e":93750,"f":"set_rage","g":5,"id":2615160698,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["max_hp_rate",0.06],["speed",4],["cri_dmg",0.05],["cri",0.05],["max_hp_rate",0.05],["max_hp_rate",0.06],["max_hp_rate",0.07],["speed",4],["max_hp_rate",0.04],["max_hp_rate",0.07,"u"],["speed",1,"u"],["cri_dmg",0.01,"u"],["cri",0.01,"u"]],"p":28393107,"s":"aa77","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6w_u","ct":1724219835,"e":93750,"f":"set_speed","g":5,"id":2618702426,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["cri_dmg",0.07],["speed",4],["att_rate",0.05],["max_hp_rate",0.04],["cri_dmg",0.04],["cri_dmg",0.04],["max_hp_rate",0.08],["speed",4],["speed",3],["cri_dmg",0.03,"u"],["speed",2,"u"],["att_rate",0.01,"u"],["max_hp_rate",0.03,"u"]],"p":559859822,"s":"15fc","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6a_u","ct":1724219865,"e":84470,"f":"set_speed","g":4,"id":2618702984,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["speed",2],["max_hp",166],["acc",0.06],["speed",3],["speed",4],["speed",3],["cri",0.03],["speed",2],["speed",4,"u"],["max_hp",56,"u"],["acc",0.01,"u"],["cri",0.01,"u"]],"s":"f394","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6r_u","ct":1724219888,"e":93803,"f":"set_speed","g":5,"id":2618703315,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["acc",0.04],["res",0.05],["def_rate",0.08],["speed",3],["acc",0.04],["acc",0.05],["def_rate",0.07],["acc",0.08],["acc",0.06],["acc",0.07,"u"],["res",0.01,"u"],["def_rate",0.03,"u"]],"s":"b104","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6h_u","ct":1724221408,"e":84470,"f":"set_speed","g":4,"id":2618727007,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["speed",4],["cri_dmg",0.07],["cri",0.03],["speed",4],["cri",0.04],["speed",2],["att_rate",0.08],["att_rate",0.08],["speed",2,"u"],["cri_dmg",0.01,"u"],["cri",0.02,"u"],["att_rate",0.03,"u"]],"p":96079748,"s":"e4b7","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecd6a","ct":1724290138,"f":"set_penetrate","g":5,"id":2619906285,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["cri_dmg",0.07],["acc",0.08],["max_hp_rate",0.07],["res",0.05]],"s":"e69c","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6n","ct":1724291185,"e":2973,"f":"set_speed","g":5,"id":2619935254,"l":true,"level":85,"mainStatBaseValue":0.13,"mainStatId":"cra6_neck_m","mainStatType":"cri_dmg","mainStatValue":0.65,"mg":1111,"op":[["cri_dmg",0.13],["acc",0.07],["att_rate",0.08],["res",0.08],["max_hp",185],["acc",0.07]],"s":"544c","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6h_u","ct":1724291488,"e":84375,"f":"set_speed","g":4,"id":2619943639,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["def_rate",0.08],["cri",0.05],["speed",4],["speed",4],["def_rate",0.06],["speed",3],["acc",0],["speed",2],["def_rate",0.03,"u"],["cri",0.01,"u"],["speed",3,"u"],["acc",0.01,"u"],["acc",0.07,"c","change2_acc_1_2"]],"p":225876663,"s":"8f37","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eal85b_u","ct":1724415131,"e":93750,"f":"set_cri_dmg","g":5,"id":2624623095,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["cri",0],["res",0.05],["def_rate",0.06],["cri_dmg",0.07],["cri_dmg",0.05],["cri_dmg",0.06],["def_rate",0.08],["def_rate",0.07],["def_rate",0.07],["cri",0.01,"u"],["res",0.01,"u"],["def_rate",0.05,"u"],["cri_dmg",0.03,"u"],["cri",0.04,"c","change2_cri_1_1"]],"p":434015426,"s":"f74a","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eal85b_u","ct":1724418596,"e":93750,"f":"set_speed","g":5,"id":2624757745,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["acc",0.06],["att",41],["cri_dmg",0.06],["att_rate",0.08],["acc",0.08],["att_rate",0.04],["att_rate",0.08],["att",43],["cri_dmg",0.07],["acc",0.03,"u"],["att",22,"u"],["cri_dmg",0.02,"u"],["att_rate",0.04,"u"]],"p":494187001,"s":"a736","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6a_u","ct":1724418796,"e":84375,"f":"set_cri","g":4,"id":2624766450,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri",0.05],["speed",3],["cri_dmg",0.04],["speed",4],["speed",2],["speed",3],["max_hp_rate",0.04],["cri",0.03],["cri",0.02,"u"],["speed",3,"u"],["cri_dmg",0.01,"u"],["max_hp_rate",0.01,"u"]],"p":96079748,"s":"fb11","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eal85r_u","ct":1724419767,"e":93750,"f":"set_speed","g":5,"id":2624806455,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,0],["speed",0],["max_hp_rate",0.04],["cri",0.03],["cri_dmg",0.06],["cri",0.05],["speed",0],["cri",0.05],["cri",0.05],["speed",0],["speed",2,"u"],["max_hp_rate",0.01,"u"],["cri",0.04,"u"],["cri_dmg",0.01,"u"],["speed",5,"c","change2_speed_3_2"]],"p":669363338,"s":"dd4b","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecg6a_u","ct":1724634647,"e":93804,"f":"set_max_hp","g":5,"id":2632932257,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri",0.03],["cri_dmg",0.07],["max_hp_rate",0.08],["max_hp",180],["max_hp_rate",0.07],["cri",0.03],["cri",0.04],["cri_dmg",0.05],["max_hp",198],["cri",0.03,"u"],["cri_dmg",0.02,"u"],["max_hp_rate",0.03,"u"],["max_hp",112,"u"]],"s":"e5a0","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eiu51w","ct":1724678510,"f":"set_rage","g":5,"id":2633919631,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"iu51_weap_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["att_rate",0.06],["max_hp_rate",0.06],["res",0.06],["cri_dmg",0.05]],"s":"9dfe","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6r_u","ct":1724678657,"e":93750,"f":"set_acc","g":5,"id":2633923246,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"acc","mainStatValue":0.65,"mg":1111,"op":[["acc",0.13,null,null,0],["att_rate",0.06],["cri_dmg",0.07],["speed",3],["max_hp",195],["speed",2],["max_hp",171],["speed",4],["speed",4],["max_hp",163],["att_rate",0.01,"u"],["cri_dmg",0.01,"u"],["speed",3,"u"],["max_hp",168,"u"]],"s":"5bb1","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6r_u","ct":1724678676,"e":84468,"f":"set_speed","g":4,"id":2633923676,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"res","mainStatValue":0.65,"mg":1111,"op":[["res",0.13,null,null,0],["cri",0.03],["acc",0.07],["speed",4],["speed",2],["acc",0.05],["speed",4],["max_hp",156],["acc",0.06],["cri",0.01,"u"],["acc",0.04,"u"],["speed",2,"u"],["max_hp",56,"u"]],"p":566472035,"s":"e1af","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6h","ct":1724678708,"e":82031,"f":"set_speed","g":5,"id":2633924624,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["max_hp_rate",0.05],["speed",2],["def_rate",0.08],["cri_dmg",0.05],["speed",2],["def_rate",0.04],["speed",4],["def_rate",0.05],["speed",2]],"p":742543115,"s":"8c0b","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eih7a","ct":1724679037,"e":93862,"f":"set_immune","g":5,"id":2633932344,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"imh_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.09],["def_rate",0.09],["speed",5],["cri",0.06],["def_rate",0.08],["speed",3],["cri",0.04],["def_rate",0.07],["speed",4]],"s":"f519","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6n_u","ct":1724679701,"e":84410,"f":"set_cri","g":4,"id":2633949204,"l":true,"level":90,"mainStatBaseValue":0.12,"mainStatId":"cra7_neck_m","mainStatType":"cri","mainStatValue":0.6,"mg":1111,"op":[["cri",0.12,null,null,0],["speed",3],["acc",0.07],["cri_dmg",0.05],["speed",4],["speed",3],["speed",2],["def_rate",0.08],["speed",4],["speed",4,"u"],["acc",0.01,"u"],["cri_dmg",0.01,"u"],["def_rate",0.01,"u"]],"s":"a331","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eot3n_u4","ct":1724681007,"e":93803,"f":"set_vampire","g":5,"id":2633982774,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ot3u_neck_m4","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["def_rate",0],["res",0.09],["cri_dmg",0.08],["speed",4],["res",0.07],["res",0.06],["speed",4],["cri_dmg",0.05],["def_rate",0],["def_rate",0.08,"c","change2_def_rate_2_1"]],"s":"a9c3","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6w_u","ct":1724726609,"e":93863,"f":"set_speed","g":5,"id":2634795450,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["res",0.08],["cri",0.05],["acc",0.04],["cri_dmg",0.07],["cri_dmg",0.06],["acc",0.05],["cri_dmg",0.05],["acc",0.08],["acc",0.08],["res",0.01,"u"],["cri",0.01,"u"],["acc",0.05,"u"],["cri_dmg",0.03,"u"]],"p":4647526,"s":"cc4e","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6n_u","ct":1724727095,"e":84375,"f":"set_speed","g":4,"id":2634807446,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["speed",4],["def_rate",0.05],["res",0.06],["speed",3],["def_rate",0.07],["speed",2],["max_hp",0],["speed",4],["speed",3,"u"],["def_rate",0.03,"u"],["res",0.01,"u"],["max_hp",56,"u"],["max_hp",177,"c","change2_max_hp_1_1"]],"p":620426700,"s":"9c62","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eal85b_u","ct":1724728260,"e":93750,"f":"set_speed","g":5,"id":2634834095,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["def",29],["acc",0.04],["max_hp_rate",0.07],["max_hp",0],["acc",0.08],["acc",0.06],["max_hp",0],["acc",0.05],["acc",0.07],["def",9,"u"],["acc",0.07,"u"],["max_hp_rate",0.01,"u"],["max_hp",112,"u"],["max_hp",323,"c","change2_max_hp_2_2"]],"p":403476926,"s":"43e9","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eiu32n","ct":1724730510,"e":93862,"f":"set_torrent","g":5,"id":2634885294,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"iu32_neck_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["max_hp_rate",0.08],["speed",4],["cri",0.05],["cri_dmg",0.07],["cri",0.03],["cri_dmg",0.05],["max_hp_rate",0.07],["max_hp_rate",0.09],["cri",0.03]],"s":"d140","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eal85r_u","ct":1724736483,"e":93750,"f":"set_speed","g":5,"id":2635023678,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,0],["max_hp_rate",0.07],["res",0.07],["acc",0.05],["speed",3],["res",0.06],["speed",2],["speed",2],["acc",0.06],["res",0.06],["max_hp_rate",0.01,"u"],["res",0.04,"u"],["acc",0.03,"u"],["speed",2,"u"]],"s":"780c","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eal85r_u","ct":1724737524,"e":93863,"f":"set_speed","g":5,"id":2635045827,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,0],["cri",0.05],["def_rate",0.06],["acc",0.07],["res",0.07],["res",0.08],["cri",0.04],["def_rate",0.07],["acc",0.08],["cri",0.05],["cri",0.03,"u"],["def_rate",0.03,"u"],["acc",0.03,"u"],["res",0.03,"u"]],"p":6844892,"s":"b380","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eiu21a","ct":1724749883,"e":12359,"f":"set_vampire","g":5,"id":2635285328,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"iu21_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.06],["speed",4],["res",0.06],["cri_dmg",0.05],["res",0.06],["res",0.05]],"s":"fb88","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eih6w","ct":1724749927,"e":93750,"f":"set_speed","g":5,"id":2635286170,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"imh_wepo_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.09],["att_rate",0.09],["speed",5],["cri",0.06],["cri",0.05],["max_hp_rate",0.09],["speed",3],["max_hp_rate",0.06],["att_rate",0.05]],"p":445022861,"s":"f0ec","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eah17w","ct":1724812999,"e":93861,"f":"set_max_hp","g":5,"id":2636470290,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"ah17_weap_m1","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.07],["att_rate",0.07],["speed",5],["res",0.07],["att_rate",0.08],["speed",3],["speed",3],["res",0.05],["speed",3]],"s":"0","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"exc110301","ct":1724815720,"g":5,"id":2636530703,"l":true,"mg":1111,"op":[["cri",0.07],["ek_c110301",2]],"s":"4495"},{"code":"exc110301","ct":1724815725,"g":5,"id":2636530788,"l":true,"mg":1111,"op":[["cri",0.1],["ek_c110301",3]],"s":"5cbb"},{"code":"exc110301","ct":1724815729,"g":5,"id":2636530872,"l":true,"mg":1111,"op":[["cri",0.11],["ek_c110301",2]],"p":704271358,"s":"924"},{"code":"ecq6a_u","ct":1724836561,"e":93750,"f":"set_immune","g":5,"id":2636942538,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["res",0.07],["max_hp",202],["cri",0.03],["speed",4],["res",0.05],["speed",2],["cri",0.05],["cri",0.05],["cri",0.04],["res",0.03,"u"],["max_hp",56,"u"],["cri",0.04,"u"],["speed",1,"u"]],"s":"60a9","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"exc110301","ct":1724851819,"g":5,"id":2637292181,"l":true,"mg":1111,"op":[["cri",0.12],["ek_c110301",1]],"s":"b881"},{"code":"eiu42h","ct":1725005436,"e":7695,"f":"set_coop","g":5,"id":2640767308,"level":88,"mainStatBaseValue":553,"mainStatId":"iu42_helm_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["att_rate",0.07],["speed",3],["cri",0.04],["acc",0.07],["speed",3],["att_rate",0.09]],"s":"4932","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"exc201101","ct":1725351993,"g":5,"id":2649103949,"mg":1111,"op":[["cri",0.1],["ek_c201101",2]],"s":"698f"},{"code":"exc201101","ct":1725351997,"g":5,"id":2649104055,"mg":1111,"op":[["cri",0.1],["ek_c201101",2]],"s":"a8e9"},{"code":"exc201101","ct":1725352007,"g":5,"id":2649104340,"mg":1111,"op":[["cri",0.12],["ek_c201101",3]],"s":"e4aa"},{"code":"exc201101","ct":1725352143,"g":5,"id":2649107724,"mg":1111,"op":[["cri",0.11],["ek_c201101",3]],"s":"bd86"},{"code":"exc201101","ct":1725352148,"g":5,"id":2649107842,"mg":1111,"op":[["cri",0.08],["ek_c201101",1]],"s":"7f14"},{"code":"exc201101","ct":1725352151,"g":5,"id":2649107916,"mg":1111,"op":[["cri",0.09],["ek_c201101",2]],"s":"5b30"},{"code":"exc201101","ct":1725352154,"g":5,"id":2649108011,"mg":1111,"op":[["cri",0.09],["ek_c201101",2]],"s":"2d07"},{"code":"exc201101","ct":1725352157,"g":5,"id":2649108099,"mg":1111,"op":[["cri",0.12],["ek_c201101",2]],"s":"9ee3"},{"code":"exc201101","ct":1725352159,"g":5,"id":2649108171,"l":true,"mg":1111,"op":[["cri",0.09],["ek_c201101",1]],"s":"85be"},{"code":"exc201101","ct":1725352164,"g":5,"id":2649108343,"mg":1111,"op":[["cri",0.07],["ek_c201101",2]],"s":"9624"},{"code":"exc201101","ct":1725352169,"g":5,"id":2649108506,"mg":1111,"op":[["cri",0.09],["ek_c201101",3]],"s":"532b"},{"code":"exc201101","ct":1725352172,"g":5,"id":2649108554,"mg":1111,"op":[["cri",0.1],["ek_c201101",3]],"s":"89ed"},{"code":"ela10n","ct":1725439613,"e":93750,"f":"set_cri_dmg","g":5,"id":2651059268,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"la10_neck_m","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["att_rate",0.09],["max_hp_rate",0.09],["speed",5],["cri",0.06],["speed",4],["max_hp_rate",0.06],["max_hp_rate",0.08],["max_hp_rate",0.05],["max_hp_rate",0.09]],"p":736028830,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ela10b","ct":1725507245,"e":93750,"f":"set_res","g":5,"id":2652931540,"l":true,"level":88,"mainStatBaseValue":9,"mainStatId":"la10_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9],["max_hp_rate",0.09],["def_rate",0.09],["res",0.09],["acc",0.09],["def_rate",0.06],["max_hp_rate",0.05],["res",0.05],["max_hp_rate",0.06],["def_rate",0.06]],"p":306770592,"s":"a67e","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6n_u","ct":1725603875,"e":84375,"f":"set_speed","g":4,"id":2656306221,"l":true,"level":90,"mainStatBaseValue":0.12,"mainStatId":"cra7_neck_m","mainStatType":"cri","mainStatValue":0.6,"mg":1111,"op":[["cri",0.12,null,null,0],["def_rate",0.07],["speed",4],["acc",0.07],["speed",2],["speed",4],["speed",3],["def",31],["def",29],["def_rate",0.01,"u"],["speed",3,"u"],["acc",0.01,"u"],["def",18,"u"]],"s":"7906","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecd6w_u","ct":1725605008,"e":93805,"f":"set_penetrate","g":5,"id":2656357198,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["att_rate",0.05],["res",0.04],["cri",0.05],["cri_dmg",0.04],["att_rate",0.08],["cri",0.05],["cri",0.05],["cri_dmg",0.04],["cri_dmg",0.05],["att_rate",0.03,"u"],["res",0.01,"u"],["cri",0.03,"u"],["cri_dmg",0.03,"u"]],"p":568417281,"s":"e5ea","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ela10a","ct":1725636483,"e":93862,"f":"set_cri_dmg","g":5,"id":2657825562,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"la10_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.09],["speed",5],["cri",0.06],["cri_dmg",0.08],["cri",0.04],["speed",4],["cri",0.04],["cri",0.04],["cri_dmg",0.07]],"s":"0","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ela10w","ct":1725695323,"e":93750,"f":"set_res","g":5,"id":2659693589,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"la10_wepo_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.09],["speed",5],["res",0.09],["acc",0.09],["acc",0.09],["speed",3],["acc",0.06],["speed",3],["res",0.08]],"p":28398305,"s":"0","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ela10r","ct":1725848392,"e":93750,"f":"set_cri_dmg","g":5,"id":2666109978,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"la10_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["max_hp_rate",0.09],["speed",5],["cri",0.06],["cri_dmg",0.08],["cri_dmg",0.06],["cri_dmg",0.07],["cri_dmg",0.04],["max_hp_rate",0.07],["cri",0.05]],"p":640588979,"s":"fc3e","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"esh2_w","ct":1726127600,"e":93750,"f":"set_cri_dmg","g":5,"id":2675663243,"l":true,"level":88,"mainStatBaseValue":103.0,"mainStatId":"esh2_weapon_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103.0],["att_rate",0.05],["speed",4.0],["cri",0.03],["cri_dmg",0.07],["speed",4.0],["cri",0.06],["cri_dmg",0.07],["att_rate",0.05],["att_rate",0.05]],"p":434015426,"s":"c897","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"esh2_h","ct":1726127614,"e":93750,"f":"set_cri_dmg","g":5,"id":2675665113,"l":true,"level":88,"mainStatBaseValue":553.0,"mainStatId":"esh2_helm_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553.0],["att_rate",0.05],["speed",4.0],["cri",0.03],["cri_dmg",0.07],["speed",4.0],["cri",0.06],["cri_dmg",0.07],["att_rate",0.05],["att_rate",0.05]],"p":461351155,"s":"60f5","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecq6a_u","ct":1726129494,"e":93750,"f":"set_immune","g":5,"id":2675911892,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["speed",3],["max_hp_rate",0.08],["acc",0.07],["cri",0.03],["cri",0.04],["cri",0.03],["max_hp_rate",0.06],["speed",2],["speed",4],["speed",2,"u"],["max_hp_rate",0.03,"u"],["acc",0.01,"u"],["cri",0.03,"u"]],"s":"426e","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ela10h","ct":1726146915,"e":93750,"f":"set_cri_dmg","g":5,"id":2677739007,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"la10_helm_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["max_hp_rate",0.09],["att_rate",0.09],["speed",5],["cri_dmg",0.08],["max_hp_rate",0.06],["max_hp_rate",0.08],["speed",3],["att_rate",0.07],["cri_dmg",0.07]],"s":"cdc8","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecd6a","ct":1726184072,"f":"set_torrent","g":5,"id":2679949564,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["acc",0.08],["max_hp",162],["max_hp_rate",0.08],["def_rate",0.07]],"s":"4750","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6r_u","ct":1726194389,"e":93750,"f":"set_speed","g":5,"id":2680882753,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["cri",0.04],["max_hp",198],["res",0.05],["cri_dmg",0.06],["res",0.07],["max_hp",199],["max_hp",202],["cri_dmg",0.06],["cri_dmg",0.04],["cri",0.01,"u"],["max_hp",168,"u"],["res",0.03,"u"],["cri_dmg",0.03,"u"]],"p":490684210,"s":"bb82","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecd6b_u","ct":1726194514,"e":93862,"f":"set_penetrate","g":5,"id":2680893341,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["res",0.06],["cri_dmg",0.07],["max_hp",175],["att_rate",0],["res",0.07],["att_rate",0],["cri_dmg",0.06],["max_hp",178],["max_hp",179],["res",0.03,"u"],["cri_dmg",0.02,"u"],["max_hp",168,"u"],["att_rate",0.03,"u"],["att_rate",0.07,"c","change2_att_rate_2_1"]],"p":591089796,"s":"d017","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecb6h_u","ct":1726194873,"e":93750,"f":"set_res","g":5,"id":2680923640,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["acc",0.08],["def_rate",0.06],["res",0],["max_hp_rate",0.06],["max_hp_rate",0.07],["def_rate",0.08],["acc",0.05],["max_hp_rate",0.04],["acc",0.04],["res",0.08,"c"],["acc",0.04,"u"],["def_rate",0.03,"u"],["res",0.01,"u"],["max_hp_rate",0.04,"u"]],"s":"90a4","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6b_u","ct":1726196318,"e":93803,"f":"set_speed","g":5,"id":2681045515,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["att_rate",0.08],["max_hp_rate",0.05],["acc",0.08],["cri",0.05],["acc",0.05],["acc",0.04],["att_rate",0.07],["max_hp_rate",0.06],["att_rate",0.07],["att_rate",0.04,"u"],["max_hp_rate",0.03,"u"],["acc",0.04,"u"],["cri",0.01,"u"]],"p":568417281,"s":"c218","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecs17h","ct":1726214399,"e":93750,"f":"set_res","g":5,"id":2682312400,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"cs17_helm_m1","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["max_hp_rate",0.08],["def_rate",0.08],["speed",4],["res",0.08],["speed",4],["def_rate",0.07],["res",0.06],["max_hp_rate",0.06],["def_rate",0.07]],"p":279573776,"s":"4008","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecd6w_u","ct":1726283282,"e":93750,"f":"set_torrent","g":5,"id":2686636878,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["att_rate",0.04],["cri",0.03],["acc",0.06],["res",0.07],["res",0.08],["res",0.05],["res",0.05],["att_rate",0.06],["res",0.07],["att_rate",0.03,"u"],["cri",0.01,"u"],["acc",0.01,"u"],["res",0.07,"u"]],"s":"de89","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6r","ct":1726313462,"e":82031,"f":"set_speed","g":5,"id":2688489404,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["def_rate",0.04],["max_hp_rate",0.07],["speed",4],["cri_dmg",0.07],["def_rate",0.05],["speed",2],["cri_dmg",0.05],["max_hp_rate",0.07],["max_hp_rate",0.07]],"p":323638178,"s":"f2e6","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6r_u","ct":1726313474,"e":93750,"f":"set_speed","g":5,"id":2688490204,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["res",0.07],["cri_dmg",0.07],["speed",3],["att",38],["speed",3],["res",0.06],["cri_dmg",0.06],["speed",3],["att",43],["res",0.03,"u"],["cri_dmg",0.02,"u"],["speed",2,"u"],["att",22,"u"]],"p":326831592,"s":"c95b","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6a","ct":1726313506,"e":82031,"f":"set_speed","g":5,"id":2688491984,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["acc",0.04],["max_hp_rate",0.06],["max_hp",195],["speed",4],["max_hp_rate",0.06],["max_hp",169],["max_hp_rate",0.04],["max_hp",158],["acc",0.05]],"s":"32c5","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ess15r","ct":1726314517,"e":82031,"f":"set_speed","g":5,"id":2688553281,"l":true,"level":78,"mainStatBaseValue":0.12,"mainStatId":"ss15_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["def_rate",0.07],["speed",4],["res",0.07],["acc",0.07],["def_rate",0.05],["def_rate",0.04],["def_rate",0.05],["acc",0.06],["def_rate",0.05]],"s":"67c1","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecb6b_u","ct":1726319020,"e":93750,"f":"set_res","g":5,"id":2688850767,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["max_hp_rate",0],["res",0.08],["def_rate",0.06],["cri_dmg",0.04],["res",0.05],["cri_dmg",0.06],["res",0.08],["res",0.06],["def_rate",0.06],["max_hp_rate",0.01,"u"],["res",0.05,"u"],["def_rate",0.03,"u"],["cri_dmg",0.02,"u"],["max_hp_rate",0.08,"c","change2_max_hp_rate_1_2"]],"p":566472035,"s":"a1d8","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"edd6b","ct":1726329177,"f":"set_torrent","g":5,"id":2689550756,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"edw6_boot_m","mainStatType":"def_rate","mainStatValue":0.6,"mg":1111,"op":[["def_rate",0.12],["cri_dmg",0.06],["max_hp_rate",0.08],["speed",4],["res",0.07]],"s":"6b31","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"esh2_a","ct":1726367875,"e":93750,"f":"set_cri_dmg","g":5,"id":2692206689,"level":88,"mainStatBaseValue":62.0,"mainStatId":"esh2_armor_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62.0],["max_hp_rate",0.07],["speed",3.0],["cri",0.03],["cri_dmg",0.08],["speed",3.0],["speed",3.0],["cri",0.04],["cri",0.05],["cri_dmg",0.07]],"p":704271358,"s":"6257","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6n","ct":1726378990,"e":82031,"f":"set_speed","g":5,"id":2693476479,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["speed",4],["res",0.06],["att_rate",0.05],["cri",0.03],["att_rate",0.06],["speed",3],["att_rate",0.07],["att_rate",0.08],["cri",0.03]],"s":"3843","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"edb6h","ct":1726386511,"e":82086,"f":"set_res","g":5,"id":2694238022,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"edw6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["acc",0.08],["att_rate",0.08],["res",0.07],["cri",0.05],["acc",0.06],["acc",0.08],["cri",0.04],["cri",0.04],["cri",0.03]],"s":"98bf","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6h_u","ct":1726389383,"e":93803,"f":"set_res","g":5,"id":2694514807,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["def_rate",0.07],["att_rate",0.05],["max_hp_rate",0.08],["res",0.08],["att_rate",0.07],["max_hp_rate",0.06],["def_rate",0.07],["def_rate",0.05],["res",0.07],["def_rate",0.04,"u"],["att_rate",0.03,"u"],["max_hp_rate",0.03,"u"],["res",0.03,"u"]],"s":"5daf","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6a","ct":1726390271,"e":82085,"f":"set_res","g":5,"id":2694599816,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["speed",4],["max_hp_rate",0.06],["max_hp",186],["cri",0.04],["max_hp",201],["max_hp",176],["speed",3],["speed",3],["max_hp_rate",0.06]],"s":"adac","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecd6h_u","ct":1726391583,"e":93750,"f":"set_torrent","g":5,"id":2694723564,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["max_hp_rate",0.08],["att_rate",0.08],["cri",0.03],["att",45],["cri",0.04],["cri",0.05],["max_hp_rate",0.08],["max_hp_rate",0.08],["att",41],["max_hp_rate",0.04,"u"],["att_rate",0.01,"u"],["cri",0.03,"u"],["att",22,"u"]],"s":"6cf","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecd6n","ct":1726393242,"e":3964,"f":"set_penetrate","g":5,"id":2694880757,"l":true,"level":85,"mainStatBaseValue":0.11,"mainStatId":"cra6_neck_m","mainStatType":"cri","mainStatValue":0.55,"mg":1111,"op":[["cri",0.11],["max_hp_rate",0.06],["def_rate",0.07],["cri_dmg",0.05],["speed",2],["def_rate",0.07]],"s":"aa3c","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"esh2_b","ct":1726456289,"e":93750,"f":"set_cri_dmg","g":5,"id":2699991803,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"esh2_boot_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["max_hp_rate",0.06],["speed",3.0],["cri",0.03],["cri_dmg",0.07],["speed",4.0],["cri",0.04],["cri",0.04],["cri",0.04],["cri_dmg",0.08]],"p":738614105,"s":"a7b3","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6w","ct":1726480262,"e":82031,"f":"set_speed","g":5,"id":2702530260,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["att_rate",0.05],["res",0.06],["cri_dmg",0.06],["speed",3],["cri_dmg",0.04],["speed",4],["speed",2],["att_rate",0.05],["res",0.06]],"s":"bbbc","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"esh2_r","ct":1726709847,"e":93750,"f":"set_cri_dmg","g":5,"id":2718024954,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"esh2_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["max_hp_rate",0.07],["speed",3.0],["cri",0.03],["cri_dmg",0.05],["speed",4.0],["speed",3.0],["cri",0.05],["cri",0.05],["cri_dmg",0.07]],"p":738614105,"s":"850","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6w_u","ct":1726710104,"e":84469,"f":"set_speed","g":4,"id":2718044032,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["max_hp_rate",0.08],["acc",0.04],["speed",3],["speed",3],["speed",3],["speed",4],["att_rate",0.05],["acc",0.04],["max_hp_rate",0.01,"u"],["acc",0.03,"u"],["speed",3,"u"],["att_rate",0.01,"u"]],"p":649028156,"s":"9d4d","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"esh2_n","ct":1726710107,"e":93750,"f":"set_cri_dmg","g":5,"id":2718044295,"level":88,"mainStatBaseValue":0.14,"mainStatId":"esh2_neck_m","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["max_hp_rate",0.07],["att_rate",0.06],["speed",4.0],["cri",0.03],["att_rate",0.09],["speed",5.0],["cri",0.03],["cri",0.04],["cri",0.03]],"s":"3b5","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecb6a","ct":1726710492,"e":73828,"f":"set_res","g":4,"id":2718072924,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["speed",4],["res",0.08],["def_rate",0.04],["speed",4],["speed",3],["res",0.07],["cri_dmg",0.06],["res",0.05]],"s":"dda","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"edw6b_u","ct":1726714321,"e":93750,"f":"set_speed","g":5,"id":2718350089,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["acc",0.08],["cri_dmg",0.06],["def_rate",0.07],["cri",0.05],["acc",0.05],["cri",0.04],["cri",0.03],["def_rate",0.06],["cri_dmg",0.04],["acc",0.03,"u"],["cri_dmg",0.02,"u"],["def_rate",0.03,"u"],["cri",0.03,"u"]],"s":"65de","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6w_u","ct":1726716294,"e":93750,"f":"set_speed","g":5,"id":2718495589,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["cri_dmg",0],["speed",4],["att_rate",0.07],["cri",0.04],["speed",2],["att_rate",0.08],["cri",0.04],["cri",0.05],["cri",0.03],["cri_dmg",0.01,"u"],["speed",1,"u"],["att_rate",0.03,"u"],["cri",0.04,"u"],["cri_dmg",0.07,"c","change2_cri_dmg_1_2"]],"s":"b180","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6a_u","ct":1726718102,"e":93750,"f":"set_speed","g":5,"id":2718616445,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["acc",0.08],["res",0.04],["max_hp_rate",0.06],["speed",2],["speed",4],["speed",4],["max_hp_rate",0.06],["acc",0.07],["acc",0.08],["acc",0.04,"u"],["res",0.01,"u"],["max_hp_rate",0.03,"u"],["speed",2,"u"]],"s":"25c6","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecd6h_u","ct":1726718102,"e":93750,"f":"set_torrent","g":5,"id":2718616448,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["att_rate",0],["cri",0.03],["speed",3],["cri_dmg",0.04],["speed",4],["speed",3],["cri_dmg",0.05],["cri",0.05],["cri",0.03],["att_rate",0.01,"u"],["cri",0.03,"u"],["speed",2,"u"],["cri_dmg",0.02,"u"],["att_rate",0.07,"c","change2_att_rate_1_2"]],"p":11185757,"s":"2f4b","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eiu41w","ct":1726731113,"e":93750,"f":"set_immune","g":5,"id":2719411286,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"iu41_weap_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.09],["att_rate",0.09],["speed",5],["cri",0.06],["speed",4],["att_rate",0.08],["att_rate",0.05],["att_rate",0.05],["max_hp_rate",0.09]],"p":559859824,"s":"a293","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eiu32h","ct":1726736225,"f":"set_cri","g":5,"id":2719666637,"level":88,"mainStatBaseValue":553,"mainStatId":"iu32_helm_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["att_rate",0.07],["max_hp_rate",0.07],["cri",0.04],["cri_dmg",0.06]],"s":"1e45","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecq6h_u","ct":1726736489,"e":93862,"f":"set_immune","g":5,"id":2719679101,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["speed",2],["max_hp_rate",0.08],["res",0.07],["acc",0.07],["max_hp_rate",0.07],["max_hp_rate",0.08],["acc",0.05],["speed",4],["acc",0.07],["speed",1,"u"],["max_hp_rate",0.04,"u"],["res",0.01,"u"],["acc",0.04,"u"]],"s":"8891","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6h","ct":1726737959,"e":82031,"f":"set_speed","g":5,"id":2719749549,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["max_hp_rate",0.05],["speed",3],["att_rate",0.06],["cri_dmg",0.06],["speed",2],["speed",2],["att_rate",0.06],["speed",4],["max_hp_rate",0.07]],"s":"79a9","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"edd6a","ct":1726795423,"e":6704,"f":"set_torrent","g":5,"id":2722631365,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"edw6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["cri_dmg",0.07],["res",0.08],["acc",0.07],["cri",0.04],["cri",0.03],["acc",0.04]],"s":"f796","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"esh2_w","ct":1727019785,"e":93803,"f":"set_penetrate","g":5,"id":2740001755,"l":true,"level":88,"mainStatBaseValue":103.0,"mainStatId":"esh2_weapon_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103.0],["att_rate",0.08],["speed",5.0],["cri",0.06],["cri_dmg",0.07],["cri",0.04],["speed",4],["speed",4],["att_rate",0.09],["att_rate",0.06]],"p":704271358,"s":"47cc","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6a_u","ct":1727053282,"e":93803,"f":"set_speed","g":5,"id":2742107825,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri_dmg",0.07],["speed",4],["max_hp_rate",0.05],["acc",0.06],["acc",0.08],["max_hp_rate",0.08],["acc",0.06],["acc",0.04],["acc",0.05],["cri_dmg",0.01,"u"],["max_hp_rate",0.03,"u"],["acc",0.07,"u"]],"s":"61b7","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a_u","ct":1727056905,"e":93750,"f":"set_speed","g":5,"id":2742433564,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["def_rate",0.07],["acc",0.07],["cri_dmg",0.05],["speed",4],["speed",4],["speed",3],["speed",2],["cri_dmg",0.05],["speed",2],["def_rate",0.01,"u"],["acc",0.01,"u"],["cri_dmg",0.02,"u"],["speed",4,"u"]],"p":713583798,"s":"b3f8","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecd6w","ct":1727061158,"e":73828,"f":"set_torrent","g":4,"id":2742813770,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["speed",4],["att_rate",0.07],["max_hp_rate",0.04],["speed",2],["speed",3],["speed",3],["res",0.04],["res",0.08]],"s":"dd1e","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecq6h","ct":1727061399,"f":"set_immune","g":5,"id":2742835320,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["att",41],["max_hp_rate",0.08],["att_rate",0.05],["cri",0.05]],"s":"120f","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecq6n_u","ct":1727062000,"e":84411,"f":"set_immune","g":4,"id":2742885924,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_neck_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["def_rate",0.08],["att",38],["speed",3],["speed",4],["speed",4],["speed",3],["def",27],["def_rate",0.07],["def_rate",0.03,"u"],["att",11,"u"],["speed",3,"u"],["def",9,"u"]],"s":"71a8","statMultiplier":2.25,"tierMultiplier":1,"type":"neck"},{"code":"ecd6a_u","ct":1727064990,"e":93750,"f":"set_penetrate","g":5,"id":2743133933,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri",0.05],["cri_dmg",0.05],["speed",4],["def_rate",0.06],["def_rate",0.07],["speed",2],["cri",0.04],["def_rate",0.07],["speed",2],["cri",0.02,"u"],["cri_dmg",0.01,"u"],["speed",2,"u"],["def_rate",0.04,"u"]],"p":525461035,"s":"d0c1","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"exc205001","ct":1727065175,"g":5,"id":2743149764,"l":true,"mg":1111,"op":[["att_rate",0.11],["ek_c205001",1]],"p":99507012,"s":"2adc"},{"code":"esh2_h","ct":1727135902,"e":93750,"f":"set_penetrate","g":5,"id":2747790086,"l":true,"level":88,"mainStatBaseValue":553.0,"mainStatId":"esh2_helm_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553.0],["att_rate",0.08],["speed",5.0],["cri",0.06],["cri_dmg",0.07],["speed",4],["speed",4],["cri_dmg",0.08],["cri",0.05],["speed",4]],"s":"c762","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecq6r_u","ct":1727234411,"e":84375,"f":"set_immune","g":4,"id":2753718178,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,0],["speed",4],["res",0.05],["max_hp_rate",0.07],["speed",4],["speed",3],["res",0.04],["cri",0.03],["speed",4],["speed",3,"u"],["res",0.03,"u"],["max_hp_rate",0.01,"u"],["cri",0.01,"u"]],"p":713583798,"s":"5b61","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecd6w_u","ct":1727328848,"e":93750,"f":"set_penetrate","g":5,"id":2757717606,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["max_hp_rate",0.06],["att_rate",0.05],["speed",3],["cri",0.04],["att_rate",0.07],["att_rate",0.07],["max_hp_rate",0.06],["max_hp_rate",0.07],["cri",0.04],["max_hp_rate",0.04,"u"],["att_rate",0.04,"u"],["cri",0.02,"u"]],"s":"417e","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"esh2_a","ct":1727354610,"e":93750,"f":"set_penetrate","g":5,"id":2759299905,"l":true,"level":88,"mainStatBaseValue":62.0,"mainStatId":"esh2_armor_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62.0],["max_hp_rate",0.08],["speed",5.0],["cri",0.06],["cri_dmg",0.07],["cri_dmg",0.05],["max_hp_rate",0.09],["cri",0.03],["cri",0.04],["max_hp_rate",0.06]],"s":"19cb","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"edw6h_u","ct":1727449335,"e":93750,"f":"set_speed","g":5,"id":2763713599,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["res",0.08],["def_rate",0.08],["cri",0.05],["max_hp_rate",0.08],["res",0.04],["res",0.07],["max_hp_rate",0.04],["def_rate",0.05],["max_hp_rate",0.05],["res",0.04,"u"],["def_rate",0.03,"u"],["cri",0.01,"u"],["max_hp_rate",0.04,"u"]],"p":829105288,"s":"5003","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"esh2_b","ct":1727484946,"e":93861,"f":"set_penetrate","g":5,"id":2765283125,"l":true,"level":88,"mainStatBaseValue":9.0,"mainStatId":"esh2_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9.0],["max_hp_rate",0.08],["att_rate",0.08],["cri",0.06],["cri_dmg",0.08],["max_hp_rate",0.05],["att_rate",0.08],["cri_dmg",0.05],["att_rate",0.06],["cri",0.06]],"s":"2b01","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecb6w_u","ct":1727490726,"e":93750,"f":"set_cri_dmg","g":5,"id":2765718636,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["att_rate",0.07],["speed",4],["cri",0.03],["max_hp_rate",0.04],["speed",3],["max_hp_rate",0.08],["max_hp_rate",0.05],["speed",3],["max_hp_rate",0.06],["att_rate",0.01,"u"],["speed",2,"u"],["cri",0.01,"u"],["max_hp_rate",0.05,"u"]],"p":784315107,"s":"4f9e","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6a_u","ct":1727514575,"e":93750,"f":"set_acc","g":5,"id":2767325455,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp_rate",0.08],["max_hp",0],["def_rate",0.05],["res",0.05],["res",0.07],["res",0.08],["res",0.08],["max_hp_rate",0.07],["max_hp",0],["max_hp_rate",0.03,"u"],["max_hp",112,"u"],["def_rate",0.01,"u"],["res",0.05,"u"],["max_hp",323,"c","change2_max_hp_2_2"]],"p":566472035,"s":"7e2a","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eiu12a","ct":1727580903,"f":"set_scar","g":5,"id":2770828016,"level":88,"mainStatBaseValue":62,"mainStatId":"iu12_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.07],["def_rate",0.07],["cri",0.04],["cri_dmg",0.06]],"s":"e32a","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"esh2_r","ct":1727701394,"e":93750,"f":"set_penetrate","g":5,"id":2776372648,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"esh2_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["max_hp_rate",0.08],["speed",5.0],["cri",0.06],["cri_dmg",0.07],["speed",3],["max_hp_rate",0.08],["cri",0.05],["cri_dmg",0.05],["max_hp_rate",0.08]],"p":704271358,"s":"8a98","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eiu51r","ct":1727704201,"e":93750,"f":"set_res","g":5,"id":2776521515,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"iu51_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["acc",0.06],["att_rate",0.06],["def_rate",0.06],["res",0.06],["def_rate",0.06],["att_rate",0.07],["att_rate",0.05],["res",0.08],["res",0.06]],"p":412803674,"s":"6d13","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"edd6n","ct":1727705256,"e":8161,"f":"set_torrent","g":5,"id":2776578064,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"edw6_neck_m","mainStatType":"def_rate","mainStatValue":0.6,"mg":1111,"op":[["def_rate",0.12],["cri_dmg",0.06],["res",0.08],["speed",3],["cri",0.05],["res",0.08],["cri_dmg",0.05]],"s":"e98f","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecd6h","ct":1727705422,"e":17723,"f":"set_penetrate","g":5,"id":2776586425,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["def_rate",0.06],["att_rate",0.06],["cri_dmg",0.07],["acc",0.08],["acc",0.08],["def_rate",0.07],["acc",0.07]],"s":"629c","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eih9n","ct":1727749318,"e":93750,"f":"set_penetrate","g":5,"id":2779416145,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"imh_neck_m11","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["max_hp_rate",0.09],["cri",0.06],["speed",5],["att_rate",0.09],["att_rate",0.05],["att_rate",0.07],["att_rate",0.08],["max_hp_rate",0.07],["max_hp_rate",0.07]],"s":"8a38","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6a","ct":1727755249,"f":"set_speed","g":5,"id":2780143769,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["max_hp_rate",0.08],["def_rate",0.07],["cri_dmg",0.06],["acc",0.04]],"s":"4e0d","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a_u","ct":1727765164,"e":84469,"f":"set_cri","g":4,"id":2781271794,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["speed",4],["cri",0.05],["cri_dmg",0.04],["speed",4],["speed",3],["speed",4],["acc",0.08],["speed",3],["speed",4,"u"],["cri",0.01,"u"],["cri_dmg",0.01,"u"],["acc",0.01,"u"]],"p":583954927,"s":"c0d2","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6n","ct":1727839580,"e":7229,"f":"set_speed","g":5,"id":2787291270,"level":85,"mainStatBaseValue":0.13,"mainStatId":"cra6_neck_m","mainStatType":"cri_dmg","mainStatValue":0.65,"mg":1111,"op":[["cri_dmg",0.13],["def",34],["cri",0.03],["att_rate",0.05],["max_hp_rate",0.07],["att_rate",0.05],["def",32]],"p":313109293,"s":"524a","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"edq6a_u","ct":1727846797,"e":93861,"f":"set_immune","g":5,"id":2787922297,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri_dmg",0.06],["res",0.08],["speed",3],["cri",0.04],["cri_dmg",0.04],["cri",0.03],["speed",3],["cri_dmg",0.06],["cri_dmg",0.06],["cri_dmg",0.04,"u"],["res",0.01,"u"],["speed",1,"u"],["cri",0.02,"u"]],"s":"fc64","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecq6w_u","ct":1727847366,"e":93804,"f":"set_immune","g":5,"id":2787971093,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["att_rate",0.08],["cri",0.03],["max_hp_rate",0.07],["cri_dmg",0.06],["cri",0.05],["cri",0.05],["cri_dmg",0.07],["att_rate",0.04],["max_hp_rate",0.07],["att_rate",0.03,"u"],["cri",0.03,"u"],["max_hp_rate",0.03,"u"],["cri_dmg",0.02,"u"]],"s":"93ef","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecq6n_u","ct":1727847764,"e":84375,"f":"set_immune","g":4,"id":2788003768,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["acc",0.06],["speed",2],["res",0.06],["speed",2],["speed",2],["speed",4],["cri",0.03],["speed",2],["acc",0.01,"u"],["speed",4,"u"],["res",0.01,"u"],["cri",0.01,"u"]],"s":"eb0e","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6b_u","ct":1727848096,"e":93750,"f":"set_speed","g":5,"id":2788030981,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["att_rate",0.05],["def_rate",0.06],["speed",2],["cri",0.05],["def_rate",0.06],["def_rate",0.05],["def_rate",0.07],["cri",0.04],["cri",0.05],["att_rate",0.01,"u"],["def_rate",0.05,"u"],["cri",0.03,"u"]],"p":769932771,"s":"2b08","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6w","ct":1727848846,"e":82031,"f":"set_speed","g":5,"id":2788092014,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["speed",4],["max_hp",180],["res",0.06],["cri_dmg",0.07],["cri_dmg",0.04],["speed",4],["res",0.08],["cri_dmg",0.07],["max_hp",200]],"s":"b701","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecq6h_u","ct":1727849475,"e":93750,"f":"set_immune","g":5,"id":2788143526,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["att_rate",0.08],["cri_dmg",0],["max_hp_rate",0.08],["cri",0.04],["cri",0.04],["max_hp_rate",0.08],["att_rate",0.08],["cri",0.05],["max_hp_rate",0.08],["att_rate",0.03,"u"],["cri_dmg",0.01,"u"],["max_hp_rate",0.04,"u"],["cri",0.03,"u"],["cri_dmg",0.07,"c","change2_cri_dmg_1_1"]],"p":738614105,"s":"f661","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"esh2_n","ct":1727850630,"e":93750,"f":"set_penetrate","g":5,"id":2788238042,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"esh2_neck_m","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["max_hp_rate",0.08],["speed",5.0],["cri",0.06],["att_rate",0.08],["cri",0.06],["cri",0.03],["att_rate",0.06],["speed",4],["max_hp_rate",0.06]],"p":704271358,"s":"e2cb","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecd6n_u","ct":1727868519,"e":93862,"f":"set_penetrate","g":5,"id":2789534797,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["cri",0.04],["att_rate",0.07],["max_hp",189],["cri_dmg",0.04],["max_hp",181],["cri_dmg",0.06],["cri",0.05],["att_rate",0.04],["max_hp",169],["cri",0.02,"u"],["att_rate",0.03,"u"],["max_hp",168,"u"],["cri_dmg",0.02,"u"]],"p":784315107,"s":"b536","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecq6a","ct":1727873979,"e":82086,"f":"set_immune","g":5,"id":2789937479,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["res",0.08],["def_rate",0.07],["cri_dmg",0.05],["speed",4],["cri_dmg",0.04],["speed",3],["res",0.07],["res",0.05],["cri_dmg",0.07]],"s":"b93","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6n_u","ct":1727875446,"e":84375,"f":"set_speed","g":4,"id":2790054639,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_neck_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["max_hp",151],["acc",0.06],["speed",4],["speed",2],["speed",2],["speed",2],["att_rate",0.04],["speed",3],["max_hp",56,"u"],["acc",0.01,"u"],["speed",4,"u"],["att_rate",0.01,"u"]],"p":649028156,"s":"4cd6","statMultiplier":1.67,"tierMultiplier":1,"type":"neck"},{"code":"ecq6w_u","ct":1727875720,"e":93805,"f":"set_immune","g":5,"id":2790077347,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["res",0.08],["cri",0.03],["speed",4],["cri_dmg",0.06],["cri",0.04],["cri_dmg",0.07],["speed",3],["speed",4],["cri",0.04],["res",0.01,"u"],["cri",0.03,"u"],["speed",2,"u"],["cri_dmg",0.02,"u"]],"p":690904230,"s":"25b0","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6w_u","ct":1728032289,"e":93863,"f":"set_acc","g":5,"id":2800092852,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["res",0.07],["speed",4],["cri_dmg",0.07],["cri",0.04],["res",0.07],["speed",4],["cri",0.04],["res",0.08],["cri",0.03],["res",0.04,"u"],["speed",1,"u"],["cri_dmg",0.01,"u"],["cri",0.03,"u"]],"s":"93fd","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"esh2_w","ct":1728044263,"e":93750,"f":"set_max_hp","g":5,"id":2800777188,"l":true,"level":88,"mainStatBaseValue":103.0,"mainStatId":"esh2_weapon_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103.0],["max_hp_rate",0.06],["speed",4.0],["res",0.06],["acc",0.06],["speed",3.0],["speed",3.0],["max_hp_rate",0.08],["max_hp_rate",0.08],["max_hp_rate",0.08]],"p":892353109,"s":"bfb7","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"esh2_h","ct":1728045162,"e":93750,"f":"set_max_hp","g":5,"id":2800834495,"l":true,"level":88,"mainStatBaseValue":553.0,"mainStatId":"esh2_helm_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553.0],["max_hp_rate",0.06],["def_rate",0.07],["speed",4.0],["res",0.06],["speed",4.0],["def_rate",0.08],["max_hp_rate",0.07],["max_hp_rate",0.06],["max_hp_rate",0.06]],"p":412803674,"s":"19d8","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eah21b","ct":1728216109,"e":93862,"f":"set_cri_dmg","g":5,"id":2808918406,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ah21_boot_m1","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["speed",5],["cri",0.05],["cri_dmg",0.06],["max_hp_rate",0.07],["speed",3],["cri",0.03],["max_hp_rate",0.06],["cri",0.04],["speed",3]],"p":640588979,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"edq6a_u","ct":1728218342,"e":93750,"f":"set_immune","g":5,"id":2809025952,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["acc",0.08],["speed",3],["cri_dmg",0.06],["max_hp_rate",0.08],["cri_dmg",0.05],["cri_dmg",0.05],["max_hp_rate",0.06],["cri_dmg",0.07],["speed",2],["acc",0.01,"u"],["speed",1,"u"],["cri_dmg",0.04,"u"],["max_hp_rate",0.03,"u"]],"s":"6011","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a_u","ct":1728281646,"e":84375,"f":"set_speed","g":4,"id":2811860719,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["def_rate",0.08],["max_hp_rate",0.07],["res",0.08],["res",0.08],["def_rate",0.07],["res",0.07],["cri",0.05],["cri",0.03],["def_rate",0.03,"u"],["max_hp_rate",0.01,"u"],["res",0.04,"u"],["cri",0.02,"u"]],"p":6885517,"s":"5256","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"esh2_a","ct":1728430729,"e":93750,"f":"set_max_hp","g":5,"id":2818037837,"l":true,"level":88,"mainStatBaseValue":62.0,"mainStatId":"esh2_armor_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62.0],["max_hp_rate",0.06],["def_rate",0.06],["speed",4.0],["res",0.06],["max_hp_rate",0.06],["max_hp_rate",0.06],["max_hp_rate",0.06],["def_rate",0.09],["speed",4.0]],"p":354206748,"s":"2c6b","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecg6r_u","ct":1728437115,"e":93750,"f":"set_max_hp","g":5,"id":2818365284,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["cri_dmg",0.07],["acc",0.04],["def_rate",0.05],["att_rate",0.08],["def_rate",0.07],["att_rate",0.07],["cri_dmg",0.05],["cri_dmg",0.04],["att_rate",0.04],["cri_dmg",0.03,"u"],["acc",0.01,"u"],["def_rate",0.03,"u"],["att_rate",0.04,"u"]],"p":326928979,"s":"9667","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"esh2_b","ct":1728516165,"e":93750,"f":"set_max_hp","g":5,"id":2821437906,"l":true,"level":88,"mainStatBaseValue":9.0,"mainStatId":"esh2_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9.0],["max_hp_rate",0.06],["def_rate",0.06],["res",0.06],["acc",0.06],["max_hp_rate",0.07],["max_hp_rate",0.07],["max_hp_rate",0.08],["def_rate",0.08],["def_rate",0.07]],"p":781837305,"s":"c034","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecd6h_u","ct":1728565154,"e":93862,"f":"set_penetrate","g":5,"id":2824899877,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["att_rate",0.05],["res",0.08],["def_rate",0.06],["cri_dmg",0.06],["cri_dmg",0.07],["res",0.07],["res",0.04],["att_rate",0.07],["cri_dmg",0.07],["att_rate",0.03,"u"],["res",0.04,"u"],["def_rate",0.01,"u"],["cri_dmg",0.03,"u"]],"s":"4bfa","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecd6n","ct":1728565775,"e":82031,"f":"set_torrent","g":5,"id":2824952545,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["att_rate",0.05],["cri_dmg",0.06],["acc",0.05],["cri",0.04],["cri",0.05],["att_rate",0.05],["att_rate",0.08],["cri",0.03],["att_rate",0.06]],"s":"4598","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecd6a_u","ct":1728565890,"e":93750,"f":"set_penetrate","g":5,"id":2824962390,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["def_rate",0.06],["cri_dmg",0.04],["max_hp_rate",0.08],["cri",0.05],["cri_dmg",0.07],["cri",0.04],["cri_dmg",0.05],["max_hp_rate",0.04],["max_hp_rate",0.06],["def_rate",0.01,"u"],["cri_dmg",0.03,"u"],["max_hp_rate",0.04,"u"],["cri",0.02,"u"]],"s":"2cb5","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecq6a_u","ct":1728566307,"e":93750,"f":"set_immune","g":5,"id":2824998894,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["res",0.06],["def_rate",0.07],["max_hp_rate",0],["speed",4],["res",0.07],["res",0.05],["res",0.05],["res",0.08],["def_rate",0.06],["res",0.07,"u"],["def_rate",0.03,"u"],["max_hp_rate",0.01,"u"],["max_hp_rate",0.08,"c","change2_max_hp_rate_1_2"]],"p":893757497,"s":"79dd","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"edg6n_u","ct":1728609377,"e":93750,"f":"set_max_hp","g":5,"id":2827188730,"l":true,"level":90,"mainStatBaseValue":0.14,"mainStatId":"cra7_neck_m","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14,null,null,0],["cri",0.05],["def_rate",0.07],["speed",4],["acc",0.07],["speed",3],["acc",0.05],["acc",0.07],["acc",0.08],["speed",4],["cri",0.01,"u"],["def_rate",0.01,"u"],["speed",2,"u"],["acc",0.05,"u"]],"s":"359e","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecl24r","ct":1728609529,"e":93750,"f":"set_speed","g":5,"id":2827197935,"l":true,"level":0,"mg":1111,"name":"Unknown","op":[["att_rate",0.13,null,null,1],["max_hp_rate",0.09],["cri",0.06],["cri_dmg",0.08],["speed",5],["speed",3],["cri_dmg",0.06],["cri_dmg",0.04],["speed",4],["max_hp_rate",0.08]],"p":795195383,"s":"7f65"},{"code":"ecg6r_u","ct":1728610221,"e":93750,"f":"set_max_hp","g":5,"id":2827241316,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["acc",0.07],["res",0.07],["def_rate",0.05],["max_hp",193],["acc",0.06],["max_hp",195],["acc",0.04],["res",0.04],["def_rate",0.05],["acc",0.04,"u"],["res",0.03,"u"],["def_rate",0.03,"u"],["max_hp",112,"u"]],"p":894623419,"s":"e6a3","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"edw6r_u","ct":1728610816,"e":93805,"f":"set_speed","g":5,"id":2827277223,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["att_rate",0.07],["def_rate",0.08],["acc",0.08],["cri",0.04],["cri",0.04],["att_rate",0.08],["att_rate",0.06],["acc",0.08],["acc",0.07],["att_rate",0.04,"u"],["def_rate",0.01,"u"],["acc",0.04,"u"],["cri",0.02,"u"]],"p":306770592,"s":"51df","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"exc110001","ct":1728624141,"g":5,"id":2828056207,"l":true,"mg":1111,"op":[["cri",0.12],["ek_c110001",2]],"p":784315107,"s":"736"},{"code":"ecw6a_u","ct":1728635548,"e":93750,"f":"set_speed","g":5,"id":2828581943,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["def_rate",0.07],["cri",0.05],["cri_dmg",0.06],["res",0.08],["cri_dmg",0.04],["cri_dmg",0.06],["res",0.08],["cri_dmg",0.06],["cri",0.03],["def_rate",0.01,"u"],["cri",0.02,"u"],["cri_dmg",0.04,"u"],["res",0.03,"u"]],"p":6844892,"s":"3524","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"esh2_r","ct":1728637605,"e":93750,"f":"set_max_hp","g":5,"id":2828680058,"level":88,"mainStatBaseValue":0.13,"mainStatId":"esh2_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["def_rate",0.06],["speed",4.0],["res",0.06],["acc",0.06],["def_rate",0.06],["def_rate",0.06],["def_rate",0.07],["speed",4.0],["speed",4.0]],"p":781837305,"s":"30ec","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"esh2_n","ct":1728637606,"e":93750,"f":"set_max_hp","g":5,"id":2828680059,"level":88,"mainStatBaseValue":0.13,"mainStatId":"esh2_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["def_rate",0.06],["speed",4.0],["res",0.06],["acc",0.06],["def_rate",0.06],["def_rate",0.06],["def_rate",0.07],["speed",4.0],["speed",4.0]],"p":326928979,"s":"5466","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6a_u","ct":1728703904,"e":84411,"f":"set_speed","g":4,"id":2832195210,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["speed",3],["acc",0.07],["def_rate",0.07],["speed",4],["speed",4],["speed",3],["res",0.06],["speed",3],["speed",4,"u"],["acc",0.01,"u"],["def_rate",0.01,"u"],["res",0.01,"u"]],"p":897188455,"s":"4f03","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecg6r_u","ct":1728738185,"e":93750,"f":"set_max_hp","g":5,"id":2834678494,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["speed",3],["res",0.06],["att_rate",0.07],["cri_dmg",0.07],["speed",4],["cri_dmg",0.05],["cri_dmg",0.04],["att_rate",0.08],["res",0.07],["speed",1,"u"],["res",0.03,"u"],["att_rate",0.03,"u"],["cri_dmg",0.03,"u"]],"p":830235768,"s":"710a","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecd6w","ct":1728738295,"e":12476,"f":"set_penetrate","g":5,"id":2834687413,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["cri_dmg",0.07],["max_hp_rate",0.08],["cri",0.05],["att_rate",0.04],["cri",0.03],["cri_dmg",0.05]],"s":"61a1","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecg6n_u","ct":1728790459,"e":93750,"f":"set_max_hp","g":5,"id":2837773180,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["res",0.05],["speed",2],["def_rate",0.05],["acc",0.06],["speed",4],["acc",0.06],["speed",2],["def_rate",0.06],["res",0.08],["res",0.03,"u"],["speed",2,"u"],["def_rate",0.03,"u"],["acc",0.03,"u"]],"p":354206748,"s":"5e77","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"edd6h","ct":1728792784,"f":"set_penetrate","g":5,"id":2837962220,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"edw6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["res",0.07],["def_rate",0.08],["acc",0.07],["att_rate",0.08]],"s":"ee19","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecg6a","ct":1728794401,"e":56142,"f":"set_max_hp","g":5,"id":2838096063,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["max_hp_rate",0.08],["speed",3],["acc",0.05],["max_hp",182],["max_hp",199],["max_hp_rate",0.05],["max_hp",168],["speed",4]],"s":"aea4","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"edq6a_u","ct":1728800631,"e":93750,"f":"set_immune","g":5,"id":2838573453,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["acc",0.08],["max_hp_rate",0.08],["cri_dmg",0.07],["res",0.07],["max_hp_rate",0.08],["res",0.05],["acc",0.07],["cri_dmg",0.06],["acc",0.07],["acc",0.04,"u"],["max_hp_rate",0.03,"u"],["cri_dmg",0.02,"u"],["res",0.03,"u"]],"s":"e057","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"esh2_w","ct":1729003675,"e":93861,"f":"set_speed","g":5,"id":2847469456,"l":true,"level":88,"mainStatBaseValue":103.0,"mainStatId":"esh2_weapon_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103.0],["att_rate",0.08],["speed",5.0],["cri",0.06],["cri_dmg",0.07],["speed",3],["cri_dmg",0.06],["cri_dmg",0.08],["att_rate",0.06],["speed",3]],"s":"2df0","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"edw6h_u","ct":1729065540,"e":93750,"f":"set_speed","g":5,"id":2849715538,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["att_rate",0.07],["max_hp_rate",0.07],["cri_dmg",0.06],["speed",4],["cri_dmg",0.05],["cri_dmg",0.04],["att_rate",0.06],["speed",4],["max_hp_rate",0.08],["att_rate",0.03,"u"],["max_hp_rate",0.03,"u"],["cri_dmg",0.03,"u"],["speed",1,"u"]],"s":"ccbf","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecq6w_u","ct":1729066577,"e":93750,"f":"set_immune","g":5,"id":2849753468,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["speed",4],["acc",0.04],["max_hp_rate",0.06],["res",0.06],["speed",3],["acc",0.06],["speed",3],["res",0.07],["speed",4],["speed",3,"u"],["acc",0.03,"u"],["max_hp_rate",0.01,"u"],["res",0.03,"u"]],"s":"8db9","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"esh2_h","ct":1729081917,"e":93750,"f":"set_speed","g":5,"id":2850363854,"l":true,"level":88,"mainStatBaseValue":553.0,"mainStatId":"esh2_helm_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553.0],["att_rate",0.08],["speed",5.0],["cri",0.06],["cri_dmg",0.07],["speed",3],["speed",4],["cri_dmg",0.07],["speed",4],["att_rate",0.08]],"p":793619248,"s":"9522","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eal85b_u","ct":1729085889,"e":93804,"f":"set_speed","g":5,"id":2850566307,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["acc",0.05],["cri",0.05],["att_rate",0.06],["res",0.05],["cri",0.03],["acc",0.07],["acc",0.06],["cri",0.03],["res",0.08],["acc",0.04,"u"],["cri",0.03,"u"],["att_rate",0.01,"u"],["res",0.03,"u"]],"s":"d5f4","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6r","ct":1729178994,"f":"set_acc","g":5,"id":2854743652,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_ring_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["acc",0.05],["max_hp_rate",0.08],["res",0.07],["cri_dmg",0.04]],"p":207190343,"s":"2044","statMultiplier":1.67,"tierMultiplier":1,"type":"ring"},{"code":"ecs13w","ct":1729249784,"e":82031,"f":"set_speed","g":5,"id":2857373510,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"cs13_weap_m1","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.08],["att_rate",0.08],["speed",4],["cri_dmg",0.07],["att_rate",0.09],["max_hp_rate",0.06],["cri_dmg",0.06],["max_hp_rate",0.05],["speed",4]],"p":490684210,"s":"438f","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eal85r_u","ct":1729252222,"e":93803,"f":"set_cri_dmg","g":5,"id":2857485116,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["cri_dmg",0.07],["speed",2],["cri",0],["res",0.06],["cri_dmg",0.04],["cri",0],["res",0.07],["res",0.08],["cri_dmg",0.05],["cri_dmg",0.03,"u"],["cri",0.02,"u"],["res",0.04,"u"],["cri",0.06,"c","change2_cri_2_2"]],"s":"2aa0","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eal85b_u","ct":1729253068,"e":93750,"f":"set_penetrate","g":5,"id":2857525900,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["cri_dmg",0.07],["cri",0],["acc",0.08],["att_rate",0.07],["cri_dmg",0.05],["cri_dmg",0.05],["cri",0],["cri",0],["cri",0],["cri_dmg",0.03,"u"],["cri",0.04,"u"],["acc",0.01,"u"],["att_rate",0.01,"u"],["cri",0.09,"c","change2_cri_4_1"]],"p":784315107,"s":"189b","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecq6a_u","ct":1729259791,"e":93750,"f":"set_immune","g":5,"id":2857870806,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["speed",4],["cri_dmg",0.05],["res",0.04],["max_hp_rate",0.05],["speed",4],["cri_dmg",0.05],["speed",4],["res",0.05],["max_hp_rate",0.07],["speed",2,"u"],["cri_dmg",0.02,"u"],["res",0.03,"u"],["max_hp_rate",0.03,"u"]],"s":"5ef8","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"esh2_a","ct":1729267806,"e":93861,"f":"set_speed","g":5,"id":2858331716,"l":true,"level":88,"mainStatBaseValue":62.0,"mainStatId":"esh2_armor_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62.0],["max_hp_rate",0.08],["speed",5.0],["cri",0.06],["cri_dmg",0.07],["cri_dmg",0.06],["max_hp_rate",0.07],["cri_dmg",0.04],["cri_dmg",0.05],["max_hp_rate",0.09]],"s":"d552","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"esh2_b","ct":1729267806,"e":93750,"f":"set_speed","g":5,"id":2858331717,"l":true,"level":88,"mainStatBaseValue":9.0,"mainStatId":"esh2_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9.0],["max_hp_rate",0.08],["att_rate",0.08],["cri",0.06],["cri_dmg",0.08],["max_hp_rate",0.05],["att_rate",0.08],["max_hp_rate",0.09],["cri_dmg",0.04],["att_rate",0.07]],"p":350226992,"s":"eea9","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"edq6r_u","ct":1729314695,"e":93862,"f":"set_immune","g":5,"id":2860741627,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"res","mainStatValue":0.65,"mg":1111,"op":[["res",0.13,null,null,0],["cri_dmg",0.06],["att_rate",0.08],["acc",0.08],["speed",4],["speed",4],["acc",0.05],["speed",4],["speed",2],["att_rate",0.06],["cri_dmg",0.01,"u"],["att_rate",0.03,"u"],["acc",0.03,"u"],["speed",3,"u"]],"s":"711d","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ezl2_b","ct":1729325449,"e":93750,"f":"set_torrent","g":5,"id":2861546987,"l":true,"level":88,"mainStatBaseValue":9.0,"mainStatId":"ezl2_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9.0,null,null,1],["att_rate",0.08],["def_rate",0.08],["cri",0.06],["cri_dmg",0.08],["def_rate",0.06],["cri_dmg",0.08],["cri_dmg",0.08],["att_rate",0.07],["att_rate",0.06]],"p":596366779,"s":"38b3","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecq6a_u","ct":1729401683,"e":93750,"f":"set_immune","g":5,"id":2866159055,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["speed",2],["cri_dmg",0.07],["max_hp_rate",0.07],["cri",0.05],["cri_dmg",0.07],["max_hp_rate",0.06],["cri",0.05],["max_hp_rate",0.07],["speed",2],["speed",1,"u"],["cri_dmg",0.02,"u"],["max_hp_rate",0.04,"u"],["cri",0.02,"u"]],"p":738614105,"s":"66f1","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ezl2_n","ct":1729414176,"e":93804,"f":"set_torrent","g":5,"id":2867089835,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"ezl2_neck_m","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["att_rate",0.08],["def_rate",0.08],["speed",5.0],["cri",0.06],["cri",0.05],["att_rate",0.05],["cri",0.04],["speed",4],["def_rate",0.07]],"p":890790459,"s":"a7d7","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"edg6w_u","ct":1729512730,"e":93750,"f":"set_max_hp","g":5,"id":2872134014,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["att_rate",0.07],["max_hp_rate",0.08],["cri",0.05],["cri_dmg",0.06],["cri_dmg",0.07],["cri",0.04],["max_hp_rate",0.06],["cri",0.04],["max_hp_rate",0.07],["att_rate",0.01,"u"],["max_hp_rate",0.04,"u"],["cri",0.03,"u"],["cri_dmg",0.02,"u"]],"p":769932771,"s":"d47d","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"esh2_r","ct":1729612059,"e":93750,"f":"set_speed","g":5,"id":2876701657,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"esh2_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["max_hp_rate",0.08],["speed",5.0],["cri",0.06],["cri_dmg",0.07],["speed",3],["cri",0.05],["cri",0.04],["speed",3],["speed",3]],"p":583954927,"s":"67e3","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"esh2_n","ct":1729687213,"e":93862,"f":"set_speed","g":5,"id":2879432772,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"esh2_neck_m","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["max_hp_rate",0.08],["speed",5.0],["cri",0.06],["att_rate",0.08],["att_rate",0.09],["speed",3],["att_rate",0.06],["max_hp_rate",0.06],["att_rate",0.08]],"s":"d227","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecg6n_u","ct":1729688054,"e":93750,"f":"set_max_hp","g":5,"id":2879477753,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["def_rate",0.08],["speed",4],["res",0.06],["def",32],["def",34],["def",30],["res",0.07],["def_rate",0.06],["res",0.07],["def_rate",0.03,"u"],["res",0.04,"u"],["def",27,"u"]],"s":"5944","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6a_u","ct":1729765849,"e":93804,"f":"set_speed","g":5,"id":2882078797,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["speed",4],["cri",0.04],["res",0.04],["max_hp_rate",0.08],["max_hp_rate",0.05],["res",0.05],["speed",3],["res",0.04],["max_hp_rate",0.06],["speed",1,"u"],["cri",0.01,"u"],["res",0.04,"u"],["max_hp_rate",0.04,"u"]],"p":636577158,"s":"ec24","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"edd6a_u","ct":1729833710,"e":93862,"f":"set_penetrate","g":5,"id":2884841146,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri_dmg",0.07],["def_rate",0.07],["res",0.07],["speed",4],["speed",4],["cri_dmg",0.07],["res",0.05],["res",0.04],["def_rate",0.05],["cri_dmg",0.02,"u"],["def_rate",0.03,"u"],["res",0.04,"u"],["speed",1,"u"]],"p":591089796,"s":"17a","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6h_u","ct":1729836070,"e":93750,"f":"set_speed","g":5,"id":2884937115,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["att_rate",0],["cri_dmg",0.05],["speed",3],["cri",0.04],["cri",0.03],["speed",3],["cri_dmg",0.06],["cri",0.03],["cri_dmg",0.07],["att_rate",0.01,"u"],["cri_dmg",0.03,"u"],["speed",1,"u"],["cri",0.03,"u"],["att_rate",0.07,"c","change2_att_rate_1_1"]],"s":"6240","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecq6w","ct":1729836292,"e":73923,"f":"set_immune","g":4,"id":2884944836,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["speed",2],["cri_dmg",0.06],["att_rate",0.05],["speed",3],["speed",3],["speed",4],["max_hp_rate",0.08],["att_rate",0.07]],"s":"f6a9","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecd6w_u","ct":1729923972,"e":93863,"f":"set_penetrate","g":5,"id":2888555024,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["cri",0],["att_rate",0.08],["max_hp_rate",0.07],["cri_dmg",0.05],["att_rate",0.08],["att_rate",0.07],["cri_dmg",0.07],["max_hp_rate",0.06],["att_rate",0.07],["cri",0.01,"u"],["att_rate",0.05,"u"],["max_hp_rate",0.03,"u"],["cri_dmg",0.02,"u"],["cri",0.04,"c","change2_cri_1_2"]],"s":"8650","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecg6h_u","ct":1729924706,"e":93750,"f":"set_max_hp","g":5,"id":2888592342,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["res",0.06],["def_rate",0],["cri_dmg",0.04],["max_hp_rate",0.05],["cri_dmg",0.06],["cri_dmg",0.05],["max_hp_rate",0.08],["max_hp_rate",0.06],["max_hp_rate",0.07],["res",0.01,"u"],["def_rate",0.01,"u"],["cri_dmg",0.03,"u"],["max_hp_rate",0.05,"u"],["def_rate",0.08,"c","change2_def_rate_1_2"]],"p":354206748,"s":"f8c7","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6a_u","ct":1729924928,"e":93750,"f":"set_speed","g":5,"id":2888604282,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp_rate",0.05],["acc",0.08],["def_rate",0],["res",0.07],["acc",0.08],["max_hp_rate",0.08],["res",0.05],["max_hp_rate",0.08],["res",0.04],["max_hp_rate",0.04,"u"],["acc",0.03,"u"],["def_rate",0.01,"u"],["res",0.04,"u"],["def_rate",0.06,"c","change2_def_rate_1_1"]],"s":"cb2e","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecg6r_u","ct":1729925999,"e":93750,"f":"set_max_hp","g":5,"id":2888657346,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_ring_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["att_rate",0.05],["acc",0.04],["max_hp_rate",0.06],["speed",3],["speed",2],["speed",2],["speed",4],["acc",0.08],["speed",4],["att_rate",0.01,"u"],["acc",0.03,"u"],["max_hp_rate",0.01,"u"],["speed",4,"u"]],"p":897188455,"s":"aa8a","statMultiplier":1.67,"tierMultiplier":1,"type":"ring"},{"code":"edw6b_u","ct":1729927171,"e":93750,"f":"set_speed","g":5,"id":2888717109,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["cri_dmg",0.07],["max_hp_rate",0.07],["acc",0.08],["def_rate",0.08],["def_rate",0.04],["acc",0.07],["max_hp_rate",0.06],["def_rate",0.07],["cri_dmg",0.05],["cri_dmg",0.02,"u"],["max_hp_rate",0.03,"u"],["acc",0.03,"u"],["def_rate",0.04,"u"]],"s":"542f","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6w_u","ct":1729957631,"e":93750,"f":"set_speed","g":5,"id":2890193131,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["max_hp",163],["max_hp_rate",0.07],["speed",4],["att_rate",0.06],["att_rate",0.08],["max_hp_rate",0.08],["max_hp",168],["max_hp_rate",0.04],["max_hp",171],["max_hp",168,"u"],["max_hp_rate",0.04,"u"],["att_rate",0.03,"u"]],"s":"3d00","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6a_u","ct":1729999859,"e":93750,"f":"set_speed","g":5,"id":2891750814,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["res",0.06],["speed",4],["def_rate",0.05],["cri",0.04],["cri",0.04],["cri",0.04],["cri",0.04],["speed",2],["cri",0.05],["res",0.01,"u"],["speed",1,"u"],["def_rate",0.01,"u"],["cri",0.05,"u"]],"s":"78f4","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecd6h_u","ct":1730000169,"e":93862,"f":"set_penetrate","g":5,"id":2891769837,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["cri_dmg",0.07],["cri",0.04],["res",0.05],["speed",4],["res",0.05],["res",0.07],["cri_dmg",0.05],["speed",4],["res",0.06],["cri_dmg",0.02,"u"],["cri",0.01,"u"],["res",0.05,"u"],["speed",1,"u"]],"s":"9d99","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eiu31n","ct":1730021478,"e":93750,"f":"set_vampire","g":5,"id":2892903535,"l":true,"level":88,"mainStatBaseValue":0.12,"mainStatId":"iu31_neck_m","mainStatType":"cri","mainStatValue":0.6,"mg":1111,"op":[["cri",0.12],["max_hp_rate",0.07],["def_rate",0.07],["speed",3],["cri_dmg",0.06],["cri_dmg",0.04],["def_rate",0.08],["max_hp_rate",0.06],["cri_dmg",0.07],["cri_dmg",0.07]],"s":"f405","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecg6b_u","ct":1730025656,"e":93861,"f":"set_max_hp","g":5,"id":2893083603,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["max_hp_rate",0],["cri",0.04],["att_rate",0.05],["def_rate",0.06],["def_rate",0.07],["cri",0.03],["cri",0.04],["att_rate",0.07],["max_hp_rate",0],["max_hp_rate",0.03,"u"],["cri",0.03,"u"],["att_rate",0.03,"u"],["def_rate",0.03,"u"],["max_hp_rate",0.1,"c","change2_max_hp_rate_2_2"]],"p":354206748,"s":"2015","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecd6r_u","ct":1730025773,"e":93750,"f":"set_penetrate","g":5,"id":2893088949,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"acc","mainStatValue":0.65,"mg":1111,"op":[["acc",0.13,null,null,0],["def_rate",0.07],["att_rate",0.06],["cri",0.05],["cri_dmg",0.07],["cri_dmg",0.07],["def_rate",0.06],["cri_dmg",0.07],["def_rate",0.07],["cri_dmg",0.06],["def_rate",0.04,"u"],["att_rate",0.01,"u"],["cri",0.01,"u"],["cri_dmg",0.04,"u"]],"s":"8e07","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecd6a_u","ct":1730031544,"e":93803,"f":"set_penetrate","g":5,"id":2893366288,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["def_rate",0.04],["cri",0.05],["max_hp_rate",0.05],["cri_dmg",0.07],["def_rate",0.05],["def_rate",0.08],["cri",0.04],["def_rate",0.05],["cri",0.03],["def_rate",0.05,"u"],["cri",0.03,"u"],["max_hp_rate",0.01,"u"],["cri_dmg",0.01,"u"]],"p":461351155,"s":"d0f5","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a","ct":1730031544,"e":73865,"f":"set_speed","g":4,"id":2893366289,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["acc",0.08],["def_rate",0.04],["speed",3],["speed",2],["speed",3],["speed",4],["max_hp_rate",0.04],["acc",0.06]],"p":313109293,"s":"395f","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecd6w_u","ct":1730032347,"e":93805,"f":"set_penetrate","g":5,"id":2893408942,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["cri_dmg",0.05],["cri",0.03],["max_hp",189],["max_hp_rate",0.08],["cri_dmg",0.07],["max_hp_rate",0.05],["max_hp_rate",0.07],["max_hp_rate",0.05],["cri",0.05],["cri_dmg",0.02,"u"],["cri",0.02,"u"],["max_hp",56,"u"],["max_hp_rate",0.05,"u"]],"p":568689715,"s":"ad53","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecb6a_u","ct":1730102072,"e":93750,"f":"set_counter","g":5,"id":2896095837,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri_dmg",0.06],["cri",0.04],["speed",2],["max_hp_rate",0.05],["speed",4],["speed",4],["cri_dmg",0.07],["max_hp_rate",0.06],["cri_dmg",0.07],["cri_dmg",0.03,"u"],["cri",0.01,"u"],["speed",2,"u"],["max_hp_rate",0.03,"u"]],"s":"e3f7","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecd6r","ct":1730113762,"e":82031,"f":"set_penetrate","g":5,"id":2896559962,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"res","mainStatValue":0.6,"mg":1111,"op":[["res",0.12],["att_rate",0.07],["speed",4],["max_hp",165],["att",43],["speed",4],["speed",4],["speed",2],["att",37],["att",44]],"s":"5cd5","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6n","ct":1730218022,"e":73828,"f":"set_cri","g":4,"id":2900880233,"l":true,"level":85,"mainStatBaseValue":0.13,"mainStatId":"cra6_neck_m","mainStatType":"cri_dmg","mainStatValue":0.65,"mg":1111,"op":[["cri_dmg",0.13],["att_rate",0.06],["cri",0.04],["speed",4],["cri",0.05],["cri",0.05],["cri",0.04],["max_hp_rate",0.05],["max_hp_rate",0.04]],"s":"1ee6","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecd6w","ct":1730252978,"e":22970,"f":"set_penetrate","g":5,"id":2901841663,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["cri_dmg",0.07],["att_rate",0.04],["speed",3],["res",0.05],["res",0.08],["att_rate",0.05],["att_rate",0.07]],"s":"ed4f","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"edd6b","ct":1730342595,"f":"set_penetrate","g":5,"id":2905127600,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"edw6_boot_m","mainStatType":"def_rate","mainStatValue":0.6,"mg":1111,"op":[["def_rate",0.12],["cri_dmg",0.07],["speed",4],["max_hp_rate",0.08],["cri",0.05]],"s":"5203","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6h","ct":1730343007,"f":"set_speed","g":5,"id":2905144991,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["res",0.06],["att_rate",0.08],["cri_dmg",0.05],["max_hp_rate",0.07]],"p":568417281,"s":"230b","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eih9n","ct":1730376412,"e":93750,"f":"set_penetrate","g":5,"id":2908902062,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"imh_neck_m11","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["max_hp_rate",0.09],["cri",0.06],["speed",5],["att_rate",0.09],["max_hp_rate",0.09],["cri",0.03],["speed",4],["att_rate",0.08],["speed",3]],"p":99507012,"s":"162b","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6h_u","ct":1730376955,"e":93750,"f":"set_speed","g":5,"id":2908946579,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["max_hp_rate",0.05],["res",0.07],["cri_dmg",0.05],["def_rate",0.07],["max_hp_rate",0.08],["max_hp_rate",0.08],["cri_dmg",0.07],["max_hp_rate",0.04],["cri_dmg",0.07],["max_hp_rate",0.05,"u"],["res",0.01,"u"],["cri_dmg",0.03,"u"],["def_rate",0.01,"u"]],"s":"154f","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6w_u","ct":1730377070,"e":93750,"f":"set_speed","g":5,"id":2908956268,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["cri_dmg",0.06],["att_rate",0.06],["speed",4],["cri",0.05],["att_rate",0.04],["cri",0.04],["cri",0.03],["speed",4],["cri",0.04],["cri_dmg",0.01,"u"],["att_rate",0.03,"u"],["speed",1,"u"],["cri",0.04,"u"]],"s":"f18e","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"exc502401","ct":1730384229,"g":5,"id":2909543438,"l":true,"mg":1111,"op":[["acc",0.14],["ek_c502401",3]],"s":"4f20"},{"code":"eal85b","ct":1730387997,"e":82031,"f":"set_penetrate","g":5,"id":2909860807,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"al85_boot_m","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["acc",0.05],["cri_dmg",0.06],["cri",0.03],["att",39],["acc",0.06],["acc",0.08],["cri",0.03],["cri",0.04],["acc",0.07]],"p":96079743,"s":"e977","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecb6r_u","ct":1730388342,"e":84375,"f":"set_res","g":4,"id":2909888627,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"acc","mainStatValue":0.65,"mg":1111,"op":[["acc",0.13,null,null,0],["cri",0.04],["speed",3],["max_hp",180],["speed",4],["speed",3],["speed",4],["max_hp_rate",0.08],["max_hp",176],["cri",0.01,"u"],["speed",3,"u"],["max_hp",112,"u"],["max_hp_rate",0.01,"u"]],"s":"c028","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eal85r_u","ct":1730388550,"e":93750,"f":"set_cri_dmg","g":5,"id":2909905157,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["def_rate",0],["cri_dmg",0.06],["cri",0.05],["speed",2],["def_rate",0],["speed",2],["cri",0.03],["speed",4],["cri",0.03],["def_rate",0.03,"u"],["cri_dmg",0.01,"u"],["cri",0.03,"u"],["speed",2,"u"],["def_rate",0.1,"c","change2_def_rate_2_2"]],"p":784315107,"s":"466d","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"exc502401","ct":1730437251,"g":5,"id":2911975864,"l":true,"mg":1111,"op":[["acc",0.16],["ek_c502401",3]],"s":"1936"},{"code":"exc502401","ct":1730437297,"g":5,"id":2911978551,"l":true,"mg":1111,"op":[["acc",0.16],["ek_c502401",3]],"s":"84b6"},{"code":"exc502401","ct":1730437303,"g":5,"id":2911978870,"mg":1111,"op":[["acc",0.08],["ek_c502401",3]],"s":"405f"},{"code":"exc502401","ct":1730437307,"g":5,"id":2911979051,"l":true,"mg":1111,"op":[["acc",0.15],["ek_c502401",2]],"p":518782830,"s":"bffb"},{"code":"ess16w","ct":1730442254,"e":82031,"f":"set_speed","g":5,"id":2912237093,"l":true,"level":78,"mainStatBaseValue":95,"mainStatId":"ss16_weap_m","mainStatType":"att","mainStatValue":475,"mg":1111,"op":[["att",95],["max_hp_rate",0.07],["att_rate",0.07],["speed",4],["cri_dmg",0.06],["att_rate",0.08],["att_rate",0.05],["cri_dmg",0.06],["att_rate",0.08],["cri_dmg",0.07]],"s":"4587","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecd6a_u","ct":1730618060,"e":93803,"f":"set_penetrate","g":5,"id":2919857177,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri_dmg",0.06],["max_hp",195],["def_rate",0.08],["speed",4],["speed",4],["cri_dmg",0.07],["cri_dmg",0.05],["speed",2],["speed",2],["cri_dmg",0.03,"u"],["max_hp",56,"u"],["def_rate",0.01,"u"],["speed",3,"u"]],"p":306859366,"s":"583d","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecg6r_u","ct":1730619261,"e":93750,"f":"set_max_hp","g":5,"id":2919913866,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,0],["cri",0.03],["def_rate",0.08],["max_hp_rate",0.08],["cri_dmg",0.04],["def_rate",0.07],["max_hp_rate",0.07],["def_rate",0.07],["def_rate",0.06],["max_hp_rate",0.08],["cri",0.01,"u"],["def_rate",0.05,"u"],["max_hp_rate",0.04,"u"],["cri_dmg",0.01,"u"]],"s":"c04a","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecq6w_u","ct":1730639478,"e":93750,"f":"set_immune","g":5,"id":2920804333,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["speed",2],["cri_dmg",0.05],["att_rate",0.08],["res",0.07],["speed",4],["cri_dmg",0.06],["att_rate",0.07],["att_rate",0.07],["res",0.04],["speed",1,"u"],["cri_dmg",0.02,"u"],["att_rate",0.04,"u"],["res",0.03,"u"]],"s":"684d","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6a_u","ct":1730641513,"e":93863,"f":"set_speed","g":5,"id":2920906372,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["res",0.07],["def_rate",0.06],["max_hp_rate",0.06],["speed",3],["max_hp_rate",0.06],["res",0.04],["max_hp_rate",0.07],["max_hp_rate",0.07],["def_rate",0.08],["res",0.03,"u"],["def_rate",0.03,"u"],["max_hp_rate",0.05,"u"]],"p":226377978,"s":"967a","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"edd6h_u","ct":1730646849,"e":93750,"f":"set_penetrate","g":5,"id":2921171740,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["max_hp_rate",0.08],["cri",0.04],["def_rate",0.08],["cri_dmg",0.06],["cri_dmg",0.05],["max_hp_rate",0.08],["max_hp_rate",0.07],["cri_dmg",0.04],["max_hp_rate",0.05],["max_hp_rate",0.05,"u"],["cri",0.01,"u"],["def_rate",0.01,"u"],["cri_dmg",0.03,"u"]],"s":"63c5","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecg6a","ct":1730647322,"e":82084,"f":"set_max_hp","g":5,"id":2921193986,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["def_rate",0.08],["cri_dmg",0.04],["cri",0.04],["max_hp_rate",0.04],["cri_dmg",0.06],["cri_dmg",0.07],["max_hp_rate",0.07],["def_rate",0.06],["cri",0.03]],"s":"9379","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecq6h_u","ct":1730725563,"e":93803,"f":"set_immune","g":5,"id":2923922512,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["att_rate",0.07],["res",0.05],["cri_dmg",0.04],["cri",0.04],["cri_dmg",0.07],["att_rate",0.07],["cri",0.05],["cri",0.03],["cri_dmg",0.05],["att_rate",0.03,"u"],["res",0.01,"u"],["cri_dmg",0.03,"u"],["cri",0.03,"u"]],"s":"844e","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecq6a_u","ct":1730725768,"e":93862,"f":"set_immune","g":5,"id":2923932580,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["acc",0.06],["def_rate",0.05],["res",0.07],["max_hp_rate",0.06],["acc",0.07],["acc",0.08],["acc",0.08],["max_hp_rate",0.05],["max_hp_rate",0.08],["acc",0.05,"u"],["def_rate",0.01,"u"],["res",0.01,"u"],["max_hp_rate",0.04,"u"]],"s":"3701","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecq6a_u","ct":1730860316,"e":93804,"f":"set_immune","g":5,"id":2928905503,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri_dmg",0.07],["res",0.07],["acc",0.06],["speed",4],["res",0.07],["res",0.08],["cri_dmg",0.06],["speed",3],["acc",0.04],["cri_dmg",0.02,"u"],["res",0.04,"u"],["acc",0.03,"u"],["speed",1,"u"]],"s":"cbd1","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecg6h_u","ct":1730860974,"e":84375,"f":"set_max_hp","g":4,"id":2928939270,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["att_rate",0.05],["speed",2],["cri_dmg",0.07],["speed",4],["speed",4],["speed",3],["res",0.04],["att_rate",0.05],["att_rate",0.03,"u"],["speed",3,"u"],["cri_dmg",0.01,"u"],["res",0.01,"u"]],"s":"3371","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6a","ct":1730902335,"e":82031,"f":"set_speed","g":5,"id":2930825312,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["cri_dmg",0.07],["cri",0.03],["acc",0.07],["def_rate",0.07],["cri_dmg",0.06],["def_rate",0.04],["cri_dmg",0.06],["cri",0.04],["cri",0.03]],"s":"5eff","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"exc110401","ct":1730963555,"g":5,"id":2932250786,"l":true,"mg":1111,"op":[["max_hp_rate",0.1],["ek_c110401",3]],"s":"768"},{"code":"ecw6h_u","ct":1731564633,"e":84375,"f":"set_acc","g":4,"id":2952219767,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["def_rate",0.04],["cri_dmg",0.07],["speed",3],["speed",4],["speed",3],["speed",3],["def",32],["speed",4],["def_rate",0.01,"u"],["cri_dmg",0.01,"u"],["speed",4,"u"],["def",9,"u"]],"p":649028156,"s":"c078","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eah25w","ct":1731567964,"e":93750,"f":"set_res","g":5,"id":2952380458,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"ah25_weap_m1","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.07],["speed",5],["res",0.07],["acc",0.07],["max_hp_rate",0.07],["max_hp_rate",0.09],["acc",0.07],["acc",0.05],["max_hp_rate",0.05]],"p":636577158,"s":"dae3","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eah25h","ct":1731743367,"e":93750,"f":"set_res","g":5,"id":2959319273,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"ah25_helm_m1","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["max_hp_rate",0.07],["def_rate",0.07],["speed",5],["res",0.07],["speed",3],["max_hp_rate",0.07],["speed",4],["def_rate",0.09],["max_hp_rate",0.08]],"s":"a42a","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eah25a","ct":1732283728,"e":93750,"f":"set_res","g":5,"id":2976075051,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"ah25_armo_m1","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.07],["def_rate",0.07],["speed",5],["res",0.07],["max_hp_rate",0.08],["speed",4],["speed",4],["speed",3],["def_rate",0.08]],"s":"9cec","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eah25b","ct":1732698166,"e":93862,"f":"set_res","g":5,"id":2987909286,"l":true,"level":88,"mainStatBaseValue":9,"mainStatId":"ah25_boot_m1","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9],["max_hp_rate",0.08],["def_rate",0.08],["acc",0.08],["res",0.08],["res",0.08],["max_hp_rate",0.05],["max_hp_rate",0.08],["def_rate",0.05],["acc",0.07]],"s":"9e88","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eah25r","ct":1732859569,"e":93750,"f":"set_res","g":5,"id":2992021256,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ah25_ring_m1","mainStatType":"res","mainStatValue":0.65,"mg":1111,"op":[["res",0.13],["max_hp_rate",0.07],["def_rate",0.07],["speed",5],["acc",0.07],["def_rate",0.07],["def_rate",0.09],["def_rate",0.07],["max_hp_rate",0.07],["speed",3]],"s":"fa20","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eiu12b","ct":1732884545,"f":"set_shield","g":5,"id":2992817612,"level":88,"mainStatBaseValue":9,"mainStatId":"iu12_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9],["res",0.07],["max_hp_rate",0.07],["def_rate",0.07],["acc",0.07]],"s":"e4dd","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eih9n","ct":1732950790,"e":93750,"f":"set_penetrate","g":5,"id":2994929770,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"imh_neck_m11","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["max_hp_rate",0.09],["cri",0.06],["speed",5],["att_rate",0.09],["cri",0.03],["cri",0.04],["att_rate",0.07],["cri",0.06],["att_rate",0.06]],"p":795195383,"s":"5237","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6h","ct":1733031623,"e":82031,"f":"set_speed","g":5,"id":2997684519,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["cri",0.05],["max_hp_rate",0.04],["cri_dmg",0.07],["speed",2],["max_hp_rate",0.05],["cri_dmg",0.05],["max_hp_rate",0.07],["speed",3],["max_hp_rate",0.06]],"p":313109293,"s":"b5e7","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6w_u","ct":1733034826,"e":93750,"f":"set_speed","g":5,"id":2997826071,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["max_hp_rate",0.04],["cri_dmg",0.07],["cri",0.03],["speed",4],["cri",0.03],["cri",0.03],["speed",4],["cri_dmg",0.04],["max_hp_rate",0.05],["max_hp_rate",0.03,"u"],["cri_dmg",0.02,"u"],["cri",0.03,"u"],["speed",1,"u"]],"p":323638178,"s":"3657","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eah25n","ct":1733202530,"e":93750,"f":"set_res","g":5,"id":3003626806,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ah25_neck_m1","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["def_rate",0.07],["speed",5],["res",0.07],["acc",0.07],["res",0.05],["speed",3],["acc",0.09],["acc",0.07],["def_rate",0.05]],"p":28398305,"s":"cb19","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"exc116101","ct":1733452917,"g":5,"id":3009759097,"mg":1111,"op":[["cri",0.1],["ek_c116101",1]],"s":"d286"},{"code":"exc116101","ct":1733452922,"g":5,"id":3009759245,"mg":1111,"op":[["cri",0.06],["ek_c116101",2]],"p":690904230,"s":"c25e"},{"code":"ecw6w","ct":1733453611,"f":"set_speed","g":5,"id":3009780724,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["att_rate",0.06],["acc",0.04],["res",0.04],["max_hp_rate",0.07]],"p":313109293,"s":"cf58","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecq6a_u","ct":1733453670,"e":84375,"f":"set_immune","g":4,"id":3009782638,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp_rate",0.07],["speed",4],["acc",0.06],["speed",2],["speed",2],["speed",3],["cri",0.05],["speed",2],["max_hp_rate",0.01,"u"],["speed",4,"u"],["acc",0.01,"u"],["cri",0.01,"u"]],"s":"1be3","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6r","ct":1733454311,"f":"set_speed","g":5,"id":3009803071,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["cri_dmg",0.07],["cri",0.05],["def_rate",0.08],["def",35]],"p":568417281,"s":"89a3","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecg6n_u","ct":1733454790,"e":84375,"f":"set_max_hp","g":4,"id":3009817004,"l":true,"level":90,"mainStatBaseValue":0.12,"mainStatId":"cra7_neck_m","mainStatType":"cri","mainStatValue":0.6,"mg":1111,"op":[["cri",0.12,null,null,0],["def_rate",0.07],["speed",3],["max_hp_rate",0.06],["speed",2],["speed",2],["speed",4],["res",0.04],["speed",3],["def_rate",0.01,"u"],["speed",4,"u"],["max_hp_rate",0.01,"u"],["res",0.01,"u"]],"s":"18e2","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecg6w_u","ct":1733455486,"e":93750,"f":"set_max_hp","g":5,"id":3009837190,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["cri",0.05],["cri_dmg",0.07],["res",0.06],["max_hp_rate",0.06],["max_hp_rate",0.05],["cri",0.04],["res",0.08],["cri",0.03],["res",0.07],["cri",0.03,"u"],["cri_dmg",0.01,"u"],["res",0.04,"u"],["max_hp_rate",0.03,"u"]],"p":829105288,"s":"8daa","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"edg6w_u","ct":1733464746,"e":93862,"f":"set_max_hp","g":5,"id":3010108417,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["max_hp_rate",0.08],["cri_dmg",0.06],["acc",0.08],["res",0.08],["max_hp_rate",0.07],["max_hp_rate",0.04],["res",0.08],["cri_dmg",0.04],["max_hp_rate",0.05],["max_hp_rate",0.05,"u"],["cri_dmg",0.02,"u"],["acc",0.01,"u"],["res",0.03,"u"]],"p":781837305,"s":"fb3b","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecd6a_u","ct":1733645493,"e":93805,"f":"set_torrent","g":5,"id":3014591877,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["def_rate",0.06],["cri_dmg",0.07],["speed",4],["cri",0],["cri_dmg",0.06],["cri_dmg",0.04],["cri_dmg",0.06],["speed",4],["cri_dmg",0.05],["def_rate",0.01,"u"],["cri_dmg",0.06,"u"],["speed",1,"u"],["cri",0.01,"u"],["cri",0.04,"c","change2_cri_1_2"]],"p":494187001,"s":"33c5","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a","ct":1733647059,"e":82086,"f":"set_speed","g":5,"id":3014632987,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["max_hp_rate",0.05],["cri_dmg",0.05],["def_rate",0.08],["cri",0.05],["max_hp_rate",0.05],["def_rate",0.06],["max_hp_rate",0.06],["cri_dmg",0.05],["cri_dmg",0.06]],"s":"7398","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"edg6r_u","ct":1733655484,"e":93750,"f":"set_max_hp","g":5,"id":3014865229,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"res","mainStatValue":0.65,"mg":1111,"op":[["res",0.13,null,null,0],["max_hp_rate",0.07],["def_rate",0.08],["att_rate",0.08],["acc",0.08],["acc",0.05],["acc",0.06],["def_rate",0.05],["att_rate",0.07],["max_hp_rate",0.08],["max_hp_rate",0.03,"u"],["def_rate",0.03,"u"],["att_rate",0.03,"u"],["acc",0.04,"u"]],"p":354206748,"s":"efef","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"exc105001","ct":1733708062,"g":5,"id":3016053302,"mg":1111,"op":[["acc",0.15],["ek_c105001",2]],"p":323638178,"s":"c18"},{"code":"exc104701","ct":1733709134,"g":5,"id":3016083581,"mg":1111,"op":[["cri",0.07],["ek_c104701",2]],"p":96079743,"s":"f066"},{"code":"eal85b_u","ct":1733722137,"e":93750,"f":"set_speed","g":5,"id":3016467392,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["res",0.08],["max_hp_rate",0.05],["max_hp",192],["acc",0.04],["acc",0.05],["res",0.08],["max_hp_rate",0.08],["acc",0.08],["acc",0.05],["res",0.03,"u"],["max_hp_rate",0.03,"u"],["max_hp",56,"u"],["acc",0.05,"u"]],"s":"5fa1","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eal85b_u","ct":1733722153,"e":93805,"f":"set_speed","g":5,"id":3016467781,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["acc",0.08],["cri_dmg",0.07],["max_hp_rate",0.04],["att_rate",0.08],["att_rate",0.04],["acc",0.07],["max_hp_rate",0.04],["cri_dmg",0.07],["cri_dmg",0.05],["acc",0.03,"u"],["cri_dmg",0.03,"u"],["max_hp_rate",0.03,"u"],["att_rate",0.03,"u"]],"s":"6bcd","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecq6a_u","ct":1733722816,"e":93750,"f":"set_immune","g":5,"id":3016485045,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["def_rate",0.08],["speed",4],["acc",0.05],["max_hp_rate",0.05],["max_hp_rate",0.04],["speed",4],["acc",0.06],["max_hp_rate",0.07],["max_hp_rate",0.08],["def_rate",0.01,"u"],["speed",1,"u"],["acc",0.03,"u"],["max_hp_rate",0.05,"u"]],"p":781837305,"s":"4ab1","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"edq6h_u","ct":1733793249,"e":93803,"f":"set_immune","g":5,"id":3018034125,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["cri_dmg",0.06],["speed",3],["max_hp_rate",0.07],["att_rate",0.08],["max_hp_rate",0.08],["max_hp_rate",0.07],["att_rate",0.08],["cri_dmg",0.06],["att_rate",0.05],["cri_dmg",0.02,"u"],["max_hp_rate",0.04,"u"],["att_rate",0.04,"u"]],"p":798777729,"s":"3649","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ela11n","ct":1733799304,"e":93750,"f":"set_def","g":5,"id":3018188598,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"la11_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["def_rate",0.09],["speed",5],["res",0.09],["acc",0.09],["def_rate",0.08],["speed",4],["def_rate",0.08],["def_rate",0.09],["speed",3]],"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"edw6r","ct":1733885736,"f":"set_speed","g":5,"id":3020008154,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"edw6_ring_m","mainStatType":"def_rate","mainStatValue":0.6,"mg":1111,"op":[["def_rate",0.12],["res",0.07],["max_hp_rate",0.08],["acc",0.07],["cri",0.05]],"s":"dd13","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ela11b","ct":1733985253,"e":93750,"f":"set_def","g":5,"id":3022748232,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"la11_boot_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["def_rate",0.09],["speed",5],["res",0.09],["acc",0.09],["speed",4],["res",0.06],["speed",3],["def_rate",0.07],["def_rate",0.09]],"p":604874070,"s":"87ba","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ela11w","ct":1733986660,"e":93750,"f":"set_scar","g":5,"id":3022819464,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"la11_wepo_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.09],["att_rate",0.09],["speed",5],["cri",0.06],["speed",3],["cri",0.05],["att_rate",0.07],["speed",4],["max_hp_rate",0.09]],"s":"0","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecg6a_u","ct":1734064408,"e":93750,"f":"set_max_hp","g":5,"id":3025572911,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["speed",4],["max_hp_rate",0.08],["res",0.07],["cri_dmg",0.05],["res",0.05],["speed",3],["speed",2],["speed",2],["speed",2],["speed",4,"u"],["max_hp_rate",0.01,"u"],["res",0.03,"u"],["cri_dmg",0.01,"u"]],"s":"c28b","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ela11r","ct":1734354105,"e":93750,"f":"set_scar","g":5,"id":3034403750,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"la11_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["def_rate",0.09],["speed",5],["cri",0.06],["cri_dmg",0.08],["cri",0.03],["speed",4],["def_rate",0.05],["cri",0.05],["cri_dmg",0.05]],"p":799495489,"s":"a5db","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ela11a","ct":1734354119,"e":93750,"f":"set_scar","g":5,"id":3034404358,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"la11_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.09],["def_rate",0.09],["speed",5],["cri",0.06],["speed",3],["max_hp_rate",0.08],["speed",4],["cri",0.04],["speed",4]],"s":"0","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecg6w_u","ct":1734413300,"e":93862,"f":"set_max_hp","g":5,"id":3036014604,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["cri_dmg",0.04],["speed",3],["max_hp_rate",0.04],["cri",0.03],["cri",0.04],["cri",0.04],["cri_dmg",0.07],["max_hp_rate",0.06],["max_hp_rate",0.05],["cri_dmg",0.02,"u"],["max_hp_rate",0.04,"u"],["cri",0.03,"u"]],"p":604874070,"s":"8309","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"edw6b_u","ct":1734504623,"e":93750,"f":"set_speed","g":5,"id":3038579662,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"def_rate","mainStatValue":0.65,"mg":1111,"op":[["def_rate",0.13,null,null,0],["cri",0.04],["max_hp_rate",0],["res",0.07],["acc",0.08],["res",0.05],["cri",0.03],["acc",0.07],["max_hp_rate",0],["max_hp_rate",0],["cri",0.02,"u"],["max_hp_rate",0.04,"u"],["res",0.03,"u"],["acc",0.03,"u"],["max_hp_rate",0.14,"c","change2_max_hp_rate_3_1"]],"p":620426700,"s":"2ca6","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecd6n","ct":1734505606,"f":"set_torrent","g":5,"id":3038608646,"level":85,"mainStatBaseValue":0.11,"mainStatId":"cra6_neck_m","mainStatType":"cri","mainStatValue":0.55,"mg":1111,"op":[["cri",0.11],["res",0.07],["att",35],["max_hp_rate",0.08],["att_rate",0.08]],"s":"59af","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecg6a_u","ct":1734506997,"e":93750,"f":"set_max_hp","g":5,"id":3038648278,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["res",0.08],["max_hp_rate",0.08],["cri",0.05],["def_rate",0.06],["max_hp_rate",0.06],["cri",0.03],["def_rate",0.07],["def_rate",0.07],["res",0.06],["res",0.03,"u"],["max_hp_rate",0.03,"u"],["cri",0.02,"u"],["def_rate",0.04,"u"]],"s":"cd59","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecg6w_u","ct":1734507251,"e":93750,"f":"set_max_hp","g":5,"id":3038655513,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["cri",0.05],["acc",0.04],["cri_dmg",0.05],["max_hp_rate",0.06],["cri",0.04],["cri_dmg",0.07],["max_hp_rate",0.04],["cri",0.05],["cri_dmg",0.07],["cri",0.03,"u"],["acc",0.01,"u"],["cri_dmg",0.03,"u"],["max_hp_rate",0.03,"u"]],"s":"2329","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6a_u","ct":1734525497,"e":93921,"f":"set_speed","g":5,"id":3039251103,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri_dmg",0.05],["speed",4],["acc",0.06],["cri",0.05],["cri",0.05],["speed",4],["cri_dmg",0.05],["cri_dmg",0.06],["cri",0.04],["cri_dmg",0.03,"u"],["speed",1,"u"],["acc",0.01,"u"],["cri",0.03,"u"]],"p":596366779,"s":"924d","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ela11h","ct":1734656339,"e":93750,"f":"set_scar","g":5,"id":3041542218,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"la11_helm_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["max_hp_rate",0.09],["def_rate",0.09],["speed",5],["cri",0.06],["def_rate",0.09],["def_rate",0.06],["def_rate",0.08],["cri",0.06],["max_hp_rate",0.08]],"p":799495489,"s":"4842","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6h","ct":1734699359,"e":28217,"f":"set_speed","g":5,"id":3042345319,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["cri",0.04],["def_rate",0.08],["speed",2],["att_rate",0.05],["def_rate",0.07],["def_rate",0.08],["att_rate",0.08]],"p":207190343,"s":"d01","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6w_u","ct":1734699687,"e":93863,"f":"set_speed","g":5,"id":3042353591,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["max_hp_rate",0.07],["speed",3],["acc",0.07],["res",0.08],["acc",0.05],["acc",0.07],["res",0.08],["res",0.06],["speed",2],["max_hp_rate",0.01,"u"],["speed",1,"u"],["acc",0.04,"u"],["res",0.04,"u"]],"s":"7d28","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"edg6n","ct":1734759052,"f":"set_max_hp","g":5,"id":3043275465,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"edw6_neck_m","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["max_hp_rate",0.07],["cri",0.05],["acc",0.07],["def_rate",0.07]],"s":"517f","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecq6w_u","ct":1734760016,"e":93750,"f":"set_immune","g":5,"id":3043296212,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["cri",0.03],["att_rate",0.08],["max_hp_rate",0.06],["speed",3],["speed",3],["att_rate",0.06],["max_hp_rate",0.07],["speed",4],["cri",0.05],["cri",0.02,"u"],["att_rate",0.03,"u"],["max_hp_rate",0.03,"u"],["speed",2,"u"]],"s":"aa6c","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecg6a_u","ct":1734760381,"e":93862,"f":"set_max_hp","g":5,"id":3043303519,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp_rate",0.08],["def_rate",0.04],["cri",0.05],["speed",2],["max_hp_rate",0.05],["cri",0.05],["def_rate",0.07],["max_hp_rate",0.05],["speed",4],["max_hp_rate",0.04,"u"],["def_rate",0.03,"u"],["cri",0.02,"u"],["speed",1,"u"]],"s":"8b32","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecg6w_u","ct":1734770403,"e":84375,"f":"set_max_hp","g":4,"id":3043504095,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["cri",0.05],["cri_dmg",0.07],["speed",4],["speed",3],["cri_dmg",0.07],["cri_dmg",0.06],["max_hp_rate",0.05],["cri",0.04],["cri",0.02,"u"],["cri_dmg",0.03,"u"],["speed",1,"u"],["max_hp_rate",0.01,"u"]],"s":"63b4","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"exc100701","ct":1735223066,"g":5,"id":3054113254,"l":true,"mg":1111,"op":[["att_rate",0.12],["ek_c100701",1]],"s":"584b"},{"code":"exc100701","ct":1735223079,"g":5,"id":3054113679,"l":true,"mg":1111,"op":[["att_rate",0.12],["ek_c100701",3]],"s":"75c9"},{"code":"exc100701","ct":1735223097,"g":5,"id":3054114234,"l":true,"mg":1111,"op":[["att_rate",0.14],["ek_c100701",2]],"p":793619248,"s":"9ecf"},{"code":"eiu52h","ct":1735371018,"e":93861,"f":"set_cri_dmg","g":5,"id":3057509140,"level":88,"mainStatBaseValue":553,"mainStatId":"iu52_helm_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["att_rate",0.07],["def_rate",0.07],["cri",0.04],["cri_dmg",0.06],["att_rate",0.06],["cri_dmg",0.04],["cri_dmg",0.04],["cri_dmg",0.07],["cri_dmg",0.07]],"p":6911147,"s":"55b6","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eiu11a","ct":1735634820,"e":93803,"f":"set_max_hp","g":5,"id":3064171046,"level":88,"mainStatBaseValue":62,"mainStatId":"iu11_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.06],["def_rate",0.06],["res",0.06],["acc",0.06],["acc",0.06],["res",0.09],["max_hp_rate",0.06],["max_hp_rate",0.05],["def_rate",0.08]],"s":"4f8d","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eih9n","ct":1735634891,"e":93802,"f":"set_penetrate","g":5,"id":3064172375,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"imh_neck_m11","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["max_hp_rate",0.09],["cri",0.06],["speed",5],["att_rate",0.09],["speed",4],["speed",3],["att_rate",0.09],["speed",4],["att_rate",0.08]],"p":669363338,"s":"b093","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6b_u","ct":1736067498,"e":93750,"f":"set_speed","g":5,"id":3073835153,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["att_rate",0.07],["acc",0.08],["def_rate",0.04],["cri",0.03],["def_rate",0.08],["acc",0.04],["cri",0.04],["cri",0.05],["att_rate",0.08],["att_rate",0.03,"u"],["acc",0.03,"u"],["def_rate",0.03,"u"],["cri",0.03,"u"]],"s":"319c","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6w_u","ct":1736082229,"e":93750,"f":"set_acc","g":5,"id":3074234480,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["acc",0.05],["speed",4],["cri",0.05],["cri_dmg",0.06],["acc",0.04],["acc",0.04],["acc",0.05],["acc",0.07],["speed",4],["acc",0.07,"u"],["speed",1,"u"],["cri",0.01,"u"],["cri_dmg",0.01,"u"]],"s":"a443","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6a_u","ct":1736129971,"e":93750,"f":"set_speed","g":5,"id":3075130467,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["def_rate",0.05],["acc",0.08],["speed",4],["res",0.08],["def_rate",0.08],["speed",2],["speed",4],["def_rate",0.04],["def_rate",0.07],["def_rate",0.05,"u"],["acc",0.01,"u"],["speed",2,"u"],["res",0.01,"u"]],"s":"5a8d","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6w","ct":1736595889,"e":40460,"f":"set_speed","g":5,"id":3090308165,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["acc",0.08],["res",0.05],["speed",4],["cri",0.05],["acc",0.05],["cri",0.05],["acc",0.08],["cri",0.04]],"p":207190343,"s":"a97e","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6n","ct":1736596826,"f":"set_speed","g":5,"id":3090352829,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_neck_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["cri",0.05],["def_rate",0.08],["cri_dmg",0.06],["att_rate",0.05]],"p":207190343,"s":"7b4b","statMultiplier":1.67,"tierMultiplier":1,"type":"neck"},{"code":"ecw6r_u","ct":1736779219,"e":93863,"f":"set_acc","g":5,"id":3097347334,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["speed",4],["cri",0.04],["att_rate",0.07],["res",0.04],["att_rate",0.06],["att_rate",0.06],["att_rate",0.07],["speed",4],["res",0.04],["speed",1,"u"],["cri",0.01,"u"],["att_rate",0.05,"u"],["res",0.03,"u"]],"s":"9b79","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecs18n","ct":1736951477,"e":93862,"f":"set_speed","g":5,"id":3102946982,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"cs18_neck_m1","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["def_rate",0.08],["speed",4],["res",0.08],["acc",0.08],["res",0.06],["def_rate",0.08],["acc",0.08],["def_rate",0.08],["speed",4]],"p":445022861,"s":"5548","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6w_u","ct":1737468152,"e":93750,"f":"set_speed","g":5,"id":3113926876,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["acc",0.04],["max_hp_rate",0.05],["res",0.04],["speed",2],["speed",4],["speed",4],["acc",0.06],["speed",4],["speed",3],["acc",0.03,"u"],["max_hp_rate",0.01,"u"],["res",0.01,"u"],["speed",4,"u"]],"s":"5d69","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"exc103801","ct":1737725262,"g":5,"id":3121804145,"mg":1111,"op":[["att_rate",0.13],["ek_c103801",1]],"s":"7eb3"},{"code":"exc103801","ct":1737725268,"g":5,"id":3121804448,"mg":1111,"op":[["att_rate",0.12],["ek_c103801",2]],"p":795195383,"s":"9b5a"},{"code":"exc103801","ct":1737725366,"g":5,"id":3121808911,"l":true,"mg":1111,"op":[["att_rate",0.09],["ek_c103801",3]],"s":"f0fa"},{"code":"eiu31r","ct":1737887007,"e":93862,"f":"set_scar","g":5,"id":3125874171,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"iu31_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["def_rate",0.09],["speed",5],["cri",0.06],["cri_dmg",0.08],["def_rate",0.06],["speed",4],["cri_dmg",0.08],["def_rate",0.07],["cri_dmg",0.04]],"s":"cab7","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eiu41a","ct":1738304926,"f":"set_counter","g":5,"id":3138332158,"level":88,"mainStatBaseValue":62,"mainStatId":"iu41_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.06],["def_rate",0.06],["speed",4],["res",0.06]],"p":717223364,"s":"e26f","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eiu12w","ct":1738309540,"e":93750,"f":"set_penetrate","g":5,"id":3138489428,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"iu12_weap_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["att_rate",0.08],["max_hp_rate",0.08],["speed",4],["cri",0.05],["att_rate",0.08],["speed",3],["cri",0.06],["cri",0.05],["speed",3]],"s":"94d5","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6h_u","ct":1738487563,"e":84375,"f":"set_cri","g":4,"id":3143494229,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["speed",4],["att",44],["def_rate",0.06],["speed",2],["speed",4],["speed",2],["acc",0.06],["speed",2],["speed",4,"u"],["att",11,"u"],["def_rate",0.01,"u"],["acc",0.01,"u"]],"s":"b332","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6a_u","ct":1738488130,"e":93750,"f":"set_speed","g":5,"id":3143507304,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["acc",0.07],["speed",4],["res",0.04],["max_hp_rate",0.04],["max_hp_rate",0.05],["speed",4],["res",0.05],["acc",0.05],["acc",0.05],["acc",0.04,"u"],["speed",1,"u"],["res",0.03,"u"],["max_hp_rate",0.03,"u"]],"s":"4400","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ess13n","ct":1738489811,"e":82144,"f":"set_speed","g":5,"id":3143543526,"l":true,"level":78,"mainStatBaseValue":0.13,"mainStatId":"ss13_neck_m","mainStatType":"cri_dmg","mainStatValue":0.65,"mg":1111,"op":[["cri_dmg",0.13],["max_hp_rate",0.07],["att_rate",0.07],["speed",4],["cri",0.04],["cri",0.03],["att_rate",0.07],["att_rate",0.04],["cri",0.05],["cri",0.04]],"p":596366779,"s":"a7cc","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6w_u","ct":1738588296,"e":93804,"f":"set_speed","g":5,"id":3145709811,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["cri",0.04],["cri_dmg",0],["speed",3],["att_rate",0.08],["speed",2],["att_rate",0.07],["att_rate",0.08],["cri_dmg",0],["att_rate",0.06],["cri",0.01,"u"],["cri_dmg",0.02,"u"],["speed",1,"u"],["att_rate",0.05,"u"],["cri_dmg",0.07,"c","change2_cri_dmg_2_1"]],"p":596366779,"s":"c938","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecs14n","ct":1738595169,"e":82031,"f":"set_speed","g":5,"id":3145909262,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"cs14_neck_m1","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["def_rate",0.08],["speed",4],["res",0.08],["acc",0.08],["acc",0.06],["acc",0.09],["acc",0.06],["res",0.08],["acc",0.09]],"p":110838566,"s":"aa30","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eah26w","ct":1738749296,"e":93750,"f":"set_penetrate","g":5,"id":3148997935,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"ah26_weap_m1","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["att_rate",0.08],["cri",0.05],["cri_dmg",0.07],["speed",5],["speed",3],["cri_dmg",0.05],["cri_dmg",0.04],["att_rate",0.09],["att_rate",0.08]],"p":742543115,"s":"12bf","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6w_u","ct":1738749541,"e":93805,"f":"set_speed","g":5,"id":3149002851,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["acc",0.04],["cri",0.03],["cri_dmg",0.07],["att_rate",0.07],["att_rate",0.08],["acc",0.07],["att_rate",0.07],["acc",0.08],["acc",0.08],["acc",0.05,"u"],["cri",0.01,"u"],["cri_dmg",0.01,"u"],["att_rate",0.04,"u"]],"s":"3736","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eal85b_u","ct":1738750478,"e":93750,"f":"set_torrent","g":5,"id":3149023177,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,0],["max_hp_rate",0.05],["cri",0.03],["att",43],["cri_dmg",0.06],["att",38],["att",37],["max_hp_rate",0.06],["att",39],["att",34],["max_hp_rate",0.03,"u"],["cri",0.01,"u"],["att",55,"u"],["cri_dmg",0.01,"u"]],"s":"3e15","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eal85r_u","ct":1738750758,"e":93750,"f":"set_torrent","g":5,"id":3149029539,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,0],["cri_dmg",0.04],["speed",2],["acc",0.07],["max_hp_rate",0.05],["cri_dmg",0.07],["max_hp_rate",0.08],["cri_dmg",0.05],["acc",0.07],["speed",2],["cri_dmg",0.03,"u"],["speed",1,"u"],["acc",0.03,"u"],["max_hp_rate",0.03,"u"]],"s":"70c0","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6h_u","ct":1738846919,"e":93805,"f":"set_cri","g":5,"id":3152011446,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["speed",2],["max_hp_rate",0.08],["cri",0.05],["att_rate",0.07],["cri",0.04],["cri",0.05],["cri",0.05],["speed",2],["speed",2],["speed",2,"u"],["max_hp_rate",0.01,"u"],["cri",0.04,"u"],["att_rate",0.01,"u"]],"p":613630545,"s":"fd21","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecd6n_u","ct":1738996873,"e":84470,"f":"set_penetrate","g":4,"id":3156124168,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_neck_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp",163],["speed",2],["def_rate",0.07],["speed",4],["speed",4],["speed",4],["res",0.04],["speed",2],["max_hp",56,"u"],["speed",4,"u"],["def_rate",0.01,"u"],["res",0.01,"u"]],"s":"fc05","statMultiplier":2.5,"tierMultiplier":1,"type":"neck"},{"code":"eah26h","ct":1739025892,"e":93862,"f":"set_penetrate","g":5,"id":3157611187,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"ah26_helm_m1","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["att_rate",0.08],["cri",0.05],["cri_dmg",0.07],["speed",5],["cri",0.03],["speed",3],["att_rate",0.05],["att_rate",0.09],["cri",0.05]],"p":704271358,"s":"3ad2","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecg6h_u","ct":1739027653,"e":84411,"f":"set_max_hp","g":4,"id":3157711127,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["speed",4],["att",32],["cri_dmg",0.07],["speed",4],["speed",4],["speed",1],["def_rate",0.08],["speed",4],["speed",4,"u"],["att",11,"u"],["cri_dmg",0.01,"u"],["def_rate",0.01,"u"]],"s":"e12f","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ewb1h","ct":1739081066,"e":93750,"f":"set_torrent","g":5,"id":3159488393,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"wb1_helm_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["speed",5],["att_rate",0.09],["cri",0.06],["cri_dmg",0.08],["speed",4],["speed",4],["speed",4],["att_rate",0.08],["att_rate",0.08]],"p":596366779,"s":"3eb9","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecg6a_u","ct":1739081914,"e":84375,"f":"set_max_hp","g":4,"id":3159532319,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp_rate",0.06],["speed",3],["cri_dmg",0.07],["speed",2],["speed",3],["speed",4],["res",0.06],["speed",3],["max_hp_rate",0.01,"u"],["speed",4,"u"],["cri_dmg",0.01,"u"],["res",0.01,"u"]],"s":"d7d0","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecd6a_u","ct":1739085716,"e":93862,"f":"set_penetrate","g":5,"id":3159728901,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["res",0.08],["cri",0.05],["cri_dmg",0.05],["speed",4],["cri_dmg",0.06],["cri_dmg",0.04],["cri",0.04],["res",0.07],["cri_dmg",0.06],["res",0.03,"u"],["cri",0.02,"u"],["cri_dmg",0.04,"u"]],"s":"1e2d","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecd6h_u","ct":1739452905,"e":93750,"f":"set_penetrate","g":5,"id":3168939629,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["cri",0.05],["speed",4],["cri_dmg",0],["att_rate",0.06],["speed",3],["cri",0.04],["att_rate",0.07],["cri_dmg",0],["att_rate",0.05],["cri",0.02,"u"],["speed",1,"u"],["cri_dmg",0.02,"u"],["att_rate",0.04,"u"],["cri_dmg",0.08,"c","change2_cri_dmg_2_1"]],"s":"8172","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6a","ct":1739457970,"e":82031,"f":"set_speed","g":5,"id":3169174652,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["res",0.08],["max_hp_rate",0.08],["cri_dmg",0.04],["acc",0.08],["acc",0.08],["res",0.08],["acc",0.08],["cri_dmg",0.05],["acc",0.08]],"s":"b1a5","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6r_u","ct":1739706315,"e":84471,"f":"set_speed","g":4,"id":3175654151,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_ring_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["def",29],["speed",3],["att_rate",0.08],["speed",3],["speed",2],["speed",3],["acc",0.05],["speed",3],["def",9,"u"],["speed",4,"u"],["att_rate",0.01,"u"],["acc",0.01,"u"]],"p":649028156,"s":"1b74","statMultiplier":1.67,"tierMultiplier":1,"type":"ring"},{"code":"eah26a","ct":1739706589,"e":93750,"f":"set_penetrate","g":5,"id":3175666068,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"ah26_armo_m1","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.08],["def_rate",0.08],["cri",0.05],["cri_dmg",0.07],["def_rate",0.07],["max_hp_rate",0.06],["cri",0.03],["max_hp_rate",0.08],["max_hp_rate",0.05]],"p":490684210,"s":"a09b","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6w_u","ct":1739707104,"e":93750,"f":"set_speed","g":5,"id":3175688179,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["acc",0.08],["att_rate",0.07],["speed",4],["max_hp",190],["acc",0.06],["speed",4],["acc",0.08],["acc",0.06],["att_rate",0.08],["acc",0.05,"u"],["att_rate",0.03,"u"],["speed",1,"u"],["max_hp",56,"u"]],"p":898971885,"s":"4f5f","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"exc114201","ct":1739795245,"g":5,"id":3177688081,"l":true,"mg":1111,"op":[["att_rate",0.13],["ek_c114201",3]],"p":669363338,"s":"eab8"},{"code":"ecw6n_u","ct":1739944879,"e":93750,"f":"set_speed","g":5,"id":3180299346,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["max_hp",0],["speed",4],["cri_dmg",0.05],["acc",0.04],["speed",3],["speed",4],["speed",3],["acc",0.07],["speed",3],["max_hp",56,"u"],["speed",4,"u"],["cri_dmg",0.01,"u"],["acc",0.03,"u"],["max_hp",170,"c","change2_max_hp_1_1"]],"p":739641017,"s":"1aa3","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eah26b","ct":1740143390,"e":93750,"f":"set_penetrate","g":5,"id":3184327459,"l":true,"level":88,"mainStatBaseValue":9,"mainStatId":"ah26_boot_m1","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9],["att_rate",0.08],["cri",0.05],["cri_dmg",0.07],["max_hp_rate",0.08],["max_hp_rate",0.07],["cri",0.04],["att_rate",0.06],["att_rate",0.07],["max_hp_rate",0.06]],"p":669363338,"s":"8d57","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eah26r","ct":1740221813,"e":93750,"f":"set_penetrate","g":5,"id":3186369253,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ah26_ring_m1","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["cri",0.05],["cri_dmg",0.07],["speed",5],["def_rate",0.08],["cri_dmg",0.07],["def_rate",0.06],["cri_dmg",0.07],["cri",0.06],["def_rate",0.08]],"p":847822619,"s":"dd0e","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecb6w_u","ct":1740274029,"e":93862,"f":"set_cri_dmg","g":5,"id":3187637280,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["cri_dmg",0.07],["speed",3],["res",0.08],["cri",0.03],["speed",3],["speed",2],["cri_dmg",0.06],["res",0.08],["cri_dmg",0.04],["cri_dmg",0.03,"u"],["speed",2,"u"],["res",0.03,"u"],["cri",0.01,"u"]],"p":461351155,"s":"8f41","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecg6h_u","ct":1740274953,"e":93750,"f":"set_max_hp","g":5,"id":3187659883,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["cri",0.05],["max_hp_rate",0.08],["cri_dmg",0.07],["res",0.06],["max_hp_rate",0.08],["res",0.08],["cri_dmg",0.05],["max_hp_rate",0.08],["cri_dmg",0.04],["cri",0.01,"u"],["max_hp_rate",0.04,"u"],["cri_dmg",0.03,"u"],["res",0.03,"u"]],"p":781837305,"s":"45ed","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6h_u","ct":1740276347,"e":93804,"f":"set_cri_dmg","g":5,"id":3187694618,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["speed",4],["def_rate",0.08],["cri_dmg",0.06],["res",0.06],["def_rate",0.06],["speed",4],["speed",2],["speed",4],["res",0.06],["speed",3,"u"],["def_rate",0.03,"u"],["cri_dmg",0.01,"u"],["res",0.03,"u"]],"s":"a0dc","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecg6h_u","ct":1740282191,"e":93750,"f":"set_max_hp","g":5,"id":3187874031,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["cri",0.05],["att_rate",0.05],["max_hp_rate",0.07],["speed",4],["cri",0.03],["cri",0.03],["cri",0.05],["att_rate",0.05],["att_rate",0.05],["cri",0.04,"u"],["att_rate",0.04,"u"],["max_hp_rate",0.01,"u"]],"s":"3f69","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ewb1n","ct":1740635250,"e":93750,"f":"set_speed","g":5,"id":3195549081,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"wb1_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["speed",5],["def_rate",0.09],["def",40],["max_hp",229],["speed",4],["speed",4],["speed",4],["def_rate",0.08],["def_rate",0.08]],"p":218403497,"s":"f660","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eal85r_u","ct":1740639600,"e":93804,"f":"set_cri_dmg","g":5,"id":3195779873,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["acc",0.07],["cri",0.05],["cri_dmg",0.05],["speed",2],["cri_dmg",0.07],["cri_dmg",0.06],["speed",2],["speed",3],["acc",0.07],["acc",0.03,"u"],["cri",0.01,"u"],["cri_dmg",0.03,"u"],["speed",2,"u"]],"p":461351155,"s":"6d8","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eah26n","ct":1740708259,"e":93750,"f":"set_penetrate","g":5,"id":3197659888,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"ah26_neck_m1","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["att_rate",0.08],["cri",0.05],["speed",5],["def_rate",0.08],["def_rate",0.08],["def_rate",0.06],["att_rate",0.07],["cri",0.04],["cri",0.04]],"p":717223364,"s":"16a","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6w_u","ct":1740710069,"e":93805,"f":"set_speed","g":5,"id":3197717735,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["max_hp_rate",0.05],["speed",3],["acc",0.08],["cri",0.05],["max_hp_rate",0.06],["max_hp_rate",0.05],["speed",3],["max_hp_rate",0.07],["cri",0.04],["max_hp_rate",0.05,"u"],["speed",1,"u"],["acc",0.01,"u"],["cri",0.02,"u"]],"p":226377978,"s":"24a6","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eiu11b","ct":1740754046,"e":93750,"f":"set_def","g":5,"id":3199240802,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"iu11_boot_m","mainStatType":"def_rate","mainStatValue":0.65,"mg":1111,"op":[["def_rate",0.13],["max_hp_rate",0.06],["acc",0.06],["speed",4],["res",0],["speed",3],["acc",0.08],["max_hp_rate",0.09],["max_hp_rate",0.09],["res",0],["res",0.11,"c","change2_res_2_2"]],"s":"938","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecg6a_u","ct":1740829681,"e":93805,"f":"set_max_hp","g":5,"id":3201796554,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri_dmg",0.07],["max_hp_rate",0.06],["speed",2],["res",0.04],["max_hp_rate",0.07],["res",0.07],["res",0.04],["max_hp_rate",0.08],["res",0.06],["cri_dmg",0.01,"u"],["max_hp_rate",0.04,"u"],["res",0.05,"u"]],"s":"408a","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecd6b_u","ct":1740880935,"e":93750,"f":"set_penetrate","g":5,"id":3203293846,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["def_rate",0.06],["max_hp_rate",0.06],["cri_dmg",0.05],["cri",0.05],["cri_dmg",0.05],["def_rate",0.08],["cri_dmg",0.06],["def_rate",0.06],["cri",0.04],["def_rate",0.04,"u"],["max_hp_rate",0.01,"u"],["cri_dmg",0.03,"u"],["cri",0.02,"u"]],"s":"42e1","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6h","ct":1741015149,"e":1865,"f":"set_acc","g":4,"id":3207574523,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["speed",4],["max_hp_rate",0.07],["acc",0.08],["max_hp_rate",0.07]],"s":"3149","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ela12w","ct":1742386877,"e":93750,"f":"set_counter","g":5,"id":3237390039,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"la12_wepo_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.09],["att_rate",0.09],["speed",5],["cri",0.06],["att_rate",0.08],["max_hp_rate",0.05],["speed",4],["cri",0.05],["max_hp_rate",0.07]],"s":"0","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ela12b","ct":1742540715,"e":93750,"f":"set_counter","g":5,"id":3239610284,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"la12_boot_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["max_hp_rate",0.09],["speed",5],["cri",0.06],["cri_dmg",0.08],["cri_dmg",0.06],["cri",0.03],["max_hp_rate",0.09],["cri",0.04],["cri_dmg",0.07]],"p":559859824,"s":"fbb2","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ela12a","ct":1742544154,"e":93803,"f":"set_counter","g":5,"id":3239657261,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"la12_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.09],["speed",5],["cri",0.06],["cri_dmg",0.08],["cri",0.05],["cri",0.04],["max_hp_rate",0.05],["cri",0.05],["max_hp_rate",0.07]],"s":"0","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ela12n","ct":1742544157,"e":93750,"f":"set_immune","g":5,"id":3239657322,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"la12_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["def_rate",0.09],["speed",5],["res",0.09],["acc",0.09],["acc",0.07],["res",0.06],["def_rate",0.09],["acc",0.05],["acc",0.07]],"p":781837305,"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ela12r","ct":1742707661,"e":93750,"f":"set_counter","g":5,"id":3242125320,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"la12_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["max_hp_rate",0.09],["speed",5],["cri",0.06],["cri_dmg",0.08],["cri",0.04],["cri",0.04],["cri_dmg",0.08],["speed",3],["cri_dmg",0.06]],"p":559859824,"s":"4fb8","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecs19a","ct":1742906483,"e":93750,"f":"set_immune","g":5,"id":3245041888,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"cs19_armo_m1","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["def_rate",0.08],["speed",4],["cri",0.05],["cri_dmg",0.07],["cri",0.06],["def_rate",0.07],["cri_dmg",0.08],["def_rate",0.09],["cri_dmg",0.08]],"p":640588979,"s":"3146","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ela12h","ct":1743136320,"e":93862,"f":"set_immune","g":5,"id":3249190635,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"la12_helm_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["max_hp_rate",0.09],["def_rate",0.09],["speed",5],["res",0.09],["max_hp_rate",0.07],["def_rate",0.08],["def_rate",0.05],["max_hp_rate",0.09],["speed",3]],"s":"ba73","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eih9n","ct":1743410389,"e":93750,"f":"set_penetrate","g":5,"id":3257150932,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"imh_neck_m11","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["max_hp_rate",0.09],["cri",0.06],["speed",5],["att_rate",0.09],["speed",4],["max_hp_rate",0.05],["att_rate",0.06],["speed",3],["speed",3]],"p":847822619,"s":"a72f","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eih6w","ct":1743410398,"e":93750,"f":"set_speed","g":5,"id":3257151092,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"imh_wepo_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.09],["att_rate",0.09],["speed",5],["cri",0.06],["att_rate",0.06],["att_rate",0.09],["cri",0.03],["cri",0.06],["max_hp_rate",0.08]],"s":"8e99","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eiu21r","ct":1743410407,"e":93750,"f":"set_speed","g":5,"id":3257151282,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"iu21_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["def_rate",0.07],["speed",3],["cri",0.04],["res",0.07],["cri",0.04],["res",0.05],["def_rate",0.09],["def_rate",0.07],["speed",3]],"p":892353109,"s":"f430","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eih9r","ct":1743410569,"e":93750,"f":"set_res","g":5,"id":3257155015,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"imh_ring_m11","mainStatType":"res","mainStatValue":0.65,"mg":1111,"op":[["res",0.13],["max_hp_rate",0.09],["def_rate",0.09],["speed",5],["acc",0.09],["acc",0.09],["speed",3],["def_rate",0.09],["max_hp_rate",0.07],["max_hp_rate",0.05]],"s":"318b","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"exc115001","ct":1744372854,"g":5,"id":3278551185,"mg":1111,"op":[["acc",0.13],["ek_c115001",3]],"s":"dba4"},{"code":"exc115001","ct":1744372861,"g":5,"id":3278551462,"mg":1111,"op":[["acc",0.12],["ek_c115001",3]],"s":"5353"},{"code":"exc115001","ct":1744372864,"g":5,"id":3278551560,"mg":1111,"op":[["acc",0.12],["ek_c115001",2]],"s":"98e4"},{"code":"exc115001","ct":1744372867,"g":5,"id":3278551690,"mg":1111,"op":[["acc",0.13],["ek_c115001",1]],"p":461351155,"s":"23b4"},{"code":"ecw6b_u","ct":1744436055,"e":93750,"f":"set_speed","g":5,"id":3280222776,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["att_rate",0.07],["def_rate",0.07],["cri",0.05],["att",44],["def_rate",0.08],["def_rate",0.04],["def_rate",0.05],["cri",0.04],["cri",0.05],["att_rate",0.01,"u"],["def_rate",0.05,"u"],["cri",0.03,"u"],["att",11,"u"]],"s":"5673","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecd6h_u","ct":1744447701,"e":93750,"f":"set_penetrate","g":5,"id":3280658690,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["def_rate",0.06],["max_hp_rate",0.07],["cri",0.04],["cri_dmg",0.06],["cri",0.03],["def_rate",0.08],["cri",0.05],["max_hp_rate",0.07],["def_rate",0.06],["def_rate",0.04,"u"],["max_hp_rate",0.03,"u"],["cri",0.03,"u"],["cri_dmg",0.01,"u"]],"s":"431c","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecg6a_u","ct":1744453039,"e":93805,"f":"set_max_hp","g":5,"id":3280838468,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["res",0.06],["cri",0.05],["speed",2],["cri_dmg",0.07],["speed",3],["speed",2],["speed",3],["speed",3],["cri",0.05],["res",0.01,"u"],["cri",0.02,"u"],["speed",4,"u"],["cri_dmg",0.01,"u"]],"s":"c9b5","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecd6w_u","ct":1744453982,"e":84375,"f":"set_penetrate","g":4,"id":3280870641,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["speed",4],["cri",0.05],["cri_dmg",0.07],["cri",0.05],["cri",0.05],["cri",0.04],["att_rate",0],["speed",2],["speed",1,"u"],["cri",0.04,"u"],["cri_dmg",0.01,"u"],["att_rate",0.01,"u"],["att_rate",0.08,"c","change2_att_rate_1_2"]],"s":"2f4e","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6h_u","ct":1744454440,"e":93750,"f":"set_speed","g":5,"id":3280887042,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["def_rate",0.08],["max_hp_rate",0.06],["cri_dmg",0.07],["res",0.08],["res",0.05],["def_rate",0.07],["def_rate",0.06],["cri_dmg",0.06],["max_hp_rate",0.08],["def_rate",0.04,"u"],["max_hp_rate",0.03,"u"],["cri_dmg",0.02,"u"],["res",0.03,"u"]],"p":898971885,"s":"8d0b","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"edd6r_u","ct":1744454954,"e":93750,"f":"set_penetrate","g":5,"id":3280905233,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["cri_dmg",0.07],["def_rate",0.08],["att_rate",0.08],["res",0.08],["cri_dmg",0.07],["res",0.07],["cri_dmg",0.06],["cri_dmg",0.06],["cri_dmg",0.06],["cri_dmg",0.06,"u"],["def_rate",0.01,"u"],["att_rate",0.01,"u"],["res",0.03,"u"]],"s":"eaf4","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6w_u","ct":1744461566,"e":93750,"f":"set_speed","g":5,"id":3281151044,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["speed",4],["cri_dmg",0.07],["att_rate",0.07],["max_hp",163],["att_rate",0.07],["speed",3],["speed",4],["att_rate",0.06],["max_hp",174],["speed",2,"u"],["cri_dmg",0.01,"u"],["att_rate",0.04,"u"],["max_hp",112,"u"]],"s":"e34","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecb6a_u","ct":1744463749,"e":93750,"f":"set_cri_dmg","g":5,"id":3281237276,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp_rate",0.08],["res",0.08],["acc",0.05],["cri",0.04],["cri",0.05],["res",0.08],["max_hp_rate",0.05],["cri",0.04],["acc",0.04],["max_hp_rate",0.03,"u"],["res",0.03,"u"],["acc",0.03,"u"],["cri",0.03,"u"]],"s":"50e7","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecd6a","ct":1744470774,"f":"set_penetrate","g":5,"id":3281508679,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["def_rate",0.05],["max_hp_rate",0.08],["acc",0.08],["res",0.05]],"s":"67ff","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"edw6w_u","ct":1744511327,"e":93750,"f":"set_speed","g":5,"id":3282207730,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,1],["att_rate",0.08],["speed",3],["cri_dmg",0.07],["cri",0.04],["cri",0.03],["cri_dmg",0.06],["cri_dmg",0.06],["speed",2],["speed",3],["att_rate",0.01,"u"],["speed",2,"u"],["cri_dmg",0.03,"u"],["cri",0.02,"u"]],"s":"8b32","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6a_u","ct":1744541636,"e":93863,"f":"set_speed","g":5,"id":3283232947,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri",0.04],["max_hp_rate",0.06],["cri_dmg",0.04],["res",0.08],["cri",0.05],["cri",0.05],["res",0.08],["cri_dmg",0.06],["res",0.08],["cri",0.03,"u"],["max_hp_rate",0.01,"u"],["cri_dmg",0.02,"u"],["res",0.04,"u"]],"s":"4a2c","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecg6a_u","ct":1744544387,"e":93750,"f":"set_max_hp","g":5,"id":3283323107,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["speed",2],["max_hp",0],["def_rate",0.08],["max_hp_rate",0.08],["def_rate",0.05],["def_rate",0.07],["speed",4],["max_hp_rate",0.06],["def_rate",0.06],["speed",1,"u"],["max_hp",56,"u"],["def_rate",0.05,"u"],["max_hp_rate",0.03,"u"],["max_hp",203,"c","change2_max_hp_1_2"]],"p":604874070,"s":"828f","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6w_u","ct":1744546644,"e":93750,"f":"set_speed","g":5,"id":3283401096,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["acc",0.06],["speed",0],["res",0.06],["max_hp_rate",0.07],["max_hp_rate",0.06],["max_hp_rate",0.04],["max_hp_rate",0.08],["speed",0],["max_hp_rate",0.06],["acc",0.01,"u"],["speed",1,"u"],["res",0.01,"u"],["max_hp_rate",0.07,"u"],["speed",4,"c","change2_speed_2_1"]],"s":"4b0d","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6a_u","ct":1744721458,"e":93863,"f":"set_speed","g":5,"id":3287564368,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["res",0.08],["acc",0.07],["max_hp_rate",0.04],["cri_dmg",0.07],["res",0.05],["max_hp_rate",0.08],["res",0.07],["res",0.07],["cri_dmg",0.07],["res",0.05,"u"],["acc",0.01,"u"],["max_hp_rate",0.03,"u"],["cri_dmg",0.02,"u"]],"s":"1001","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"exc110401","ct":1744811849,"g":5,"id":3289762134,"l":true,"mg":1111,"op":[["max_hp_rate",0.14],["ek_c110401",3]],"p":769932771,"s":"c8a2"},{"code":"eal85n_u","ct":1744979588,"e":93863,"f":"set_counter","g":5,"id":3293734850,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_neck_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,1],["res",0.08],["max_hp_rate",0.08],["def_rate",0.08],["max_hp",185],["res",0.08],["max_hp",185],["res",0.04],["max_hp_rate",0.06],["res",0.05],["res",0.05,"u"],["max_hp_rate",0.03,"u"],["def_rate",0.01,"u"],["max_hp",112,"u"]],"p":559859824,"s":"83a8","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecg6r_u","ct":1745042963,"e":93750,"f":"set_max_hp","g":5,"id":3295211854,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"res","mainStatValue":0.65,"mg":1111,"op":[["res",0.13,null,null,0],["max_hp_rate",0.04],["att_rate",0.08],["speed",3],["acc",0.08],["max_hp_rate",0.04],["speed",4],["att_rate",0.05],["speed",2],["speed",4],["max_hp_rate",0.03,"u"],["att_rate",0.03,"u"],["speed",3,"u"],["acc",0.01,"u"]],"s":"f9","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecg6n_u","ct":1745043879,"e":93750,"f":"set_max_hp","g":5,"id":3295239257,"l":true,"level":90,"mainStatBaseValue":0.14,"mainStatId":"cra7_neck_m","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14,null,null,0],["max_hp",190],["def_rate",0],["max_hp_rate",0.06],["cri",0.05],["cri",0.04],["cri",0.05],["max_hp",185],["max_hp",200],["max_hp_rate",0.08],["max_hp",168,"u"],["def_rate",0.01,"u"],["max_hp_rate",0.03,"u"],["cri",0.03,"u"],["def_rate",0.07,"c","change2_def_rate_1_1"]],"p":769932771,"s":"5ac4","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6a_u","ct":1745078235,"e":93750,"f":"set_speed","g":5,"id":3296274104,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["acc",0.04],["cri",0.05],["def_rate",0.08],["max_hp_rate",0.08],["max_hp_rate",0.04],["max_hp_rate",0.06],["max_hp_rate",0.05],["max_hp_rate",0.05],["def_rate",0.05],["acc",0.01,"u"],["cri",0.01,"u"],["def_rate",0.03,"u"],["max_hp_rate",0.07,"u"]],"p":769932771,"s":"be4","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6r_u","ct":1745140029,"e":93750,"f":"set_speed","g":5,"id":3297681678,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"res","mainStatValue":0.65,"mg":1111,"op":[["res",0.13,null,null,0],["att_rate",0.04],["def_rate",0.07],["acc",0.04],["speed",3],["speed",4],["acc",0.08],["speed",2],["speed",4],["def_rate",0.05],["att_rate",0.01,"u"],["def_rate",0.03,"u"],["acc",0.03,"u"],["speed",3,"u"]],"s":"9bad","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecg6a_u","ct":1745143160,"e":93750,"f":"set_max_hp","g":5,"id":3297773595,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,1],["cri_dmg",0.06],["res",0.08],["cri",0.05],["max_hp_rate",0.06],["max_hp_rate",0.07],["cri_dmg",0.04],["cri",0.04],["cri",0.05],["cri",0.04],["cri_dmg",0.02,"u"],["res",0.01,"u"],["cri",0.04,"u"],["max_hp_rate",0.03,"u"]],"s":"4acb","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6n_u","ct":1745159196,"e":84375,"f":"set_cri_dmg","g":4,"id":3298286939,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["cri",0.03],["def",32],["speed",3],["speed",3],["speed",3],["speed",2],["cri_dmg",0.04],["speed",2],["cri",0.01,"u"],["def",9,"u"],["speed",4,"u"],["cri_dmg",0.01,"u"]],"p":6911147,"s":"82d1","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecb6a","ct":1745161315,"e":73828,"f":"set_cri_dmg","g":4,"id":3298359449,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["def_rate",0.08],["max_hp_rate",0.04],["speed",4],["speed",4],["speed",2],["speed",2],["cri_dmg",0.06],["max_hp_rate",0.07]],"p":6911147,"s":"c759","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecg6n_u","ct":1745162005,"e":93750,"f":"set_max_hp","g":5,"id":3298381574,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_neck_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["speed",3],["att",44],["cri_dmg",0.05],["cri",0.05],["speed",2],["speed",3],["speed",2],["cri_dmg",0.04],["speed",4],["speed",4,"u"],["att",11,"u"],["cri_dmg",0.02,"u"],["cri",0.01,"u"]],"p":898971885,"s":"1471","statMultiplier":2.25,"tierMultiplier":1,"type":"neck"},{"code":"ecw6w_u","ct":1745162233,"e":93750,"f":"set_speed","g":5,"id":3298389288,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["max_hp",191],["res",0.08],["speed",4],["max_hp_rate",0.06],["speed",2],["res",0.08],["speed",3],["res",0.07],["max_hp",176],["max_hp",112,"u"],["res",0.04,"u"],["speed",2,"u"],["max_hp_rate",0.01,"u"]],"s":"62f5","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecg6a_u","ct":1745162920,"e":93863,"f":"set_max_hp","g":5,"id":3298412804,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp",190],["acc",0.07],["max_hp_rate",0.08],["cri",0.05],["max_hp_rate",0.06],["max_hp_rate",0.08],["max_hp",170],["max_hp_rate",0.08],["cri",0.03],["max_hp",112,"u"],["acc",0.01,"u"],["max_hp_rate",0.05,"u"],["cri",0.02,"u"]],"p":326928979,"s":"835e","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecs15w","ct":1745217248,"e":82086,"f":"set_speed","g":5,"id":3299352579,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"cs15_weap_m1","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.08],["speed",4],["res",0.08],["acc",0.08],["res",0.05],["max_hp_rate",0.06],["acc",0.05],["acc",0.06],["acc",0.06]],"s":"c5c1","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecd6w","ct":1745561500,"e":73828,"f":"set_penetrate","g":4,"id":3307472020,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["att_rate",0.08],["cri",0.05],["cri_dmg",0.06],["cri_dmg",0.06],["cri",0.05],["cri",0.03],["acc",0.04],["att_rate",0.05]],"s":"d36f","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"edw6n","ct":1745564587,"e":82031,"f":"set_speed","g":5,"id":3307573915,"l":true,"level":85,"mainStatBaseValue":0.13,"mainStatId":"edw6_neck_m","mainStatType":"cri_dmg","mainStatValue":0.65,"mg":1111,"op":[["cri_dmg",0.13],["max_hp_rate",0.08],["acc",0.08],["def_rate",0.08],["cri",0.05],["acc",0.04],["cri",0.05],["acc",0.07],["max_hp_rate",0.08],["max_hp_rate",0.05]],"s":"5bc3","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"edd6r","ct":1745571988,"e":82031,"f":"set_penetrate","g":5,"id":3307802759,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"edw6_ring_m","mainStatType":"def_rate","mainStatValue":0.6,"mg":1111,"op":[["def_rate",0.12],["speed",4],["cri_dmg",0.07],["res",0.08],["max_hp_rate",0.07],["cri_dmg",0.06],["cri_dmg",0.05],["res",0.04],["speed",4],["res",0.04]],"s":"e918","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecb6a_u","ct":1745585656,"e":93750,"f":"set_cri_dmg","g":5,"id":3308249556,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri_dmg",0.07],["max_hp_rate",0.05],["speed",4],["cri",0.05],["max_hp_rate",0.08],["speed",2],["speed",4],["max_hp_rate",0.08],["max_hp_rate",0.06],["cri_dmg",0.01,"u"],["max_hp_rate",0.05,"u"],["speed",2,"u"],["cri",0.01,"u"]],"s":"def4","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecd6r_u","ct":1745587954,"e":93750,"f":"set_penetrate","g":5,"id":3308343543,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"def_rate","mainStatValue":0.65,"mg":1111,"op":[["def_rate",0.13,null,null,0],["att_rate",0.05],["cri",0.05],["speed",4],["cri_dmg",0.07],["att_rate",0.08],["att_rate",0.04],["cri_dmg",0.04],["att_rate",0.05],["cri",0.03],["att_rate",0.05,"u"],["cri",0.02,"u"],["cri_dmg",0.02,"u"]],"s":"d38b","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecd6a_u","ct":1745662795,"e":93750,"f":"set_penetrate","g":5,"id":3310481179,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri",0.05],["speed",2],["cri_dmg",0.07],["def_rate",0.07],["speed",4],["cri",0.05],["cri_dmg",0.07],["speed",4],["cri",0.03],["cri",0.03,"u"],["speed",2,"u"],["cri_dmg",0.02,"u"],["def_rate",0.01,"u"]],"p":899521626,"s":"be27","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a_u","ct":1745665326,"e":93750,"f":"set_speed","g":5,"id":3310549559,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp",165],["speed",2],["max_hp_rate",0.08],["def_rate",0.06],["max_hp_rate",0.06],["max_hp_rate",0.04],["max_hp_rate",0.06],["speed",3],["speed",4],["max_hp",56,"u"],["speed",2,"u"],["max_hp_rate",0.05,"u"],["def_rate",0.01,"u"]],"s":"5147","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6a_u","ct":1745756410,"e":84375,"f":"set_cri_dmg","g":4,"id":3312815132,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri_dmg",0.06],["cri",0.05],["speed",3],["speed",4],["cri",0.05],["cri_dmg",0.07],["res",0.04],["res",0.07],["cri_dmg",0.02,"u"],["cri",0.02,"u"],["speed",1,"u"],["res",0.03,"u"]],"p":11185757,"s":"882e","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6w_u","ct":1745757844,"e":93862,"f":"set_speed","g":5,"id":3312859225,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["att_rate",0.07],["max_hp_rate",0.07],["speed",3.0],["cri_dmg",0.07],["max_hp_rate",0.07],["att_rate",0.04],["max_hp_rate",0.06],["speed",2],["att_rate",0.08],["att_rate",0.04,"u"],["max_hp_rate",0.04,"u"],["speed",1,"u"],["cri_dmg",0.01,"u"]],"s":"f5df","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6h_u","ct":1745757844,"e":93750,"f":"set_speed","g":5,"id":3312859226,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["att_rate",0.07],["speed",3.0],["cri_dmg",0.06],["cri",0],["att_rate",0.07],["speed",2],["speed",4],["cri_dmg",0.06],["att_rate",0.04],["att_rate",0.04,"u"],["speed",2,"u"],["cri_dmg",0.02,"u"],["cri",0.01,"u"],["cri",0.04,"c","change2_cri_1_2"]],"s":"272f","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6a_u","ct":1745757844,"e":93805,"f":"set_speed","g":5,"id":3312859227,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp_rate",0.07],["speed",3.0],["cri",0.04],["cri_dmg",0.07],["cri_dmg",0.04],["speed",3],["cri",0.05],["max_hp_rate",0.05],["cri",0.05],["max_hp_rate",0.03,"u"],["speed",1,"u"],["cri",0.03,"u"],["cri_dmg",0.02,"u"]],"s":"516f","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6b_u","ct":1745757844,"e":93750,"f":"set_speed","g":5,"id":3312859228,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["att_rate",0.07],["max_hp_rate",0.07],["cri",0.03],["cri_dmg",0.07],["cri_dmg",0.05],["cri_dmg",0.04],["cri",0.05],["cri_dmg",0.04],["max_hp_rate",0.08],["att_rate",0.01,"u"],["max_hp_rate",0.03,"u"],["cri",0.02,"u"],["cri_dmg",0.04,"u"]],"p":6844892,"s":"92c0","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6n","ct":1745757844,"e":3964,"f":"set_acc","g":5,"id":3312859229,"l":true,"level":85,"mainStatBaseValue":0.13,"mainStatId":"cra6_neck_m","mainStatType":"cri_dmg","mainStatValue":0.65,"mg":1111,"op":[["cri_dmg",0.13],["att_rate",0.07],["max_hp_rate",0.07],["speed",3.0],["cri",0.04],["att_rate",0.05]],"s":"3805","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6r_u","ct":1745757844,"e":93750,"f":"set_acc","g":5,"id":3312859230,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"acc","mainStatValue":0.65,"mg":1111,"op":[["acc",0.13,null,null,0],["att_rate",0.07],["max_hp_rate",0.07],["speed",3.0],["cri",0.04],["att_rate",0.06],["max_hp_rate",0.06],["att_rate",0.07],["att_rate",0.07],["att_rate",0.04],["att_rate",0.07,"u"],["max_hp_rate",0.03,"u"],["cri",0.01,"u"]],"s":"4b9a","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6w_u","ct":1745761131,"e":93805,"f":"set_speed","g":5,"id":3312964038,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["cri_dmg",0.07],["res",0.07],["max_hp_rate",0.06],["speed",4],["speed",3],["res",0.07],["res",0.07],["speed",3],["cri_dmg",0.04],["cri_dmg",0.02,"u"],["res",0.04,"u"],["max_hp_rate",0.01,"u"],["speed",2,"u"]],"s":"52ff","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"exc302601","ct":1745833628,"g":5,"id":3322796588,"mg":1111,"op":[["att_rate",0.1],["ek_c302601",3]],"p":11185757,"s":"26e3"},{"code":"elre1b","ct":1745851926,"f":"set_att","g":5,"id":3328057157,"l":true,"level":78,"mainStatBaseValue":0.12,"mainStatId":"lre1_boot_m1","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["max_hp_rate",0.07],["speed",4],["cri",0.04],["cri_dmg",0.06]],"s":"e834","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"elre3b","ct":1745851981,"e":82031,"f":"set_res","g":5,"id":3328073541,"level":78,"mainStatBaseValue":8,"mainStatId":"lre3_boot_m1","mainStatType":"speed","mainStatValue":40,"mg":1111,"op":[["speed",8],["max_hp_rate",0.07],["def_rate",0.07],["res",0.07],["acc",0.07],["res",0.04],["res",0.06],["max_hp_rate",0.08],["acc",0.06],["def_rate",0.07]],"s":"3fbf","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"elre3w","ct":1745851994,"e":82086,"f":"set_immune","g":5,"id":3328077706,"l":true,"level":78,"mainStatBaseValue":95,"mainStatId":"lre3_weap_m1","mainStatType":"att","mainStatValue":475,"mg":1111,"op":[["att",95],["max_hp_rate",0.07],["speed",4],["res",0.07],["acc",0.07],["speed",4],["speed",4],["res",0.07],["speed",5],["res",0.06]],"s":"b6df","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eih9n","ct":1745852040,"e":93750,"f":"set_penetrate","g":5,"id":3328091599,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"imh_neck_m11","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["max_hp_rate",0.09],["cri",0.06],["speed",5],["att_rate",0.09],["cri",0.05],["att_rate",0.08],["att_rate",0.09],["cri",0.04],["speed",4]],"p":899521626,"s":"139a","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eih6w","ct":1745852043,"e":93750,"f":"set_speed","g":5,"id":3328092852,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"imh_wepo_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.09],["att_rate",0.09],["speed",5],["cri",0.06],["att_rate",0.06],["max_hp_rate",0.07],["speed",4],["speed",3],["cri",0.06]],"s":"bcaa","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eah27w","ct":1745927173,"e":93750,"f":"set_scar","g":5,"id":3344763264,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"ah27_weap_m1","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["max_hp_rate",0.08],["cri",0.05],["cri_dmg",0.07],["speed",5],["max_hp_rate",0.09],["cri_dmg",0.07],["cri",0.06],["max_hp_rate",0.07],["cri",0.03]],"p":799495489,"s":"c804","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eal85r_u","ct":1746073203,"e":93863,"f":"set_torrent","g":5,"id":3377491678,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,1],["cri_dmg",0.06],["att",41],["def_rate",0.07],["cri",0.05],["cri",0.05],["cri",0.03],["cri",0.03],["att",35],["cri",0.05],["cri_dmg",0.01,"u"],["att",22,"u"],["def_rate",0.01,"u"],["cri",0.05,"u"]],"p":890790459,"s":"737b","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eal85b_u","ct":1746077387,"e":93922,"f":"set_torrent","g":5,"id":3378596409,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,1],["cri_dmg",0.06],["speed",3],["cri",0.03],["att",0],["speed",3],["speed",3],["cri_dmg",0.05],["cri",0.03],["cri",0.04],["cri_dmg",0.02,"u"],["speed",2,"u"],["cri",0.03,"u"],["att",11,"u"],["att",42,"c","change2_att_1_2"]],"p":890790459,"s":"4e31","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecb6h_u","ct":1746110649,"e":93750,"f":"set_cri_dmg","g":5,"id":3387407453,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["att_rate",0.07],["speed",3.0],["cri_dmg",0.06],["acc",0.07],["att_rate",0.08],["speed",4],["cri_dmg",0.07],["att_rate",0.08],["cri_dmg",0.05],["att_rate",0.04,"u"],["speed",1,"u"],["cri_dmg",0.03,"u"],["acc",0.01,"u"]],"p":736028830,"s":"e910","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6a_u","ct":1746110649,"e":93750,"f":"set_cri_dmg","g":5,"id":3387407474,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp_rate",0.07],["speed",3.0],["cri_dmg",0.07],["acc",0.06],["speed",4],["cri_dmg",0.05],["speed",4],["max_hp_rate",0.04],["max_hp_rate",0.06],["max_hp_rate",0.04,"u"],["speed",2,"u"],["cri_dmg",0.02,"u"],["acc",0.01,"u"]],"s":"b1b","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6b","ct":1746110649,"e":82031,"f":"set_cri_dmg","g":5,"id":3387407494,"l":true,"level":85,"mainStatBaseValue":8.0,"mainStatId":"cra6_boot_m","mainStatType":"speed","mainStatValue":40,"mg":1111,"op":[["speed",8.0],["att_rate",0.07],["max_hp_rate",0.07],["cri_dmg",0.07],["acc",0.06],["max_hp_rate",0.04],["cri_dmg",0.07],["att_rate",0.06],["max_hp_rate",0.04],["acc",0.06]],"s":"83b","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6r","ct":1746110649,"e":82031,"f":"set_acc","g":5,"id":3387407548,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["max_hp_rate",0.07],["speed",3.0],["cri_dmg",0.07],["acc",0.07],["max_hp_rate",0.06],["acc",0.08],["speed",2],["speed",2],["acc",0.06]],"s":"ee00","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6w","ct":1746110759,"e":82031,"f":"set_speed","g":5,"id":3387439076,"l":true,"level":85,"mainStatBaseValue":100.0,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100.0],["max_hp_rate",0.07],["speed",3.0],["cri",0.04],["cri_dmg",0.07],["cri",0.03],["cri_dmg",0.07],["cri_dmg",0.05],["speed",2],["max_hp_rate",0.08]],"s":"eb0","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6h_u","ct":1746110759,"e":93750,"f":"set_speed","g":5,"id":3387439108,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,1],["att_rate",0.07],["speed",3.0],["cri",0.04],["cri_dmg",0.07],["cri_dmg",0.04],["att_rate",0.06],["cri",0.04],["cri",0.03],["cri_dmg",0.07],["att_rate",0.03,"u"],["cri",0.03,"u"],["cri_dmg",0.03,"u"]],"p":669363338,"s":"65e3","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6h","ct":1746182630,"e":82031,"f":"set_res","g":5,"id":3401950817,"l":true,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["def_rate",0.06],["max_hp_rate",0.05],["speed",2],["acc",0.08],["max_hp_rate",0.05],["max_hp_rate",0.06],["def_rate",0.04],["speed",4],["speed",3]],"s":"2647","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6a","ct":1746203010,"e":82031,"f":"set_vampire","g":5,"id":3407019852,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["res",0.07],["max_hp",197],["cri",0.05],["def_rate",0.05],["res",0.07],["def_rate",0.05],["def_rate",0.05],["res",0.05],["res",0.04]],"s":"30a2","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6h_u","ct":1746206728,"e":84375,"f":"set_res","g":4,"id":3407759413,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["def_rate",0],["res",0.08],["speed",3],["speed",2],["res",0.08],["res",0.08],["max_hp_rate",0.04],["res",0.04],["def_rate",0.01,"u"],["res",0.05,"u"],["speed",1,"u"],["max_hp_rate",0.01,"u"],["def_rate",0.08,"c","change2_def_rate_1_2"]],"s":"9c21","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6w_u","ct":1746207412,"e":93750,"f":"set_cri_dmg","g":5,"id":3407878415,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,1],["max_hp",174],["cri",0.03],["cri_dmg",0.06],["max_hp_rate",0.08],["max_hp_rate",0.06],["cri_dmg",0.05],["max_hp_rate",0.04],["max_hp",172],["cri_dmg",0.05],["max_hp",112,"u"],["cri",0.01,"u"],["cri_dmg",0.03,"u"],["max_hp_rate",0.04,"u"]],"s":"e79c","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecb6a_u","ct":1746209930,"e":93863,"f":"set_cri_dmg","g":5,"id":3408283947,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri",0.05],["speed",3],["acc",0.05],["cri_dmg",0.07],["cri_dmg",0.07],["speed",4],["acc",0.08],["speed",3],["cri_dmg",0.06],["cri",0.01,"u"],["speed",2,"u"],["acc",0.03,"u"],["cri_dmg",0.03,"u"]],"s":"b7c2","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6a_u","ct":1746211791,"e":93863,"f":"set_cri_dmg","g":5,"id":3408554116,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri_dmg",0.07],["cri",0.05],["acc",0.06],["max_hp_rate",0.08],["max_hp_rate",0.06],["acc",0.08],["max_hp_rate",0.05],["max_hp_rate",0.07],["max_hp_rate",0.07],["cri_dmg",0.01,"u"],["cri",0.01,"u"],["acc",0.03,"u"],["max_hp_rate",0.07,"u"]],"s":"7ad5","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eah27h","ct":1746243310,"e":93750,"f":"set_scar","g":5,"id":3413244272,"l":true,"level":88,"mainStatBaseValue":553,"mainStatId":"ah27_helm_m1","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["max_hp_rate",0.08],["def_rate",0.08],["cri",0.05],["speed",5],["cri",0.06],["def_rate",0.05],["max_hp_rate",0.07],["cri",0.05],["cri",0.06]],"s":"4d58","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6a","ct":1746266052,"e":82031,"f":"set_speed","g":5,"id":3418588636,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["def_rate",0.08],["acc",0.08],["speed",4],["res",0.04],["def_rate",0.05],["def_rate",0.04],["acc",0.07],["speed",2],["speed",3]],"s":"9ee1","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6h_u","ct":1746368215,"e":93750,"f":"set_vampire","g":5,"id":3438671468,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["max_hp_rate",0.08],["cri_dmg",0.06],["res",0.07],["def_rate",0],["max_hp_rate",0.07],["res",0.08],["max_hp_rate",0.04],["def_rate",0],["max_hp_rate",0.06],["max_hp_rate",0.05,"u"],["cri_dmg",0.01,"u"],["res",0.03,"u"],["def_rate",0.03,"u"],["def_rate",0.09,"c","change2_def_rate_2_1"]],"s":"4133","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6w_u","ct":1746429058,"e":93750,"f":"set_speed","g":5,"id":3445500372,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,1],["max_hp_rate",0.07],["speed",4.0],["res",0.07],["acc",0.07],["res",0.08],["acc",0.07],["max_hp_rate",0.08],["speed",2],["acc",0.08],["max_hp_rate",0.03,"u"],["speed",1,"u"],["res",0.03,"u"],["acc",0.04,"u"]],"p":899011010,"s":"3f7f","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6h_u","ct":1746429060,"e":93750,"f":"set_speed","g":5,"id":3445500628,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["max_hp_rate",0.07],["def_rate",0.07],["speed",4.0],["acc",0.07],["def_rate",0.06],["acc",0.06],["acc",0.07],["max_hp_rate",0.05],["max_hp_rate",0.07],["max_hp_rate",0.04,"u"],["def_rate",0.03,"u"],["acc",0.04,"u"]],"p":892353109,"s":"c6ef","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6a_u","ct":1746429064,"e":93750,"f":"set_speed","g":5,"id":3445501118,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp_rate",0.07],["def_rate",0.07],["speed",4.0],["acc",0.07],["def_rate",0.08],["acc",0.08],["acc",0.04],["def_rate",0.08],["def_rate",0.05],["max_hp_rate",0.01,"u"],["def_rate",0.05,"u"],["acc",0.04,"u"]],"s":"1bd5","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6b_u","ct":1746429068,"e":93750,"f":"set_speed","g":5,"id":3445501481,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["max_hp_rate",0.07],["def_rate",0.07],["res",0.07],["acc",0.07],["acc",0.08],["res",0.05],["acc",0.06],["acc",0.07],["def_rate",0.07],["max_hp_rate",0.01,"u"],["def_rate",0.03,"u"],["res",0.03,"u"],["acc",0.05,"u"]],"s":"7395","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6n_u","ct":1746429072,"e":93862,"f":"set_speed","g":5,"id":3445501933,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["def_rate",0.07],["speed",4.0],["res",0.07],["acc",0.07],["acc",0.07],["res",0.07],["acc",0.06],["def_rate",0.08],["speed",2],["def_rate",0.03,"u"],["speed",1,"u"],["res",0.03,"u"],["acc",0.04,"u"]],"p":892353109,"s":"842f","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6r_u","ct":1746429075,"e":93750,"f":"set_speed","g":5,"id":3445502296,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["def_rate",0.07],["speed",4.0],["res",0.07],["acc",0.07],["res",0.05],["speed",2],["acc",0.07],["res",0.06],["res",0.04],["def_rate",0.01,"u"],["speed",1,"u"],["res",0.05,"u"],["acc",0.03,"u"]],"p":739641017,"s":"9dd9","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eah27a","ct":1746498498,"e":93750,"f":"set_scar","g":5,"id":3450048620,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"ah27_armo_m1","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.08],["def_rate",0.08],["speed",5],["cri_dmg",0.07],["speed",3],["speed",3],["max_hp_rate",0.07],["def_rate",0.07],["def_rate",0.06]],"s":"e7a","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eep_a","ct":1746680176,"e":93750,"f":"set_def","g":5,"id":3457782032,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"ep_armor_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["cri_dmg",0.05],["cri",0.05],["speed",3],["def_rate",0.06],["cri_dmg",0.06],["cri_dmg",0.06],["speed",3],["speed",4],["cri",0.05]],"s":"884","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eep_w","ct":1746680231,"e":93750,"f":"set_def","g":5,"id":3457788577,"l":true,"level":88,"mainStatBaseValue":103,"mainStatId":"ep_weapon_m","mainStatType":"att","mainStatValue":515,"mg":1111,"op":[["att",103],["speed",3],["res",0],["cri_dmg",0.05],["max_hp_rate",0.05],["cri_dmg",0.05],["max_hp_rate",0.07],["max_hp_rate",0.07],["res",0],["max_hp_rate",0.08],["res",0.09,"c","change2_res_2_1"]],"s":"b395","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eal85b_u","ct":1746681615,"e":93750,"f":"set_def","g":5,"id":3457958611,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["speed",4],["def_rate",0.05],["res",0.06],["def",0],["res",0.07],["res",0.05],["def",0],["res",0.06],["def_rate",0.07],["def_rate",0.03,"u"],["res",0.05,"u"],["def",18,"u"],["def",61,"c","change2_def_2_2"]],"s":"9517","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecg6n_u","ct":1746771226,"e":93750,"f":"set_max_hp","g":5,"id":3462816900,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_neck_m","mainStatType":"def_rate","mainStatValue":0.65,"mg":1111,"op":[["def_rate",0.13,null,null,0],["res",0.04],["cri_dmg",0.07],["max_hp_rate",0.08],["max_hp",164],["max_hp_rate",0.05],["max_hp",174],["cri_dmg",0.06],["max_hp",197],["res",0.08],["res",0.03,"u"],["cri_dmg",0.02,"u"],["max_hp_rate",0.03,"u"],["max_hp",168,"u"]],"p":830235768,"s":"7184","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6a","ct":1746862329,"f":"set_acc","g":5,"id":3466725563,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["cri",0.05],["res",0.07],["max_hp_rate",0.04],["cri_dmg",0.06]],"s":"a878","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a_u","ct":1746862332,"e":93750,"f":"set_cri","g":5,"id":3466725667,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri",0.05],["def_rate",0.05],["cri_dmg",0.07],["max_hp_rate",0.06],["cri",0.05],["cri",0.05],["max_hp_rate",0.07],["def_rate",0.07],["cri_dmg",0.04],["cri",0.03,"u"],["def_rate",0.03,"u"],["cri_dmg",0.02,"u"],["max_hp_rate",0.03,"u"]],"p":613630545,"s":"1fdc","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6w","ct":1746971310,"f":"set_cri_dmg","g":4,"id":3471477600,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["acc",0.06],["att_rate",0.06],["max_hp",169]],"p":28393107,"s":"59ac","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecd6w_u","ct":1747005863,"e":93922,"f":"set_torrent","g":5,"id":3472662654,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["att_rate",0.07],["speed",4.0],["cri",0.04],["cri_dmg",0.07],["att_rate",0.04],["cri",0.05],["cri_dmg",0.06],["speed",3],["att_rate",0.06],["att_rate",0.04,"u"],["speed",1,"u"],["cri",0.02,"u"],["cri_dmg",0.02,"u"]],"s":"c44a","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecd6a","ct":1747005866,"e":82031,"f":"set_torrent","g":5,"id":3472662776,"l":true,"level":85,"mainStatBaseValue":60.0,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60.0,null,null,2],["def_rate",0.07],["speed",4.0],["cri",0.04],["cri_dmg",0.07],["def_rate",0.05],["def_rate",0.08],["def_rate",0.04],["def_rate",0.07],["speed",4]],"s":"737a","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecd6r_u","ct":1747005873,"e":93750,"f":"set_torrent","g":5,"id":3472663055,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,3],["def_rate",0.07],["speed",4.0],["cri",0.04],["cri_dmg",0.07],["cri_dmg",0.07],["cri_dmg",0.07],["cri_dmg",0.04],["def_rate",0.04],["cri_dmg",0.05],["def_rate",0.03,"u"],["cri",0.01,"u"],["cri_dmg",0.06,"u"]],"s":"6b6d","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecd6h_u","ct":1747005878,"e":93750,"f":"set_torrent","g":5,"id":3472663283,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["att_rate",0.07],["speed",4.0],["cri",0.04],["cri_dmg",0.07],["speed",4],["speed",3],["cri_dmg",0.05],["cri_dmg",0.07],["cri",0.03],["att_rate",0.01,"u"],["speed",2,"u"],["cri",0.02,"u"],["cri_dmg",0.03,"u"]],"s":"86e1","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecd6b_u","ct":1747005885,"e":93750,"f":"set_torrent","g":5,"id":3472663530,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["att_rate",0.07],["def_rate",0.07],["cri",0.04],["cri_dmg",0.07],["att_rate",0.07],["att_rate",0.07],["cri_dmg",0.07],["def_rate",0.07],["cri_dmg",0.04],["att_rate",0.04,"u"],["def_rate",0.03,"u"],["cri",0.01,"u"],["cri_dmg",0.03,"u"]],"s":"3ae1","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecd6n_u","ct":1747005891,"e":93750,"f":"set_torrent","g":5,"id":3472663787,"l":true,"level":90,"mainStatBaseValue":0.14,"mainStatId":"cra7_neck_m","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14,null,null,0],["att_rate",0.07],["att",0],["speed",4.0],["cri",0.04],["cri",0.04],["att_rate",0.05],["att_rate",0.08],["speed",3],["speed",3],["att_rate",0.04,"u"],["att",11,"u"],["speed",2,"u"],["cri",0.02,"u"],["att",45,"c","change2_att_1_2"]],"s":"9258","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecb6n","ct":1747006450,"f":"set_cri_dmg","g":4,"id":3472685973,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_neck_m","mainStatType":"def_rate","mainStatValue":0.6,"mg":1111,"op":[["def_rate",0.12],["def",28],["cri",0.04],["att_rate",0.04]],"p":28393107,"s":"66b9","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecb6w_u","ct":1747006762,"e":93750,"f":"set_cri_dmg","g":5,"id":3472699406,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["att_rate",0.07],["speed",3.0],["cri",0.04],["cri_dmg",0.07],["att_rate",0.05],["att_rate",0.04],["cri_dmg",0.05],["att_rate",0.07],["speed",4],["att_rate",0.05,"u"],["speed",1,"u"],["cri",0.01,"u"],["cri_dmg",0.02,"u"]],"p":640588979,"s":"77be","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecb6h_u","ct":1747006762,"e":93922,"f":"set_cri_dmg","g":5,"id":3472699407,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["att_rate",0.07],["speed",3.0],["cri",0.04],["cri_dmg",0.07],["att_rate",0.06],["att_rate",0.08],["att_rate",0.07],["cri",0.04],["cri_dmg",0.06],["att_rate",0.05,"u"],["cri",0.02,"u"],["cri_dmg",0.02,"u"]],"p":640588979,"s":"7105","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6a_u","ct":1747006762,"e":93750,"f":"set_cri_dmg","g":5,"id":3472699408,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp_rate",0.07],["speed",3.0],["cri",0.04],["cri_dmg",0.07],["cri_dmg",0.07],["speed",4],["cri",0.03],["max_hp_rate",0.06],["cri",0.03],["max_hp_rate",0.03,"u"],["speed",1,"u"],["cri",0.03,"u"],["cri_dmg",0.02,"u"]],"p":158971995,"s":"78a6","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6b_u","ct":1747006762,"e":93750,"f":"set_cri_dmg","g":5,"id":3472699410,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,0],["max_hp_rate",0.07],["speed",3.0],["cri",0.04],["cri_dmg",0.07],["cri",0.04],["max_hp_rate",0.07],["cri",0.04],["max_hp_rate",0.06],["max_hp_rate",0.05],["max_hp_rate",0.05,"u"],["cri",0.03,"u"],["cri_dmg",0.01,"u"]],"p":899521626,"s":"94d9","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecd6n_u","ct":1747006762,"e":93750,"f":"set_penetrate","g":5,"id":3472699411,"l":true,"level":90,"mainStatBaseValue":0.14,"mainStatId":"cra7_neck_m","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14,null,null,0],["att_rate",0.07],["max_hp_rate",0.07],["speed",3.0],["cri",0.04],["speed",3],["cri",0.03],["max_hp_rate",0.04],["att_rate",0.08],["cri",0.05],["att_rate",0.03,"u"],["max_hp_rate",0.03,"u"],["speed",1,"u"],["cri",0.03,"u"]],"s":"efef","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecd6r_u","ct":1747006762,"e":93922,"f":"set_penetrate","g":5,"id":3472699412,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,0],["max_hp_rate",0.07],["speed",3.0],["cri",0.04],["cri_dmg",0.07],["cri",0.05],["speed",4],["cri",0.03],["speed",4],["cri",0.04],["max_hp_rate",0.01,"u"],["speed",2,"u"],["cri",0.04,"u"],["cri_dmg",0.01,"u"]],"s":"e2d2","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecb6b_u","ct":1747050957,"e":93750,"f":"set_vampire","g":5,"id":3475507981,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,0],["cri",0.05],["def_rate",0.07],["res",0.06],["speed",3],["res",0.04],["cri",0.03],["speed",4],["res",0.06],["cri",0.05],["cri",0.03,"u"],["def_rate",0.01,"u"],["res",0.04,"u"],["speed",1,"u"]],"s":"2f55","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"eah27b","ct":1747206216,"e":93750,"f":"set_scar","g":5,"id":3481551120,"l":true,"level":88,"mainStatBaseValue":9,"mainStatId":"ah27_boot_m1","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9],["def_rate",0.08],["cri",0.05],["cri_dmg",0.07],["max_hp_rate",0.08],["def_rate",0.07],["cri",0.05],["cri",0.06],["cri",0.05],["cri_dmg",0.06]],"s":"1747","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecb6a_u","ct":1747206905,"e":93750,"f":"set_res","g":5,"id":3481574936,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["res",0.08],["max_hp_rate",0],["speed",4],["def_rate",0.08],["max_hp_rate",0],["res",0.04],["res",0.05],["def_rate",0.04],["res",0.07],["res",0.05,"u"],["max_hp_rate",0.03,"u"],["def_rate",0.03,"u"],["max_hp_rate",0.1,"c","change2_max_hp_rate_2_2"]],"s":"241c","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6w","ct":1747310699,"e":82031,"f":"set_speed","g":5,"id":3486112364,"l":true,"level":85,"mainStatBaseValue":100.0,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100.0],["max_hp_rate",0.07],["speed",3.0],["cri",0.04],["cri_dmg",0.07],["speed",2],["cri_dmg",0.07],["cri_dmg",0.05],["max_hp_rate",0.05],["max_hp_rate",0.05]],"s":"e667","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6h_u","ct":1747310699,"e":93750,"f":"set_speed","g":5,"id":3486112365,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["max_hp_rate",0.07],["speed",3.0],["cri",0.04],["cri_dmg",0.07],["cri_dmg",0.04],["cri",0.04],["speed",3],["speed",4],["max_hp_rate",0.04],["max_hp_rate",0.03,"u"],["speed",2,"u"],["cri",0.02,"u"],["cri_dmg",0.02,"u"]],"s":"c47d","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6a_u","ct":1747310699,"e":93750,"f":"set_speed","g":5,"id":3486112366,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp_rate",0.07],["speed",3.0],["cri",0.04],["cri_dmg",0.07],["cri",0.03],["cri",0.04],["speed",5],["max_hp_rate",0.08],["cri",0.03],["max_hp_rate",0.03,"u"],["speed",1,"u"],["cri",0.04,"u"],["cri_dmg",0.01,"u"]],"s":"4269","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6b_u","ct":1747310699,"e":93750,"f":"set_speed","g":5,"id":3486112367,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["max_hp_rate",0.07],["def_rate",0.07],["cri",0.03],["cri_dmg",0.07],["cri_dmg",0.04],["cri_dmg",0.06],["max_hp_rate",0.04],["cri_dmg",0.05],["max_hp_rate",0.07],["max_hp_rate",0.04,"u"],["def_rate",0.01,"u"],["cri",0.01,"u"],["cri_dmg",0.04,"u"]],"s":"7b45","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6r","ct":1747310699,"e":1982,"f":"set_cri","g":5,"id":3486112369,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["def_rate",0.07],["speed",3.0],["cri",0.04],["cri_dmg",0.07],["cri_dmg",0.04]],"s":"7e6","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eih9n","ct":1747314451,"e":93750,"f":"set_penetrate","g":5,"id":3486339758,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"imh_neck_m11","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["max_hp_rate",0.09],["cri",0.06],["speed",5],["att_rate",0.09],["cri",0.05],["max_hp_rate",0.07],["cri",0.04],["speed",4],["max_hp_rate",0.07]],"s":"58a2","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eal85n_u","ct":1747315336,"e":93922,"f":"set_vampire","g":5,"id":3486400547,"l":true,"level":90,"mainStatBaseValue":0.14,"mainStatId":"cra7_neck_m","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14,null,null,0],["max_hp",172],["def_rate",0.05],["res",0],["cri",0.03],["cri",0.05],["def_rate",0.05],["def_rate",0.04],["res",0],["res",0],["max_hp",56,"u"],["def_rate",0.04,"u"],["res",0.04,"u"],["cri",0.02,"u"],["res",0.13,"c","change2_res_3_2"]],"p":48988520,"s":"d24a","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eal85r_u","ct":1747315664,"e":93750,"f":"set_res","g":5,"id":3486421961,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"def_rate","mainStatValue":0.65,"mg":1111,"op":[["def_rate",0.13,null,null,0],["cri_dmg",0.05],["cri",0],["res",0.08],["def",30],["cri_dmg",0.05],["cri_dmg",0.05],["cri_dmg",0.05],["def",34],["cri_dmg",0.06],["cri_dmg",0.06,"u"],["res",0.01,"u"],["def",18,"u"],["cri",0.04,"c","change2_cri_1_2"],["cri",0.01,"u"]],"p":48988520,"s":"9f4c","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecb6b","ct":1747453257,"f":"set_cri_dmg","g":4,"id":3491022327,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_boot_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["att_rate",0.05],["acc",0.08],["speed",2]],"p":28393107,"s":"c170","statMultiplier":1.67,"tierMultiplier":1,"type":"boot"},{"code":"ecb6w_u","ct":1747454139,"e":93750,"f":"set_cri_dmg","g":5,"id":3491059817,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["att_rate",0.07],["speed",3.0],["cri",0.04],["cri_dmg",0.07],["cri_dmg",0.07],["speed",3],["att_rate",0.07],["cri",0.04],["speed",2],["att_rate",0.03,"u"],["speed",2,"u"],["cri",0.02,"u"],["cri_dmg",0.02,"u"]],"p":613630545,"s":"2dfa","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecb6h_u","ct":1747454139,"e":93750,"f":"set_cri_dmg","g":5,"id":3491059818,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["att_rate",0.07],["speed",3.0],["cri",0.04],["cri_dmg",0.07],["speed",4],["cri",0.03],["cri",0.05],["cri_dmg",0.05],["cri_dmg",0.04],["att_rate",0.01,"u"],["speed",1,"u"],["cri",0.03,"u"],["cri_dmg",0.03,"u"]],"p":899521626,"s":"ad9b","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecb6a_u","ct":1747454139,"e":93750,"f":"set_cri_dmg","g":5,"id":3491059819,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp_rate",0.07],["speed",3.0],["cri",0.04],["cri_dmg",0.07],["cri_dmg",0.07],["cri_dmg",0.04],["max_hp_rate",0.05],["max_hp_rate",0.07],["cri",0.05],["max_hp_rate",0.04,"u"],["cri",0.02,"u"],["cri_dmg",0.03,"u"]],"s":"7c56","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6b_u","ct":1747454139,"e":93750,"f":"set_cri_dmg","g":5,"id":3491059820,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,0],["max_hp_rate",0.07],["speed",3.0],["cri",0.04],["cri_dmg",0.07],["speed",4],["speed",2],["cri_dmg",0.04],["cri",0.05],["cri",0.05],["max_hp_rate",0.01,"u"],["speed",2,"u"],["cri",0.03,"u"],["cri_dmg",0.02,"u"]],"p":461351155,"s":"91ba","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecd6n","ct":1747454232,"e":82031,"f":"set_penetrate","g":5,"id":3491063757,"l":true,"level":85,"mainStatBaseValue":0.13,"mainStatId":"cra6_neck_m","mainStatType":"cri_dmg","mainStatValue":0.65,"mg":1111,"op":[["cri_dmg",0.13],["att_rate",0.07],["max_hp_rate",0.07],["speed",3.0],["cri",0.04],["max_hp_rate",0.07],["att_rate",0.06],["speed",4],["speed",3],["cri",0.04]],"s":"ee21","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecd6r","ct":1747454232,"e":82031,"f":"set_penetrate","g":5,"id":3491063759,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["max_hp_rate",0.07],["speed",3.0],["cri",0.04],["cri_dmg",0.07],["cri",0.04],["max_hp_rate",0.05],["max_hp_rate",0.07],["cri",0.05],["cri_dmg",0.04]],"s":"790f","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecg6w","ct":1747454557,"e":82031,"f":"set_max_hp","g":5,"id":3491078292,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["cri_dmg",0.07],["acc",0.06],["res",0.04],["max_hp_rate",0.06],["cri_dmg",0.07],["cri_dmg",0.05],["res",0.08],["res",0.06],["max_hp_rate",0.05]],"s":"6bc3","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eah27r","ct":1747456372,"e":93750,"f":"set_scar","g":5,"id":3491160591,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ah27_ring_m1","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["cri",0.05],["cri_dmg",0.07],["speed",5],["def_rate",0.08],["cri",0.05],["speed",4],["cri_dmg",0.06],["cri_dmg",0.04],["speed",4]],"s":"32a9","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecg6w_u","ct":1747554163,"e":93750,"f":"set_shield","g":5,"id":3494753443,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["max_hp",173],["speed",3],["res",0.04],["att_rate",0.08],["speed",3],["speed",2],["speed",3],["speed",4],["res",0.06],["max_hp",56,"u"],["speed",4,"u"],["res",0.03,"u"],["att_rate",0.01,"u"]],"s":"e8bd","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eah27n","ct":1747708176,"e":93750,"f":"set_scar","g":5,"id":3499881314,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"ah27_neck_m1","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["max_hp_rate",0.08],["cri",0.05],["speed",5],["def_rate",0.08],["max_hp_rate",0.05],["def_rate",0.09],["max_hp_rate",0.05],["cri",0.04],["cri",0.04]],"p":799495489,"s":"4b4d","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecg6w_u","ct":1747809887,"e":93750,"f":"set_def","g":5,"id":3502378186,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["acc",0.05],["att_rate",0.07],["speed",4],["max_hp_rate",0.07],["speed",3],["max_hp_rate",0.04],["max_hp_rate",0.07],["speed",2],["acc",0.07],["acc",0.03,"u"],["att_rate",0.01,"u"],["speed",2,"u"],["max_hp_rate",0.04,"u"]],"s":"10e1","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"exc107001","ct":1747812556,"g":5,"id":3502436710,"mg":1111,"op":[["speed",8],["ek_c107001",2]],"s":"97c5"},{"code":"exc107001","ct":1747812559,"g":5,"id":3502436807,"mg":1111,"op":[["speed",9],["ek_c107001",1]],"s":"97da"},{"code":"exc107001","ct":1747812563,"g":5,"id":3502436866,"l":true,"mg":1111,"op":[["speed",10],["ek_c107001",3]],"p":110838566,"s":"9be"},{"code":"ecw6w_u","ct":1747917476,"e":93750,"f":"set_speed","g":5,"id":3504245936,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["max_hp_rate",0.07],["att_rate",0.07],["speed",4.0],["acc",0.07],["att_rate",0.05],["acc",0.05],["speed",3],["att_rate",0.08],["acc",0.06],["max_hp_rate",0.01,"u"],["att_rate",0.04,"u"],["speed",1,"u"],["acc",0.04,"u"]],"s":"df6a","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6w_u","ct":1747917476,"e":93750,"f":"set_speed","g":5,"id":3504245937,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["max_hp_rate",0.07],["att_rate",0.07],["speed",4.0],["acc",0.07],["speed",3],["acc",0.06],["acc",0.06],["acc",0.07],["max_hp_rate",0.04],["max_hp_rate",0.03,"u"],["att_rate",0.01,"u"],["speed",1,"u"],["acc",0.05,"u"]],"s":"5e42","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6a_u","ct":1747922421,"e":93750,"f":"set_speed","g":5,"id":3504369449,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp_rate",0.07],["def_rate",0.07],["speed",4.0],["acc",0.07],["def_rate",0.07],["def_rate",0.07],["speed",2],["speed",2],["speed",4],["max_hp_rate",0.01,"u"],["def_rate",0.04,"u"],["speed",3,"u"],["acc",0.01,"u"]],"s":"2b6b","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a_u","ct":1747926052,"e":93750,"f":"set_speed","g":5,"id":3504471563,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp_rate",0.07],["def_rate",0.07],["speed",4.0],["acc",0.07],["def_rate",0.06],["max_hp_rate",0.08],["max_hp_rate",0.04],["max_hp_rate",0.08],["speed",2],["max_hp_rate",0.05,"u"],["def_rate",0.03,"u"],["speed",1,"u"],["acc",0.01,"u"]],"p":445022861,"s":"1c2f","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6h_u","ct":1747965870,"e":93750,"f":"set_speed","g":5,"id":3505134903,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["max_hp_rate",0.07],["att_rate",0.07],["speed",4.0],["acc",0.07],["speed",2],["att_rate",0.06],["speed",3],["speed",2],["acc",0.05],["max_hp_rate",0.01,"u"],["att_rate",0.03,"u"],["speed",3,"u"],["acc",0.03,"u"]],"s":"8a00","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6h_u","ct":1747965870,"e":93750,"f":"set_speed","g":5,"id":3505134904,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["max_hp_rate",0.07],["att_rate",0.07],["speed",4.0],["acc",0.07],["speed",4],["acc",0.08],["acc",0.05],["acc",0.07],["speed",3],["max_hp_rate",0.01,"u"],["att_rate",0.01,"u"],["speed",2,"u"],["acc",0.05,"u"]],"s":"a5d7","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6b","ct":1747968071,"e":82031,"f":"set_speed","g":5,"id":3505191594,"l":true,"level":85,"mainStatBaseValue":8.0,"mainStatId":"cra6_boot_m","mainStatType":"speed","mainStatValue":40,"mg":1111,"op":[["speed",8.0],["max_hp_rate",0.07],["att_rate",0.07],["def_rate",0.07],["acc",0.07],["att_rate",0.08],["acc",0.04],["acc",0.05],["att_rate",0.07],["acc",0.06]],"s":"b922","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6b_u","ct":1747982391,"e":93750,"f":"set_speed","g":5,"id":3505550848,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["max_hp_rate",0.07],["att_rate",0.07],["def_rate",0.07],["acc",0.07],["att_rate",0.05],["att_rate",0.07],["max_hp_rate",0.06],["att_rate",0.04],["max_hp_rate",0.05],["max_hp_rate",0.04,"u"],["att_rate",0.05,"u"],["def_rate",0.01,"u"],["acc",0.01,"u"]],"p":894623419,"s":"3e9f","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6n_u","ct":1747982646,"e":93750,"f":"set_acc","g":5,"id":3505556329,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_neck_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,0],["max_hp_rate",0.07],["def_rate",0.07],["speed",4.0],["acc",0.07],["speed",4],["def_rate",0.04],["acc",0.07],["acc",0.06],["def_rate",0.08],["max_hp_rate",0.01,"u"],["def_rate",0.04,"u"],["speed",1,"u"],["acc",0.04,"u"]],"s":"e18e","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecg6a_u","ct":1747983155,"e":93750,"f":"set_max_hp","g":5,"id":3505567656,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["acc",0.05],["res",0.08],["def_rate",0.05],["max_hp_rate",0.08],["def_rate",0.05],["acc",0.06],["res",0.07],["res",0.08],["max_hp_rate",0.07],["acc",0.03,"u"],["res",0.04,"u"],["def_rate",0.03,"u"],["max_hp_rate",0.03,"u"]],"p":892353109,"s":"1ff3","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecg6w_u","ct":1747983317,"e":93750,"f":"set_max_hp","g":5,"id":3505572333,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["max_hp_rate",0.08],["res",0.08],["cri",0.03],["speed",4],["res",0.06],["max_hp_rate",0.05],["max_hp_rate",0.05],["res",0.07],["speed",2],["max_hp_rate",0.04,"u"],["res",0.04,"u"],["cri",0.01,"u"],["speed",1,"u"]],"p":620426700,"s":"48b6","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6w_u","ct":1747983477,"e":93750,"f":"set_speed","g":5,"id":3505576702,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["cri",0.03],["cri_dmg",0.06],["speed",4],["att_rate",0.08],["speed",3],["att_rate",0.05],["cri_dmg",0.04],["cri",0.03],["cri_dmg",0.04],["cri",0.02,"u"],["cri_dmg",0.03,"u"],["speed",1,"u"],["att_rate",0.03,"u"]],"s":"724a","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6w","ct":1747983477,"e":82031,"f":"set_speed","g":5,"id":3505576713,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["max_hp_rate",0.07],["acc",0.05],["max_hp",197],["speed",3],["speed",2],["max_hp",191],["speed",3],["max_hp_rate",0.07],["max_hp",172]],"s":"529","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecb6h_u","ct":1747983643,"e":93750,"f":"set_cri_dmg","g":5,"id":3505580549,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["cri",0.04],["max_hp_rate",0.07],["cri_dmg",0.07],["res",0.08],["cri",0.04],["max_hp_rate",0.08],["cri",0.04],["max_hp_rate",0.08],["cri",0.05],["cri",0.04,"u"],["max_hp_rate",0.04,"u"],["cri_dmg",0.01,"u"],["res",0.01,"u"]],"s":"d755","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"exc104601","ct":1747987542,"g":5,"id":3505665059,"l":true,"mg":1111,"op":[["acc",0.12],["ek_c104601",2]],"p":583954927,"s":"f99a"},{"code":"exc201101","ct":1747994982,"g":5,"id":3505824879,"l":true,"mg":1111,"op":[["cri",0.12],["ek_c201101",1]],"p":738614105,"s":"44cf"},{"code":"exc504601","ct":1748001314,"g":5,"id":3505986243,"mg":1111,"op":[["acc",0.13],["ek_c504601",1]],"s":"afe9"},{"code":"exc504601","ct":1748001317,"g":5,"id":3505986338,"mg":1111,"op":[["acc",0.14],["ek_c504601",3]],"s":"991b"},{"code":"exc504601","ct":1748001320,"g":5,"id":3505986406,"mg":1111,"op":[["acc",0.15],["ek_c504601",3]],"s":"812"},{"code":"exc504601","ct":1748001322,"g":5,"id":3505986507,"mg":1111,"op":[["acc",0.1],["ek_c504601",1]],"s":"a693"},{"code":"exc504601","ct":1748001325,"g":5,"id":3505986566,"l":true,"mg":1111,"op":[["acc",0.12],["ek_c504601",2]],"p":899011010,"s":"1127"},{"code":"eal85b_u","ct":1748003717,"e":93750,"f":"set_speed","g":5,"id":3506053536,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,0],["acc",0.08],["speed",2],["att",0],["def_rate",0.07],["def_rate",0.08],["att",0],["acc",0.04],["att",0],["att",0],["acc",0.03,"u"],["att",44,"u"],["def_rate",0.03,"u"],["att",108,"c","change2_att_4_2"]],"p":518782830,"s":"5f7c","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6a","ct":1748014445,"e":82031,"f":"set_speed","g":5,"id":3506395442,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["acc",0.05],["speed",3],["cri_dmg",0.04],["cri",0.04],["speed",4],["cri_dmg",0.06],["acc",0.06],["cri_dmg",0.05],["cri",0.04]],"s":"8c6","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6w_u","ct":1748014566,"e":93750,"f":"set_acc","g":5,"id":3506399453,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["acc",0.06],["speed",4],["cri",0.03],["att_rate",0.06],["acc",0.07],["speed",3],["speed",3],["att_rate",0.06],["speed",4],["acc",0.03,"u"],["speed",3,"u"],["cri",0.01,"u"],["att_rate",0.03,"u"]],"s":"8bd3","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"eah17a","ct":1748047234,"e":93750,"f":"set_max_hp","g":5,"id":3506998849,"l":true,"level":88,"mainStatBaseValue":62,"mainStatId":"ah17_armo_m1","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62],["max_hp_rate",0.07],["def_rate",0.07],["res",0.07],["acc",0.07],["acc",0.06],["acc",0.08],["acc",0.06],["max_hp_rate",0.09],["def_rate",0.08]],"p":799495489,"s":"0","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eah17n","ct":1748047237,"e":93750,"f":"set_max_hp","g":5,"id":3506998906,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"ah17_neck_m1","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13],["att_rate",0.07],["speed",5],["cri",0.05],["cri_dmg",0.06],["cri",0.05],["cri_dmg",0.07],["att_rate",0.07],["att_rate",0.09],["cri_dmg",0.04]],"s":"0","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6n","ct":1748069792,"e":82031,"f":"set_acc","g":5,"id":3507648310,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_neck_m","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["max_hp_rate",0.07],["def_rate",0.07],["speed",4.0],["acc",0.07],["speed",4],["speed",4],["speed",4],["max_hp_rate",0.04],["def_rate",0.07]],"s":"9151","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6r","ct":1748069980,"e":82031,"f":"set_acc","g":5,"id":3507653700,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["max_hp_rate",0.07],["def_rate",0.07],["speed",4.0],["acc",0.07],["acc",0.04],["speed",2],["max_hp_rate",0.06],["def_rate",0.08],["def_rate",0.07]],"s":"77b6","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6r_u","ct":1748220968,"e":93750,"f":"set_acc","g":5,"id":3511268444,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,0],["max_hp_rate",0.07],["def_rate",0.07],["speed",4.0],["acc",0.07],["speed",4],["max_hp_rate",0.04],["speed",2],["def_rate",0.07],["speed",4],["max_hp_rate",0.03,"u"],["def_rate",0.03,"u"],["speed",3,"u"],["acc",0.01,"u"]],"s":"b4d7","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"esc01w","ct":1748316905,"f":"set_shield","g":5,"id":3513589473,"l":true,"level":78,"mainStatBaseValue":95,"mainStatId":"sc01_weap_m","mainStatType":"att","mainStatValue":475,"mg":1111,"op":[["att",95,null,"q01_1",null],["max_hp_rate",0.07],["acc",0.07],["res",0.07],["speed",4]],"s":"fd21","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"esc01h","ct":1748316908,"f":"set_shield","g":5,"id":3513589549,"l":true,"level":78,"mainStatBaseValue":513,"mainStatId":"sc01_helm_m","mainStatType":"max_hp","mainStatValue":2565,"mg":1111,"op":[["max_hp",513,null,"q01_2",null],["max_hp_rate",0.07],["def_rate",0.07],["res",0.07],["speed",4]],"s":"3f18","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"esc01a","ct":1748316912,"f":"set_shield","g":5,"id":3513589622,"l":true,"level":78,"mainStatBaseValue":57,"mainStatId":"sc01_armo_m","mainStatType":"def","mainStatValue":285,"mg":1111,"op":[["def",57,null,"q01_3",null],["max_hp_rate",0.07],["def_rate",0.07],["res",0.07],["speed",4]],"s":"260f","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"esc01b","ct":1748316915,"f":"set_shield","g":5,"id":3513589712,"l":true,"level":78,"mainStatBaseValue":8,"mainStatId":"sc01_boot_m","mainStatType":"speed","mainStatValue":40,"mg":1111,"op":[["speed",8,null,"q01_6",null],["max_hp_rate",0.07],["def_rate",0.07],["res",0.07],["acc",0.07]],"s":"14c","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"esc01r","ct":1748324968,"f":"set_immune","g":5,"id":3513761604,"l":true,"level":78,"mainStatBaseValue":0.12,"mainStatId":"sc01_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12,null,"q01_5",null],["def_rate",0.07],["acc",0.07],["res",0.07],["speed",4]],"s":"71e9","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"esc01n","ct":1748324972,"f":"set_immune","g":5,"id":3513761658,"l":true,"level":78,"mainStatBaseValue":0.12,"mainStatId":"sc01_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12,null,"q01_4",null],["def_rate",0.07],["acc",0.07],["res",0.07],["speed",4]],"s":"6663","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eiu51h","ct":1748336869,"f":"set_shield","g":5,"id":3513963799,"level":88,"mainStatBaseValue":553,"mainStatId":"iu51_helm_m","mainStatType":"max_hp","mainStatValue":2765,"mg":1111,"op":[["max_hp",553],["max_hp_rate",0.07],["def_rate",0.07],["res",0.07],["acc",0.07]],"s":"2301","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eih9n","ct":1748336947,"e":93750,"f":"set_penetrate","g":5,"id":3513965232,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"imh_neck_m11","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["max_hp_rate",0.09],["cri",0.06],["speed",5],["att_rate",0.09],["speed",3],["att_rate",0.05],["att_rate",0.07],["att_rate",0.06],["max_hp_rate",0.05]],"s":"6c60","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"exc507101","ct":1748609728,"g":5,"id":3518279812,"l":true,"mg":1111,"op":[["att_rate",0.14],["ek_c507101",2]],"p":613630545,"s":"bf56"},{"code":"eal85b_u","ct":1748609965,"e":93750,"f":"set_speed","g":5,"id":3518283342,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["acc",0.08],["cri",0.05],["res",0.05],["def_rate",0],["cri",0.05],["res",0.07],["acc",0.07],["cri",0.03],["cri",0.04],["acc",0.03,"u"],["cri",0.04,"u"],["res",0.03,"u"],["def_rate",0.07,"c","change2_def_rate_1_1"],["def_rate",0.01,"u"]],"p":636577158,"s":"43a6","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"exc210101","ct":1748843518,"g":5,"id":3523304582,"l":true,"mg":1111,"op":[["speed",6],["ek_c210101",1]],"p":777666204,"s":"5ead"},{"code":"ecg6a_u","ct":1749028688,"e":93750,"f":"set_def","g":5,"id":3525798717,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp_rate",0.06],["def_rate",0.08],["cri_dmg",0.04],["max_hp",184],["def_rate",0.08],["def_rate",0.05],["max_hp",159],["cri_dmg",0.07],["def_rate",0.08],["max_hp_rate",0.01,"u"],["def_rate",0.05,"u"],["cri_dmg",0.02,"u"],["max_hp",112,"u"]],"s":"b6db","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecg6a","ct":1749028688,"e":82031,"f":"set_def","g":5,"id":3525798724,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["speed",4],["max_hp_rate",0.06],["max_hp",193],["cri_dmg",0.07],["max_hp",168],["max_hp_rate",0.07],["max_hp_rate",0.07],["cri_dmg",0.06],["speed",2]],"s":"1652","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecg6a_u","ct":1749028915,"e":93750,"f":"set_max_hp","g":5,"id":3525801562,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["def_rate",0.05],["max_hp",177],["max_hp_rate",0.05],["speed",4],["speed",4],["max_hp_rate",0.08],["speed",3],["def_rate",0.08],["speed",4],["def_rate",0.03,"u"],["max_hp",56,"u"],["max_hp_rate",0.03,"u"],["speed",3,"u"]],"s":"624b","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecg6a_u","ct":1749028915,"e":93750,"f":"set_max_hp","g":5,"id":3525801564,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["res",0.08],["def_rate",0.05],["max_hp_rate",0.05],["max_hp",173],["def_rate",0.08],["def_rate",0.06],["res",0.06],["max_hp",200],["max_hp_rate",0.04],["res",0.03,"u"],["def_rate",0.04,"u"],["max_hp_rate",0.03,"u"],["max_hp",112,"u"]],"s":"7f21","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecg6a_u","ct":1749028915,"e":93750,"f":"set_max_hp","g":5,"id":3525801566,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp_rate",0.06],["acc",0.08],["def_rate",0.06],["cri",0.05],["max_hp_rate",0.05],["acc",0.08],["cri",0.03],["cri",0.04],["def_rate",0.08],["max_hp_rate",0.03,"u"],["acc",0.03,"u"],["def_rate",0.03,"u"],["cri",0.03,"u"]],"s":"41db","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eal85b_u","ct":1749108228,"e":93750,"f":"set_max_hp","g":5,"id":3526717498,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["att_rate",0.05],["def_rate",0.05],["speed",3],["max_hp",196],["max_hp",193],["max_hp",172],["def_rate",0.08],["att_rate",0.05],["max_hp",173],["att_rate",0.03,"u"],["def_rate",0.03,"u"],["max_hp",224,"u"]],"s":"39bd","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecb6h_u","ct":1749180103,"e":93750,"f":"set_vampire","g":5,"id":3527626492,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["def_rate",0.08],["cri_dmg",0.07],["acc",0.08],["att_rate",0.04],["cri_dmg",0.05],["def_rate",0.08],["att_rate",0.04],["cri_dmg",0.04],["acc",0.08],["def_rate",0.03,"u"],["cri_dmg",0.03,"u"],["acc",0.03,"u"],["att_rate",0.03,"u"]],"s":"52f8","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eal85b_u","ct":1749182548,"e":93750,"f":"set_max_hp","g":5,"id":3527650132,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["cri",0.05],["res",0.07],["def",29],["cri_dmg",0.07],["cri_dmg",0.04],["def",34],["cri",0.03],["def",28],["res",0.07],["cri",0.02,"u"],["res",0.03,"u"],["def",27,"u"],["cri_dmg",0.02,"u"]],"p":326928979,"s":"df54","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecg6a","ct":1749188938,"e":82031,"f":"set_max_hp","g":5,"id":3527718118,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["def_rate",0.06],["cri",0.03],["speed",4],["acc",0.08],["def_rate",0.05],["speed",3],["def_rate",0.08],["cri",0.05],["acc",0.08]],"s":"3b32","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6h_u","ct":1749189527,"e":93750,"f":"set_vampire","g":5,"id":3527723850,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["res",0.07],["max_hp_rate",0.08],["cri",0.03],["def_rate",0.04],["max_hp_rate",0.05],["def_rate",0.07],["max_hp_rate",0.08],["cri",0.05],["cri",0.05],["res",0.01,"u"],["max_hp_rate",0.04,"u"],["cri",0.03,"u"],["def_rate",0.03,"u"]],"p":48988520,"s":"606e","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecg6a_u","ct":1749190576,"e":93750,"f":"set_max_hp","g":5,"id":3527732752,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["res",0.08],["def_rate",0],["max_hp_rate",0.04],["cri_dmg",0.06],["max_hp_rate",0.06],["res",0.04],["max_hp_rate",0.08],["max_hp_rate",0.07],["cri_dmg",0.06],["res",0.03,"u"],["def_rate",0.01,"u"],["max_hp_rate",0.05,"u"],["cri_dmg",0.02,"u"],["def_rate",0.08,"c","change2_def_rate_1_2"]],"s":"dab2","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecg6w_u","ct":1749191514,"e":93750,"f":"set_max_hp","g":5,"id":3527739581,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,1],["max_hp_rate",0.07],["speed",2],["cri",0.04],["cri_dmg",0.07],["cri",0.05],["cri",0.04],["cri_dmg",0.07],["cri_dmg",0.04],["cri_dmg",0.04],["max_hp_rate",0.01,"u"],["cri",0.03,"u"],["cri_dmg",0.04,"u"]],"s":"7fa5","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecg6w","ct":1749191544,"e":17723,"f":"set_att","g":5,"id":3527739859,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["max_hp_rate",0.07],["cri_dmg",0.06],["speed",4],["att_rate",0.05],["att_rate",0.06],["max_hp_rate",0.06],["att_rate",0.08]],"s":"4aa4","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecg6w_u","ct":1749191552,"e":93750,"f":"set_att","g":5,"id":3527739947,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["res",0.07],["cri_dmg",0.07],["att_rate",0.05],["speed",4],["cri_dmg",0.07],["cri_dmg",0.04],["speed",3],["res",0.05],["speed",3],["res",0.03,"u"],["cri_dmg",0.03,"u"],["att_rate",0.01,"u"],["speed",2,"u"]],"s":"9413","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6a_u","ct":1749192293,"e":93804,"f":"set_cri","g":5,"id":3527746479,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri_dmg",0.06],["speed",4],["cri",0.04],["res",0.08],["res",0.04],["res",0.06],["res",0.07],["speed",2],["res",0.04],["cri_dmg",0.01,"u"],["speed",1,"u"],["cri",0.01,"u"],["res",0.07,"u"]],"s":"4011","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a_u","ct":1749192307,"e":93750,"f":"set_speed","g":5,"id":3527746617,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["def_rate",0.06],["cri_dmg",0.06],["max_hp_rate",0.08],["max_hp",182],["cri_dmg",0.07],["cri_dmg",0.05],["cri_dmg",0.04],["def_rate",0.05],["max_hp",185],["def_rate",0.03,"u"],["cri_dmg",0.04,"u"],["max_hp_rate",0.01,"u"],["max_hp",112,"u"]],"s":"adf0","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecg6h_u","ct":1749192726,"e":93750,"f":"set_max_hp","g":5,"id":3527750510,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["max_hp_rate",0.04],["cri_dmg",0.06],["res",0.07],["acc",0.04],["cri_dmg",0.07],["cri_dmg",0.07],["max_hp_rate",0.08],["cri_dmg",0.04],["res",0.06],["max_hp_rate",0.03,"u"],["cri_dmg",0.04,"u"],["res",0.03,"u"],["acc",0.01,"u"]],"s":"3f9f","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6a_u","ct":1749192915,"e":93862,"f":"set_speed","g":5,"id":3527751946,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["def_rate",0],["max_hp_rate",0.08],["speed",3],["res",0.06],["max_hp_rate",0.06],["max_hp_rate",0.04],["speed",4],["speed",4],["max_hp_rate",0.06],["def_rate",0.01,"u"],["max_hp_rate",0.05,"u"],["speed",2,"u"],["res",0.01,"u"],["def_rate",0.08,"c","change2_def_rate_1_2"]],"s":"397e","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"eal85b_u","ct":1749200057,"e":93750,"f":"set_res","g":5,"id":3527818197,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["def_rate",0],["res",0.08],["def",33],["max_hp",181],["res",0.05],["def",29],["max_hp",185],["res",0.04],["max_hp",189],["def_rate",0.01,"u"],["res",0.04,"u"],["def",18,"u"],["max_hp",168,"u"],["def_rate",0.05,"c","change2_def_rate_1_1"]],"p":28398305,"s":"684e","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6a_u","ct":1749622557,"e":84375,"f":"set_speed","g":4,"id":3533657970,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["acc",0.07],["max_hp_rate",0.08],["speed",3],["max_hp_rate",0.08],["max_hp_rate",0.08],["acc",0.06],["def_rate",0.06],["max_hp_rate",0.08],["acc",0.03,"u"],["max_hp_rate",0.05,"u"],["def_rate",0.01,"u"]],"s":"bc50","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6a_u","ct":1749869869,"e":93750,"f":"set_speed","g":5,"id":3537254483,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri_dmg",0.05],["max_hp_rate",0.05],["speed",2],["res",0.08],["speed",3],["res",0.08],["speed",2],["cri_dmg",0.06],["speed",4],["cri_dmg",0.02,"u"],["max_hp_rate",0.01,"u"],["speed",3,"u"],["res",0.03,"u"]],"s":"a7c1","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6w_u","ct":1749905616,"e":93750,"f":"set_speed","g":5,"id":3537857610,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["max_hp_rate",0.07],["cri",0.03],["res",0.04],["cri_dmg",0.07],["max_hp_rate",0.08],["cri_dmg",0.07],["cri",0.03],["cri",0.03],["res",0.08],["max_hp_rate",0.03,"u"],["cri",0.03,"u"],["res",0.03,"u"],["cri_dmg",0.02,"u"]],"s":"f311","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6h_u","ct":1749906312,"e":84375,"f":"set_cri","g":4,"id":3537869979,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["cri",0.05],["def_rate",0.08],["speed",3],["speed",3],["speed",3],["speed",4],["res",0.07],["res",0.04],["cri",0.01,"u"],["def_rate",0.01,"u"],["speed",3,"u"],["res",0.03,"u"]],"s":"4434","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eal85b_u","ct":1750076867,"e":93750,"f":"set_immune","g":5,"id":3540252422,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"max_hp_rate","mainStatValue":0.65,"mg":1111,"op":[["max_hp_rate",0.13,null,null,0],["cri_dmg",0.06],["def_rate",0.06],["att_rate",0.08],["speed",3],["speed",3],["def_rate",0.08],["speed",2],["cri_dmg",0.07],["speed",2],["cri_dmg",0.02,"u"],["def_rate",0.03,"u"],["att_rate",0.01,"u"],["speed",3,"u"]],"s":"68e6","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecg6h_u","ct":1750221347,"e":93750,"f":"set_max_hp","g":5,"id":3541894381,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["acc",0.06],["speed",4],["res",0.08],["max_hp_rate",0],["speed",4],["res",0.08],["acc",0.08],["acc",0.04],["acc",0.06],["acc",0.05,"u"],["speed",1,"u"],["res",0.03,"u"],["max_hp_rate",0.01,"u"],["max_hp_rate",0.08,"c","change2_max_hp_rate_1_2"]],"s":"b22b","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"eih6r","ct":1750249893,"e":93750,"f":"set_res","g":5,"id":3542185787,"l":true,"level":88,"mainStatBaseValue":0.13,"mainStatId":"imh_ring_m3","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13],["max_hp_rate",0.06],["res",0.09],["speed",4],["def_rate",0.08],["res",0.09],["speed",3],["res",0.06],["max_hp_rate",0.07],["def_rate",0.06]],"s":"7a32","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eiu51n","ct":1750253896,"e":21687,"f":"set_revenge","g":5,"id":3542239370,"l":true,"level":88,"mainStatBaseValue":0.12,"mainStatId":"iu51_neck_m","mainStatType":"cri","mainStatValue":0.6,"mg":1111,"op":[["cri",0.12],["att_rate",0.07],["max_hp_rate",0.07],["speed",5],["cri_dmg",0.06],["speed",3],["att_rate",0.07],["max_hp_rate",0.05]],"s":"f6ab","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eih9n","ct":1750256287,"e":93750,"f":"set_penetrate","g":5,"id":3542276314,"l":true,"level":88,"mainStatBaseValue":0.14,"mainStatId":"imh_neck_m11","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14],["max_hp_rate",0.09],["cri",0.06],["speed",5],["att_rate",0.09],["max_hp_rate",0.07],["cri",0.05],["cri",0.05],["cri",0.04],["speed",4]],"s":"4d9c","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eal85b_u","ct":1750258682,"e":93750,"f":"set_speed","g":5,"id":3542315094,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,0],["cri",0],["max_hp",159],["speed",4],["cri_dmg",0.04],["cri_dmg",0.05],["cri",0],["max_hp",174],["cri_dmg",0.05],["cri",0],["cri",0.03,"u"],["max_hp",112,"u"],["cri_dmg",0.03,"u"],["cri",0.07,"c","change2_cri_3_1"]],"p":795195383,"s":"3c6","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecw6a_u","ct":1750321865,"e":93750,"f":"set_cri","g":5,"id":3543895042,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["acc",0.08],["cri_dmg",0.07],["def_rate",0.05],["cri",0.05],["cri_dmg",0.05],["cri_dmg",0.06],["cri",0.05],["cri_dmg",0.06],["acc",0.08],["acc",0.03,"u"],["cri_dmg",0.04,"u"],["def_rate",0.01,"u"],["cri",0.02,"u"]],"s":"d2b0","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6w_u","ct":1750372686,"e":93750,"f":"set_cri_dmg","g":5,"id":3545863341,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["att_rate",0.07],["speed",4.0],["cri",0.04],["cri_dmg",0.06],["att_rate",0.05],["speed",3],["cri_dmg",0.07],["speed",4],["cri",0.04],["att_rate",0.03,"u"],["speed",2,"u"],["cri",0.02,"u"],["cri_dmg",0.02,"u"]],"p":899521626,"s":"e6ad","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"exc103401","ct":1750389040,"g":5,"id":3546322083,"level":0,"mg":1111,"name":"Unknown","op":[["cri",0.1],["ek_c103401",1]],"p":890790459,"s":"a86a"},{"code":"ecb6h_u","ct":1750466852,"e":93750,"f":"set_cri_dmg","g":5,"id":3548498505,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["att_rate",0.06],["max_hp_rate",0.06],["speed",4.0],["cri",0.05],["att_rate",0.07],["speed",4],["max_hp_rate",0.07],["att_rate",0.05],["cri",0.05],["att_rate",0.04,"u"],["max_hp_rate",0.03,"u"],["speed",1,"u"],["cri",0.02,"u"]],"s":"bfd2","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6b_u","ct":1750483266,"e":93750,"f":"set_acc","g":5,"id":3549077008,"l":true,"level":90,"mainStatBaseValue":9,"mainStatId":"cra7_boot_m","mainStatType":"speed","mainStatValue":45,"mg":1111,"op":[["speed",9,null,null,0],["cri",0.05],["acc",0.08],["res",0.08],["cri_dmg",0.05],["acc",0.07],["res",0.04],["cri",0.03],["cri",0.04],["cri_dmg",0.06],["cri",0.03,"u"],["acc",0.03,"u"],["res",0.03,"u"],["cri_dmg",0.02,"u"]],"s":"8d15","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ecb6a_u","ct":1750638400,"e":93750,"f":"set_cri_dmg","g":5,"id":3553470454,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["max_hp_rate",0.07],["cri",0.04],["speed",4.0],["cri_dmg",0.06],["max_hp_rate",0.05],["cri_dmg",0.05],["max_hp_rate",0.07],["cri_dmg",0.04],["max_hp_rate",0.06],["max_hp_rate",0.05,"u"],["cri",0.01,"u"],["cri_dmg",0.03,"u"]],"s":"b8d","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecg6a_u","ct":1750686596,"e":84469,"f":"set_shield","g":4,"id":3554729013,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri",0.05],["def_rate",0.08],["max_hp_rate",0.07],["max_hp_rate",0.08],["max_hp_rate",0.08],["def_rate",0.04],["acc",0.06],["acc",0.07],["cri",0.01,"u"],["def_rate",0.03,"u"],["max_hp_rate",0.04,"u"],["acc",0.03,"u"]],"s":"6bcf","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6w_u","ct":1750687747,"e":93750,"f":"set_res","g":5,"id":3554771772,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["acc",0.06],["speed",4],["res",0.08],["max_hp_rate",0],["acc",0.08],["res",0.04],["res",0.08],["res",0.06],["acc",0.08],["acc",0.04,"u"],["res",0.05,"u"],["max_hp_rate",0.01,"u"],["max_hp_rate",0.06,"c","change2_max_hp_rate_1_1"]],"p":566472035,"s":"612f","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6w","ct":1750753932,"e":82084,"f":"set_speed","g":5,"id":3556276571,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["speed",2],["att_rate",0.04],["cri_dmg",0.06],["acc",0.07],["speed",4],["cri_dmg",0.05],["speed",4],["att_rate",0.08],["cri_dmg",0.04]],"s":"e3a","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6w_u","ct":1750755129,"e":93803,"f":"set_speed","g":5,"id":3556303419,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["acc",0.05],["speed",2],["max_hp_rate",0.08],["res",0.05],["max_hp_rate",0.06],["acc",0.08],["speed",3],["speed",4],["speed",4],["acc",0.03,"u"],["speed",3,"u"],["max_hp_rate",0.03,"u"],["res",0.01,"u"]],"s":"7ac0","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6w","ct":1750755598,"e":82085,"f":"set_cri","g":5,"id":3556314296,"l":true,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["cri",0.03],["att_rate",0.06],["speed",2],["max_hp",172],["speed",4],["speed",2],["speed",2],["speed",4],["cri",0.04]],"s":"218c","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6w","ct":1750755913,"e":82031,"f":"set_speed","g":5,"id":3556320767,"level":85,"mainStatBaseValue":100,"mainStatId":"cra6_wepo_m","mainStatType":"att","mainStatValue":500,"mg":1111,"op":[["att",100],["speed",4],["cri",0.03],["acc",0.04],["max_hp_rate",0.04],["speed",3],["speed",4],["speed",3],["max_hp_rate",0.04],["max_hp_rate",0.08]],"s":"cd45","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6h_u","ct":1750756313,"e":93861,"f":"set_speed","g":5,"id":3556329819,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["cri",0],["speed",3],["max_hp_rate",0.08],["cri_dmg",0.04],["max_hp_rate",0.07],["cri_dmg",0.06],["cri_dmg",0.07],["speed",4],["cri",0],["cri",0.06,"c"],["cri",0.02,"u"],["speed",1,"u"],["max_hp_rate",0.03,"u"],["cri_dmg",0.03,"u"]],"s":"3705","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecw6r_u","ct":1750757464,"e":93860,"f":"set_speed","g":5,"id":3556358680,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"acc","mainStatValue":0.65,"mg":1111,"op":[["acc",0.13,null,null,0],["max_hp",187],["res",0.08],["speed",4],["max_hp_rate",0.07],["max_hp",170],["speed",4],["speed",3],["speed",2],["max_hp",183],["max_hp",168,"u"],["res",0.01,"u"],["speed",3,"u"],["max_hp_rate",0.01,"u"]],"s":"156b","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6r_u","ct":1750768014,"e":93750,"f":"set_speed","g":5,"id":3556631332,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,0],["acc",0.07],["max_hp",200],["max_hp_rate",0.08],["speed",3],["acc",0.08],["max_hp_rate",0.05],["max_hp_rate",0.08],["max_hp_rate",0.05],["max_hp_rate",0.06],["acc",0.03,"u"],["max_hp",56,"u"],["max_hp_rate",0.07,"u"]],"s":"48e4","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6r_u","ct":1750768171,"e":93802,"f":"set_acc","g":5,"id":3556636135,"l":true,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_ring_m","mainStatType":"def_rate","mainStatValue":0.65,"mg":1111,"op":[["def_rate",0.13,null,null,0],["att",42],["res",0.04],["speed",2],["cri",0.05],["speed",4],["speed",4],["speed",2],["res",0.06],["res",0.06],["att",11,"u"],["res",0.04,"u"],["speed",3,"u"],["cri",0.01,"u"]],"s":"2a8c","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6n","ct":1750768294,"e":73828,"f":"set_acc","g":4,"id":3556639912,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_neck_m","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["max_hp",188],["speed",3],["acc",0.04],["speed",3],["speed",3],["speed",3],["cri",0.03],["acc",0.04]],"s":"a106","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecw6r","ct":1750769632,"e":82083,"f":"set_speed","g":5,"id":3556684148,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"res","mainStatValue":0.6,"mg":1111,"op":[["res",0.12],["cri",0.05],["att_rate",0.06],["speed",4],["cri_dmg",0.07],["cri",0.05],["speed",4],["speed",4],["speed",2],["cri",0.05]],"s":"18b4","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6r","ct":1750769865,"e":82083,"f":"set_speed","g":5,"id":3556691982,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"def_rate","mainStatValue":0.6,"mg":1111,"op":[["def_rate",0.12],["speed",3],["cri",0.04],["res",0.05],["acc",0.05],["speed",3],["acc",0.04],["speed",3],["speed",3],["cri",0.05]],"s":"f350","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6w_u","ct":1750818687,"e":84375,"f":"set_cri","g":4,"id":3557757060,"l":true,"level":90,"mainStatBaseValue":105,"mainStatId":"cra7_wepo_m","mainStatType":"att","mainStatValue":525,"mg":1111,"op":[["att",105,null,null,0],["speed",3],["res",0.08],["att_rate",0.08],["speed",3],["speed",2],["speed",4],["max_hp_rate",0.04],["speed",4],["speed",4,"u"],["res",0.01,"u"],["att_rate",0.01,"u"],["max_hp_rate",0.01,"u"]],"s":"6697","statMultiplier":1.67,"tierMultiplier":1,"type":"weapon"},{"code":"ecw6r","ct":1750819746,"e":82082,"f":"set_cri","g":5,"id":3557784304,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"att_rate","mainStatValue":0.6,"mg":1111,"op":[["att_rate",0.12],["def_rate",0.07],["def",29],["speed",4],["cri",0.05],["speed",4],["speed",3],["speed",3],["def_rate",0.04],["cri",0.04]],"s":"15a1","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6r","ct":1750819756,"e":73863,"f":"set_acc","g":4,"id":3557784506,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"acc","mainStatValue":0.6,"mg":1111,"op":[["acc",0.12],["cri_dmg",0.05],["res",0.05],["speed",3],["speed",3],["speed",3],["speed",4],["max_hp_rate",0.07],["res",0.05]],"s":"f1d9","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"eal85n_u","ct":1750858177,"e":93750,"f":"set_vampire","g":5,"id":3558773915,"l":true,"level":90,"mainStatBaseValue":0.14,"mainStatId":"cra7_neck_m","mainStatType":"cri_dmg","mainStatValue":0.7000000000000001,"mg":1111,"op":[["cri_dmg",0.14,null,null,0],["max_hp_rate",0.06],["def",30],["att",41],["def_rate",0.04],["def_rate",0.04],["def_rate",0.07],["max_hp_rate",0.07],["def_rate",0.07],["max_hp_rate",0.04],["max_hp_rate",0.04,"u"],["def",9,"u"],["att",11,"u"],["def_rate",0.05,"u"]],"p":798777729,"s":"b28f","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"eal85b_u","ct":1750858575,"e":93750,"f":"set_vampire","g":5,"id":3558788678,"level":90,"mainStatBaseValue":0.13,"mainStatId":"cra7_boot_m","mainStatType":"att_rate","mainStatValue":0.65,"mg":1111,"op":[["att_rate",0.13,null,null,1],["cri_dmg",0.04],["cri",0.04],["max_hp_rate",0.05],["res",0.07],["cri_dmg",0.06],["cri_dmg",0.07],["max_hp_rate",0.08],["cri_dmg",0.07],["cri_dmg",0.07],["cri_dmg",0.06,"u"],["cri",0.01,"u"],["max_hp_rate",0.03,"u"],["res",0.01,"u"]],"p":798777729,"s":"98e7","statMultiplier":1,"tierMultiplier":1,"type":"boot"},{"code":"ela13b","ct":1750944383,"e":93750,"f":"set_shield","g":5,"id":3560545568,"l":true,"level":0,"mg":1111,"name":"Unknown","op":[["max_hp_rate",0.13],["def_rate",0.09],["speed",5],["res",0.09],["acc",0.09],["def_rate",0.06],["res",0.05],["speed",3],["def_rate",0.09],["speed",3]],"s":"c2b1"},{"code":"ela13w","ct":1750944408,"e":93750,"f":"set_shield","g":5,"id":3560546230,"l":true,"level":0,"mg":1111,"name":"Unknown","op":[["att",103],["max_hp_rate",0.09],["speed",5],["res",0.09],["acc",0.09],["res",0.07],["acc",0.07],["speed",4],["res",0.07],["acc",0.08]],"s":"0"},{"code":"ecw6r","ct":1751010960,"e":82084,"f":"set_cri","g":5,"id":3561694666,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["cri_dmg",0.07],["res",0.05],["speed",3],["def_rate",0.06],["cri_dmg",0.04],["speed",2],["speed",3],["speed",3],["speed",2]],"s":"c66e","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6r","ct":1751011396,"e":82031,"f":"set_speed","g":5,"id":3561702971,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"max_hp_rate","mainStatValue":0.6,"mg":1111,"op":[["max_hp_rate",0.12],["cri",0.03],["speed",4],["def_rate",0],["cri_dmg",0.07],["cri_dmg",0.05],["cri_dmg",0.05],["def_rate",0],["cri_dmg",0.06],["cri_dmg",0.05],["def_rate",0.11,"c","change2_def_rate_2_1"]],"s":"6733","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecw6r","ct":1751011992,"e":82143,"f":"set_acc","g":5,"id":3561715688,"l":true,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"def_rate","mainStatValue":0.6,"mg":1111,"op":[["def_rate",0.12],["speed",3],["max_hp_rate",0.04],["acc",0],["res",0.08],["res",0.08],["acc",0],["max_hp_rate",0.07],["speed",3],["max_hp_rate",0.05],["acc",0.1,"c","change2_acc_2_2"]],"s":"f5b7","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ela13n","ct":1751031755,"e":93750,"f":"set_cri","g":5,"id":3562099450,"l":true,"level":0,"mg":1111,"name":"Unknown","op":[["cri_dmg",0.14],["att_rate",0.09],["speed",5],["cri",0.06],["acc",0.09],["cri",0.05],["speed",4],["speed",4],["att_rate",0.06],["acc",0.08]],"s":"0"},{"code":"ecw6a","ct":1751112339,"e":82031,"f":"set_speed","g":5,"id":3563523530,"l":true,"level":85,"mainStatBaseValue":60,"mainStatId":"cra6_armo_m","mainStatType":"def","mainStatValue":300,"mg":1111,"op":[["def",60],["cri_dmg",0.07],["max_hp_rate",0.05],["acc",0.07],["def_rate",0.08],["max_hp_rate",0.04],["acc",0.08],["max_hp_rate",0.06],["max_hp_rate",0.04],["def_rate",0.04]],"s":"55a1","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecw6h","ct":1751112346,"f":"set_speed","g":5,"id":3563523741,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["cri_dmg",0.07],["acc",0.04],["max_hp_rate",0.04],["res",0.07]],"s":"a433","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ela13a","ct":1751124649,"e":93862,"f":"set_shield","g":5,"id":3563835443,"l":true,"level":0,"mg":1111,"name":"Unknown","op":[["def",62],["max_hp_rate",0.09],["def_rate",0.09],["speed",5],["res",0.09],["def_rate",0.05],["def_rate",0.05],["speed",4],["def_rate",0.09],["max_hp_rate",0.07]],"s":"0"},{"code":"ecw6h_u","ct":1751250870,"e":93750,"f":"set_speed","g":5,"id":3566231631,"l":true,"level":90,"mainStatBaseValue":567,"mainStatId":"cra7_helm_m","mainStatType":"max_hp","mainStatValue":2835,"mg":1111,"op":[["max_hp",567,null,null,0],["max_hp_rate",0.06],["cri",0.05],["speed",4],["att_rate",0.07],["cri",0.04],["cri",0.03],["max_hp_rate",0.08],["att_rate",0.07],["max_hp_rate",0.08],["max_hp_rate",0.04,"u"],["cri",0.03,"u"],["att_rate",0.03,"u"]],"s":"cbc6","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ela13r","ct":1751285020,"e":93750,"f":"set_shield","g":5,"id":3566763231,"l":true,"level":0,"mg":1111,"name":"Unknown","op":[["max_hp_rate",0.13],["def_rate",0.09],["speed",5],["res",0.09],["acc",0.09],["res",0.08],["def_rate",0.09],["acc",0.09],["acc",0.05],["def_rate",0.08]],"s":"17e3"},{"code":"ecb6a_u","ct":1751295414,"e":93863,"f":"set_cri_dmg","g":5,"id":3566991686,"l":true,"level":90,"mainStatBaseValue":62,"mainStatId":"cra7_armo_m","mainStatType":"def","mainStatValue":310,"mg":1111,"op":[["def",62,null,null,0],["cri",0.05],["speed",4],["max_hp_rate",0.07],["cri_dmg",0.06],["cri",0.05],["cri_dmg",0.06],["cri",0.04],["cri_dmg",0.06],["max_hp_rate",0.07],["cri",0.03,"u"],["max_hp_rate",0.03,"u"],["cri_dmg",0.03,"u"]],"s":"1003","statMultiplier":2.5,"tierMultiplier":1,"type":"armor"},{"code":"ecb6h","ct":1751372425,"f":"set_cri_dmg","g":4,"id":3568063137,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_helm_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["res",0.05],["speed",4],["def_rate",0.05]],"s":"787e","statMultiplier":2.25,"tierMultiplier":1,"type":"helm"},{"code":"ecq6n","ct":1751420402,"f":"set_coop","g":3,"id":3568736865,"level":85,"mainStatBaseValue":0.11,"mainStatId":"cra6_neck_m","mainStatType":"cri","mainStatValue":0.55,"mg":1111,"op":[["cri",0.11],["def",26],["att",30]],"s":"ca9d","statMultiplier":1,"tierMultiplier":1,"type":"neck"},{"code":"ecd6r","ct":1751420402,"f":"set_scar","g":3,"id":3568736866,"level":85,"mainStatBaseValue":0.12,"mainStatId":"cra6_ring_m","mainStatType":"acc","mainStatValue":0.6,"mg":1111,"op":[["acc",0.12],["cri",0.04],["res",0.06]],"s":"daf3","statMultiplier":1,"tierMultiplier":1,"type":"ring"},{"code":"ecg6n","ct":1751420402,"f":"set_shield","g":3,"id":3568736867,"level":85,"mainStatBaseValue":540,"mainStatId":"cra6_neck_m","mainStatType":"max_hp","mainStatValue":2700,"mg":1111,"op":[["max_hp",540],["cri",0.05],["cri_dmg",0.06]],"s":"369d","statMultiplier":2.25,"tierMultiplier":1,"type":"neck"}],"inventory":{},"status":"SUCCESS","units":[[{"code":"c5001","ct":0,"d":7,"exp":833510,"f":3196,"g":6,"id":166490,"l":true,"name":"Adventurer Ras","opt":11,"s":[2,2,4],"st":0,"stree":[3,3,3,3,3,3,3,3,3,3],"z":6},{"code":"c1018","ct":1687228144,"d":7,"exp":63815,"f":919,"g":3,"id":2303361,"l":true,"name":"Aither","opt":1,"st":0},{"code":"s0001","ct":1687228446,"exp":0,"g":5,"id":2499590,"opt":1,"st":0},{"code":"c3063","ct":1687228784,"d":7,"exp":392415,"f":5,"g":5,"id":2716895,"l":true,"name":"Kiris","opt":1,"s":[5,3,2],"st":0,"z":4},{"code":"c4035","ct":1687228784,"d":7,"exp":833510,"f":200,"g":6,"id":2716899,"l":true,"name":"Commander Lorina","opt":1,"s":[5,5,5],"st":0,"stree":[3,3,3,3,3,3,3,3,3,3],"z":6},{"code":"c1024","ct":1687231721,"exp":650125,"f":1608,"g":5,"id":4647526,"l":true,"name":"Iseria","opt":2001,"s":[4,2,4],"st":0,"z":4},{"code":"c1036","ct":1687231754,"d":6,"exp":5690,"g":4,"id":4667046,"l":true,"name":"Crozet","opt":1,"st":0},{"code":"c0002","ct":1687235863,"d":6,"exp":1110500,"f":2845,"g":6,"id":6844892,"l":true,"name":"Mercedes","opt":3021,"s":[5,5,5],"st":0,"z":6},{"code":"c4023","ct":1687235940,"d":7,"exp":63815,"g":3,"id":6885513,"l":true,"name":"Mercenary Helga","opt":1,"st":0},{"code":"c1008","ct":1687235940,"d":6,"exp":13500,"g":4,"id":6885516,"l":true,"name":"Armin","opt":1,"st":0},{"code":"c4041","ct":1687235940,"d":7,"exp":833510,"f":149,"g":6,"id":6885517,"l":true,"name":"Mascot Hazel","opt":1,"s":[3,4,7],"st":0,"stree":[2,3,3,0,2,0,0,0,1,0],"z":6},{"code":"c3132","ct":1687235987,"d":7,"exp":392415,"f":12293,"g":5,"id":6911147,"l":true,"name":"Muwi","opt":21,"s":[3,5,5],"st":0,"z":5},{"code":"c3102","ct":1687246056,"d":7,"exp":10884,"f":814,"g":3,"id":11049689,"l":true,"name":"Ian","opt":1,"st":0},{"code":"c3026","ct":1687246438,"d":6,"exp":1110500,"f":11106,"g":6,"id":11185757,"l":true,"name":"Free Spirit Tieria","opt":3021,"s":[4,4,7],"st":0,"z":5},{"code":"s0002","ct":1687271170,"exp":0,"g":5,"id":20013754,"opt":1,"st":0},{"code":"c4051","ct":1687275617,"d":7,"exp":833510,"f":171,"g":6,"id":21884461,"l":true,"name":"Researcher Carrot","opt":1,"s":[6,2,7],"st":0,"stree":[0,0,3,0,3,3,0,3,3,3],"z":6},{"code":"c1079","ct":1687306878,"exp":1384450,"f":71,"g":6,"id":28393107,"l":true,"name":"Cermia","opt":1,"st":0,"z":6},{"code":"c4123","ct":1687306899,"d":7,"exp":833510,"f":2627,"g":6,"id":28398305,"l":true,"name":"Silvertide Christy","opt":21,"s":[5,5,5],"st":0,"stree":[3,3,3,3,3,3,3,3,3,3],"z":6},{"code":"s0003","ct":1687309708,"exp":0,"g":5,"id":29078917,"opt":1,"st":0},{"code":"c4042","ct":1687320189,"d":7,"exp":392415,"f":216,"g":5,"id":31856726,"name":"Angelic Montmorancy","opt":1,"s":[2,5,5],"st":0,"z":5},{"code":"c1023","ct":1687322611,"exp":0,"g":5,"id":32601552,"l":true,"name":"Kayron","opt":1,"st":0},{"code":"c3025","ct":1687351395,"d":7,"exp":63815,"g":3,"id":40330842,"l":true,"name":"Church of Ilryos Axe","opt":1,"st":0},{"code":"c1062","ct":1687352017,"d":6,"exp":1110500,"f":3213,"g":6,"id":40490456,"l":true,"name":"Angelica","opt":3021,"s":[null,5,5],"st":0,"z":6},{"code":"c3045","ct":1687357202,"d":7,"exp":3840,"g":3,"id":41877886,"l":true,"name":"Otillie","opt":1,"st":0},{"code":"c1087","ct":1687394514,"d":6,"exp":1110500,"f":12163,"g":6,"id":48982864,"l":true,"name":"Furious","opt":3001,"s":[3,1,6],"st":0,"z":5},{"code":"c3032","ct":1687394538,"d":7,"exp":833510,"f":5,"g":6,"id":48988518,"l":true,"name":"Taranor Guard","opt":21,"s":[5,5,5],"st":0,"z":6},{"code":"c3125","ct":1687394538,"d":7,"exp":3840,"g":3,"id":48988519,"l":true,"name":"Penelope","opt":1,"st":0},{"code":"c1129","ct":1687394538,"d":3,"exp":1384450,"f":1837,"g":6,"id":48988520,"l":true,"name":"Aria","opt":3021,"s":[7,7,1],"st":0,"z":6},{"code":"c1072","ct":1687395299,"d":3,"exp":1384450,"f":14459,"g":6,"id":49161666,"l":true,"name":"Sigret","opt":3021,"s":[5,5,5],"st":0,"z":6},{"code":"c3022","ct":1687395790,"d":7,"exp":5340,"f":814,"g":3,"id":49275344,"l":true,"name":"Enott","opt":1,"st":0},{"code":"c1021","ct":1687395805,"d":6,"exp":12970,"g":4,"id":49278840,"name":"Dingo","opt":1,"st":0},{"code":"c3024","ct":1687445920,"d":7,"exp":3540,"g":3,"id":60578097,"l":true,"name":"Gunther","opt":1,"st":0},{"code":"c3055","ct":1687481103,"d":7,"exp":840,"g":3,"id":66610863,"l":true,"name":"Hurado","opt":1,"st":0},{"code":"c1028","ct":1687608539,"d":6,"exp":50475,"g":4,"id":90340100,"l":true,"name":"Clarissa","opt":1,"st":0},{"code":"c1054","ct":1687610761,"d":6,"exp":10190,"g":4,"id":90728199,"name":"Rin","opt":1,"st":0},{"code":"c1067","ct":1687611503,"d":2,"exp":1384450,"f":4903,"g":6,"id":90857803,"l":true,"name":"Tamarinne","opt":3021,"s":[3,7,1],"skin_code":"c1067_s01","st":0,"z":6},{"code":"c3014","ct":1687646880,"d":7,"exp":840,"g":3,"id":96073578,"l":true,"name":"Mirsa","opt":1,"st":0},{"code":"c1047","ct":1687646924,"exp":650125,"g":5,"id":96079743,"l":true,"name":"Ken","opt":1,"st":0,"z":5},{"code":"c1118","ct":1687646924,"d":1,"exp":1384450,"f":1612,"g":6,"id":96079748,"l":true,"name":"Ran","opt":3021,"s":[4,1,7],"st":0,"z":6},{"code":"s0004","ct":1687654215,"exp":0,"g":5,"id":97362523,"opt":1,"st":0},{"code":"c2050","ct":1687666751,"d":1,"exp":1384450,"f":4572,"g":6,"id":99507012,"l":true,"name":"Specter Tenebria","opt":3021,"s":[6,3,6],"skin_code":"c2050_s01","st":0,"z":6},{"code":"c2043","ct":1687684221,"exp":1190,"g":4,"id":102257218,"l":true,"name":"Benevolent Romann","opt":1,"st":0},{"code":"c1003","ct":1687708002,"d":6,"exp":5690,"g":4,"id":106183527,"l":true,"name":"Rose","opt":1,"st":0},{"code":"c1070","ct":1687739825,"exp":1384450,"f":3,"g":6,"id":110838566,"l":true,"name":"Krau","opt":1,"s":[3,4,2],"st":0,"z":6},{"code":"c1071","ct":1687739897,"exp":0,"f":1724,"g":5,"id":110853212,"l":true,"name":"Bellona","opt":1,"st":0},{"code":"c1088","ct":1687770611,"exp":1384450,"f":5002,"g":6,"id":115835449,"l":true,"name":"Vivian","opt":3001,"s":[null,7,1],"st":0,"z":6},{"code":"c3134","ct":1687780574,"d":7,"exp":392415,"f":1465,"g":5,"id":117268286,"l":true,"name":"Yoonryoung","opt":1,"s":[7],"st":0,"z":4},{"code":"c3065","ct":1687780604,"d":7,"exp":840,"g":3,"id":117273089,"l":true,"name":"Wanda","opt":1,"st":0},{"code":"c1109","ct":1687959020,"exp":1384450,"f":3720,"g":6,"id":140659207,"l":true,"name":"Landy","opt":3001,"s":[2,3,5],"st":0,"z":5},{"code":"c3094","ct":1688015777,"d":7,"exp":2040,"g":3,"id":146824688,"l":true,"name":"Eaton","opt":1,"st":0},{"code":"c6008","ct":1688015796,"exp":1110500,"f":355,"g":6,"id":146827448,"l":true,"name":"Bad Cat Armin","opt":1,"s":[null,5,4],"st":0,"z":5},{"code":"c1112","ct":1688045722,"exp":1384450,"f":2691,"g":6,"id":150271128,"l":true,"name":"Politis","opt":3001,"s":[4,5,5],"st":0,"z":6},{"code":"c4144","ct":1688133397,"d":7,"exp":833510,"f":1808,"g":6,"id":158971995,"l":true,"name":"Savior Adin","opt":21,"s":[5,5,5],"st":0,"stree":[3,3,3,3,3,3,3,3,3,3],"z":6},{"code":"c4005","ct":1688359306,"d":7,"exp":833510,"f":2718,"g":6,"id":180232242,"l":true,"name":"Shadow Knight Pyllis","opt":21,"s":[4,5,4],"st":0,"stree":[3,3,3,3,3,3,3,3,3,3],"z":6},{"code":"c3064","ct":1688370619,"d":7,"exp":6840,"g":3,"id":181253090,"l":true,"name":"Celeste","opt":1,"st":0},{"code":"c1013","ct":1688436207,"d":6,"exp":1190,"g":4,"id":186477488,"name":"Cartuja","opt":1,"st":0},{"code":"c1039","ct":1688735695,"exp":1250,"f":86,"g":5,"id":207190343,"l":true,"name":"Haste","opt":1,"st":0},{"code":"c1102","ct":1688886306,"exp":1384450,"f":4369,"g":6,"id":218403497,"l":true,"name":"Roana","opt":3001,"s":[4,7,1],"st":0,"z":6},{"code":"c1124","ct":1688920907,"exp":1250,"g":5,"id":221027633,"l":true,"name":"Arunka","opt":1,"st":0},{"code":"c1126","ct":1688984548,"exp":1250,"g":5,"id":225117695,"l":true,"name":"Lua","opt":1,"st":0,"z":1},{"code":"c2089","ct":1688994679,"exp":1384450,"f":2289,"g":6,"id":225876663,"l":true,"name":"Conqueror Lilias","opt":3001,"s":[3,6,3],"st":0,"z":6},{"code":"c2004","ct":1688999380,"d":7,"exp":1190,"g":4,"id":226290315,"l":true,"name":"Wanderer Silk","opt":1,"st":0},{"a":true,"code":"c6037","ct":1689000350,"d":6,"exp":1110500,"f":1503,"g":6,"id":226377978,"l":true,"name":"Moon Bunny Dominiel","opt":2021,"s":[5,6,3],"st":0,"z":6},{"code":"c2005","ct":1689000376,"exp":1190,"g":4,"id":226380601,"l":true,"name":"Celestial Mercedes","opt":1,"st":0},{"code":"c2036","ct":1689000393,"exp":1190,"g":4,"id":226382235,"l":true,"name":"Troublemaker Crozet","opt":1,"st":0},{"code":"c2065","ct":1689053732,"exp":1190,"g":4,"id":230001112,"l":true,"name":"Tempest Surin","opt":1,"st":0},{"a":true,"code":"c4004","ct":1689221173,"d":7,"exp":833510,"f":2266,"g":6,"id":241191727,"l":true,"name":"Unbound Knight Arowell","opt":21,"s":[5,3,5],"st":0,"stree":[3,3,3,3,3,3,3,3,3,3],"z":6},{"code":"c3034","ct":1689301199,"d":7,"exp":3240,"g":3,"id":246179820,"l":true,"name":"Rikoris","opt":1,"st":0},{"code":"c1086","ct":1689345123,"d":6,"exp":9440,"g":4,"id":249685425,"l":true,"name":"Khawana","opt":1,"st":0},{"a":true,"code":"c5082","ct":1689845857,"d":1,"exp":1384450,"f":1500,"g":6,"id":279573776,"l":true,"name":"Ocean Breeze Luluca","opt":3021,"s":[3,7,1],"st":0,"z":6},{"code":"c3015","ct":1689948930,"d":7,"exp":840,"g":3,"id":286281807,"l":true,"name":"Sven","opt":1,"st":0},{"code":"c3095","ct":1690210324,"d":6,"exp":840,"g":3,"id":297335230,"l":true,"name":"Batisse","opt":1,"st":0},{"code":"c1009","ct":1690327809,"exp":0,"g":5,"id":301462555,"l":true,"name":"Charlotte","opt":1,"st":0},{"code":"c1017","ct":1690464352,"d":4,"exp":522540,"f":33,"g":5,"id":306770592,"l":true,"name":"Achates","opt":1,"s":[null,2,3],"st":0,"z":5},{"code":"c1119","ct":1690466122,"d":3,"exp":1384450,"f":2528,"g":6,"id":306859366,"l":true,"name":"Zahhak","opt":3021,"s":[5,5,5],"st":0,"z":6},{"code":"c1049","ct":1690643630,"exp":0,"g":5,"id":313000253,"l":true,"name":"Chloe","opt":1,"st":0},{"code":"c1006","ct":1690643713,"exp":1250,"g":5,"id":313003939,"l":true,"name":"Kise","opt":1,"st":0},{"code":"c3105","ct":1690646147,"d":7,"exp":63815,"g":3,"id":313109293,"l":true,"name":"Ainos","opt":1,"st":0},{"code":"c1012","ct":1690647335,"d":6,"exp":1190,"g":4,"id":313156815,"name":"Corvus","opt":1,"st":0},{"a":true,"code":"c1074","ct":1690647930,"exp":1384450,"f":1500,"g":6,"id":313179896,"l":true,"name":"Violet","opt":1,"s":[5,1,5],"st":0,"z":4},{"code":"c1065","ct":1690882197,"d":6,"exp":522540,"f":86,"g":5,"id":319905485,"l":true,"name":"Surin","opt":1,"s":[null,null,3],"st":0,"z":5},{"code":"c3104","ct":1690882209,"d":7,"exp":3540,"g":3,"id":319905853,"l":true,"name":"Sonia","opt":1,"st":0},{"code":"c1042","ct":1690933711,"exp":0,"g":5,"id":321217705,"l":true,"name":"Tywin","opt":1,"st":0},{"code":"c1050","ct":1691026609,"exp":650125,"f":116,"g":5,"id":323638178,"l":true,"name":"Tenebria","opt":1,"s":[null,null,1],"st":0,"z":5},{"code":"c5149","ct":1691039576,"exp":1384450,"f":1722,"g":6,"id":326707479,"l":true,"name":"Lethe","opt":3001,"s":[5,5,5],"st":0,"z":6},{"code":"c1090","ct":1691040748,"exp":650125,"f":410,"g":5,"id":326831592,"l":true,"name":"Ray","opt":1,"s":[null,null,3],"st":0,"z":5},{"code":"c2073","ct":1691041751,"exp":1384450,"f":2087,"g":6,"id":326928979,"l":true,"name":"Mediator Kawerik","opt":3001,"s":[5,6,3],"st":0,"z":6},{"code":"c2003","ct":1691054570,"exp":1190,"g":4,"id":327820984,"l":true,"name":"Shadow Rose","opt":1,"st":0},{"code":"c1085","ct":1691297868,"d":6,"exp":7190,"g":4,"id":336730438,"name":"Khawazu","opt":1,"st":0},{"code":"c2019","ct":1691801868,"d":1,"exp":1384450,"f":2425,"g":6,"id":350226992,"l":true,"name":"Apocalypse Ravi","opt":3001,"s":[6,3,5],"st":0,"z":6},{"code":"c4044","ct":1691971004,"d":7,"exp":833510,"f":2039,"g":6,"id":354206748,"l":true,"name":"Magic Scholar Doris","opt":21,"s":[5,5,5],"st":0,"stree":[3,3,3,3,3,3,3,3,3,3],"z":6},{"code":"c2031","ct":1692102496,"d":6,"exp":522540,"g":5,"id":357149374,"l":true,"name":"Auxiliary Lots","opt":1,"st":0},{"code":"c1015","ct":1692263475,"exp":1250,"g":5,"id":360502881,"l":true,"name":"Baal & Sezan","opt":1,"st":0},{"code":"c3074","ct":1692263504,"d":7,"exp":840,"g":3,"id":360523635,"l":true,"name":"Gloomyrain","opt":1,"st":0},{"code":"c2037","ct":1692263514,"exp":1190,"g":4,"id":360531151,"l":true,"name":"Challenger Dominiel","opt":1,"st":0},{"code":"c6011","ct":1692263542,"d":6,"exp":1110500,"f":1644,"g":6,"id":360551102,"l":true,"name":"Last Piece Karin","opt":3001,"s":[6,7,1],"st":0,"z":6},{"code":"c2109","ct":1692264096,"exp":1384450,"f":4744,"g":6,"id":360878989,"l":true,"name":"Navy Captain Landy","opt":3001,"s":[5,5,5],"st":0,"z":6},{"code":"c3135","ct":1692575971,"d":7,"exp":2040,"g":3,"id":376153919,"l":true,"name":"Hasol","opt":1,"st":0},{"code":"c1106","ct":1692662581,"exp":1250,"g":5,"id":379995788,"l":true,"name":"Senya","opt":1,"st":0},{"code":"c2022","ct":1692881860,"exp":1384450,"f":1818,"g":6,"id":389494760,"l":true,"name":"Destina","opt":3001,"s":[5,3,6],"st":0,"z":6},{"code":"c1116","ct":1693457166,"exp":650125,"f":8,"g":5,"id":403357976,"l":true,"name":"Emilia","opt":1,"st":0,"z":1},{"code":"c6062","ct":1693457424,"d":6,"exp":1110500,"f":7,"g":6,"id":403476926,"l":true,"name":"Angel of Light Angelica","opt":21,"s":[4,5,5],"st":0,"z":6},{"code":"c1131","ct":1693704969,"exp":1384450,"f":1235,"g":6,"id":412803674,"l":true,"name":"Yulha","opt":1,"s":[3,null,3],"st":0,"z":6},{"code":"c1009","ct":1693958120,"exp":0,"g":5,"id":418000772,"l":true,"name":"Charlotte","opt":1,"st":0},{"code":"c1006","ct":1694179819,"exp":1250,"g":5,"id":422317877,"l":true,"name":"Kise","opt":1,"st":0},{"code":"c3003","ct":1694320891,"d":7,"exp":2640,"g":3,"id":424808145,"l":true,"name":"Kluri","opt":1,"st":0},{"code":"c2029","ct":1694669606,"exp":1190,"g":4,"id":430277824,"l":true,"name":"Roaming Warrior Leo","opt":1,"st":0},{"code":"c2079","ct":1694791065,"d":5,"exp":1384450,"f":4993,"g":6,"id":434015426,"l":true,"name":"Lionheart Cermia","opt":3021,"s":[7,1,7],"skin_code":"c2079_s01","st":0,"z":6},{"code":"c1014","ct":1694997530,"d":6,"exp":522540,"g":5,"id":440334191,"l":true,"name":"Cidd","opt":1,"s":[3,3,3],"st":0,"z":5},{"code":"c3075","ct":1695080686,"d":7,"exp":840,"g":3,"id":442609423,"l":true,"name":"Requiemroar","opt":1,"st":0},{"code":"c2070","ct":1695166090,"d":5,"exp":1384450,"f":3085,"g":6,"id":445022861,"l":true,"name":"Last Rider Krau","opt":3021,"s":[null,5,5],"skin_code":"c2070_s01","st":0,"z":6},{"code":"c2036","ct":1695254183,"exp":1190,"g":4,"id":447264619,"l":true,"name":"Troublemaker Crozet","opt":1,"st":0},{"code":"c1033","ct":1695512496,"d":6,"exp":1190,"g":4,"id":455687994,"name":"Coli","opt":1,"st":0},{"code":"c2032","ct":1695598000,"exp":1190,"g":4,"id":458646767,"l":true,"name":"Fighter Maya","opt":1,"st":0},{"code":"c1150","ct":1695730782,"d":6,"exp":1110500,"f":67,"g":6,"id":461351155,"l":true,"name":"Veronica","opt":21,"s":[5,5,5],"st":0,"z":6},{"code":"c1151","ct":1695796413,"exp":650125,"f":1619,"g":5,"id":461989175,"l":true,"name":"Nahkwol","opt":3001,"s":[null,null,3],"st":0,"z":5},{"code":"c3151","ct":1695799754,"d":4,"exp":2040,"g":3,"id":463031829,"l":true,"name":"Juni","opt":1,"st":0},{"code":"c1006","ct":1696027573,"exp":1250,"g":5,"id":471386693,"name":"Kise","opt":1,"st":0},{"code":"c3124","ct":1696082635,"d":7,"exp":392415,"f":7,"g":5,"id":473350938,"l":true,"name":"Camilla","opt":1,"s":[7,1,4],"st":0,"z":5},{"code":"c1111","ct":1696307739,"exp":1384450,"f":2956,"g":6,"id":480028811,"l":true,"name":"Eda","opt":1,"s":[null,4,5],"st":0,"z":6},{"code":"c1145","ct":1696850547,"d":3,"exp":1384450,"f":11675,"g":6,"id":490684210,"l":true,"name":"Brieg","opt":3021,"s":[3,3,5],"st":0,"z":6},{"code":"c5089","ct":1697096248,"d":1,"exp":1384450,"f":1717,"g":6,"id":494187001,"l":true,"name":"Midnight Gala Lilias","opt":3021,"s":[5,4,5],"st":0,"z":6},{"code":"c4071","ct":1697763208,"d":9,"exp":63815,"g":3,"id":502450559,"l":true,"name":"Zealot Carmainerose","opt":1,"st":0,"stree":[3,3,3,3,3,3,3,3,3,3],"z":1},{"code":"c2014","ct":1697896641,"exp":1190,"g":4,"id":503988683,"l":true,"name":"Assassin Cidd","opt":1,"st":0},{"code":"c1099","ct":1697989269,"exp":1250,"g":5,"id":504872654,"l":true,"name":"Command Model Laika","opt":1,"st":0},{"code":"c1039","ct":1699454152,"exp":1250,"g":5,"id":518417259,"name":"Haste","opt":1,"st":0},{"code":"c2091","ct":1699454593,"exp":1384450,"f":2658,"g":6,"id":518421029,"l":true,"name":"Astromancer Elena","opt":3001,"s":[null,1,7],"st":0,"z":6},{"code":"c5050","ct":1699503554,"exp":1250,"g":5,"id":518779568,"l":true,"name":"Fairytale Tenebria","opt":1,"st":0},{"code":"c5024","ct":1699503567,"exp":1384450,"f":2788,"g":6,"id":518782830,"l":true,"name":"Summertime Iseria","opt":3001,"s":[4,5,5],"st":0,"z":6},{"code":"c1081","ct":1699673015,"exp":0,"g":5,"id":522853044,"l":true,"name":"Cerise","opt":1,"st":0},{"code":"c1016","ct":1699891499,"exp":1384450,"f":1596,"g":6,"id":525461035,"l":true,"name":"Yufine","opt":3001,"s":[6],"st":0,"z":6},{"code":"c3157","ct":1700613919,"d":5,"exp":840,"g":3,"id":534405026,"l":true,"name":"Ezra","opt":1,"st":0},{"code":"c2005","ct":1700787287,"exp":1190,"g":4,"id":536961122,"l":true,"name":"Celestial Mercedes","opt":1,"st":0},{"code":"c1126","ct":1701226044,"exp":1250,"g":5,"id":541108842,"l":true,"name":"Lua","opt":1,"st":0},{"code":"c2017","ct":1701667435,"d":2,"exp":228480,"f":39,"g":4,"id":545449824,"l":true,"name":"Shooting Star Achates","opt":1,"st":0,"z":3},{"code":"c1123","ct":1701925777,"d":5,"exp":0,"g":5,"id":547723200,"l":true,"name":"Shuna","opt":1,"st":0},{"code":"c1121","ct":1701952015,"exp":650125,"f":1658,"g":5,"id":549294853,"l":true,"name":"Rimuru","opt":3001,"s":[null,null,3],"st":0,"z":5},{"code":"c2042","ct":1702511722,"d":1,"exp":1384450,"f":1523,"g":6,"id":559859822,"l":true,"name":"Ambitious Tywin","opt":3021,"s":[2,4,6],"st":0,"z":6},{"code":"c4158","ct":1702511722,"d":7,"exp":833510,"f":543,"g":6,"id":559859824,"l":true,"name":"Inheritor Amiki","opt":21,"s":[6,3,6],"st":0,"stree":[3,3,3,3,3,3,3,3,3,3],"z":6},{"code":"c2020","ct":1702596476,"d":7,"exp":1110500,"f":2237,"g":6,"id":562155721,"l":true,"name":"Watcher Schuri","opt":1,"s":[3,4,5],"st":0,"z":6},{"code":"c1029","ct":1702774005,"d":6,"exp":1190,"f":1403,"g":4,"id":565017550,"l":true,"name":"Leo","opt":1,"st":0},{"code":"c2062","ct":1702873261,"d":6,"exp":1110500,"f":380,"g":6,"id":566472035,"l":true,"name":"Sinful Angelica","opt":21,"s":[null,5,1],"st":0,"z":6},{"code":"c1089","ct":1703033080,"exp":0,"g":5,"id":568417281,"l":true,"name":"Lilias","opt":1,"st":0},{"code":"c1101","ct":1703052783,"exp":1384450,"f":1598,"g":6,"id":568689715,"l":true,"name":"Choux","opt":3001,"s":[3,3,3],"st":0,"z":6},{"code":"c1090","ct":1703297447,"exp":1250,"g":5,"id":571546673,"name":"Ray","opt":1,"st":0},{"code":"c1032","ct":1703898752,"d":6,"exp":1190,"g":4,"id":582763835,"name":"Maya","opt":1,"st":0},{"code":"c1046","ct":1703998290,"exp":1384450,"f":17,"g":6,"id":583954927,"l":true,"name":"Lidica","opt":1,"s":[null,5,5],"st":0,"z":6},{"code":"c3084","ct":1704256140,"exp":0,"g":3,"id":586523410,"l":true,"name":"Kikirat v2","opt":1,"st":0},{"code":"c3153","ct":1704791353,"d":7,"exp":840,"g":3,"id":590699636,"l":true,"name":"Lilka","opt":1,"st":0},{"code":"c1154","ct":1704791359,"exp":1384450,"f":134,"g":6,"id":590699704,"l":true,"name":"Byblis","opt":1,"s":[2,4,3],"st":0,"z":6},{"code":"c2047","ct":1704850850,"exp":1384450,"f":2160,"g":6,"id":591089796,"l":true,"name":"Martial Artist Ken","opt":3001,"s":[6,3,6],"st":0,"z":6},{"code":"c1043","ct":1704934971,"d":6,"exp":1190,"g":4,"id":591660134,"name":"Romann","opt":1,"st":0},{"code":"c2069","ct":1705372316,"d":5,"exp":1384450,"f":3986,"g":6,"id":596366779,"l":true,"name":"Eternal Wanderer Ludwig","opt":3021,"s":[5,5,5],"st":0,"z":6},{"code":"c2004","ct":1705375717,"exp":1190,"g":4,"id":596392703,"l":true,"name":"Wanderer Silk","opt":1,"st":0},{"code":"c2035","ct":1706586624,"d":7,"exp":1110500,"f":3,"g":6,"id":604874070,"l":true,"name":"General Purrgis","opt":21,"s":[null,2,4],"st":0,"z":6},{"code":"c2036","ct":1707291054,"exp":1190,"g":4,"id":608926381,"name":"Troublemaker Crozet","opt":1,"st":0},{"code":"c5071","ct":1707877825,"exp":1384450,"f":1,"g":6,"id":613630545,"l":true,"name":"Seaside Bellona","opt":1,"s":[2,3,6],"st":0,"z":6},{"code":"c1133","ct":1708571274,"d":5,"exp":1384450,"f":3162,"g":6,"id":618609916,"l":true,"name":"Zio","opt":3021,"s":[5,5,3],"st":0,"z":6},{"code":"c1144","ct":1708698197,"d":1,"exp":1384450,"f":2235,"g":6,"id":620426700,"l":true,"name":"Abigail","opt":3001,"s":[null,1,3],"st":0,"z":6},{"code":"c2028","ct":1708917457,"exp":1190,"g":4,"id":621886932,"l":true,"name":"Kitty Clarissa","opt":1,"st":0},{"code":"c1127","ct":1709107592,"exp":50750,"g":5,"id":622922254,"l":true,"name":"Taeyou","opt":1,"st":0,"z":2},{"code":"c2065","ct":1709697105,"exp":1190,"g":4,"id":625911964,"name":"Tempest Surin","opt":1,"st":0},{"code":"c1082","ct":1709860912,"exp":1250,"g":5,"id":627243561,"name":"Luluca","opt":1,"st":0},{"code":"c1039","ct":1710300420,"exp":1250,"g":5,"id":629518009,"l":true,"name":"Haste","opt":1,"st":0},{"code":"c2087","ct":1711254847,"exp":1190,"g":4,"id":635778122,"l":true,"name":"Peacemaker Furious","opt":1,"st":0},{"a":true,"code":"c1091","ct":1711436821,"d":3,"exp":1384450,"f":1518,"g":6,"id":636577158,"l":true,"name":"Elena","opt":3021,"s":[null,7,2],"st":0,"z":6},{"code":"c2036","ct":1711962573,"exp":1190,"g":4,"id":639220019,"name":"Troublemaker Crozet","opt":1,"st":0},{"code":"c1055","ct":1712203434,"d":2,"exp":1384450,"f":1580,"g":6,"id":640588979,"l":true,"name":"Jenua","opt":3021,"s":[5,1,7],"st":0,"z":6},{"code":"c2053","ct":1713055321,"exp":650125,"g":5,"id":644899362,"l":true,"name":"Desert Jewel Basar","opt":1,"st":0,"z":2},{"code":"c2112","ct":1714022635,"d":1,"exp":1384450,"f":3176,"g":6,"id":649028156,"l":true,"name":"Sea Phantom Politis","opt":3021,"s":[3,7,1],"st":0,"z":6},{"code":"c1155","ct":1714622058,"d":5,"exp":0,"g":5,"id":653128055,"l":true,"name":"Ainz Ooal Gown","opt":1,"st":0},{"code":"c1156","ct":1714653245,"exp":1384450,"f":6,"g":6,"id":654043337,"l":true,"name":"Albedo","opt":1,"s":[3,5,4],"st":0,"z":6},{"code":"c1006","ct":1714657205,"exp":1250,"g":5,"id":654110906,"name":"Kise","opt":1,"st":0},{"code":"c1030","ct":1714661387,"exp":0,"g":5,"id":654185623,"l":true,"name":"Yuna","opt":1,"st":0},{"code":"c3054","ct":1714661436,"d":7,"exp":840,"g":3,"id":654186475,"l":true,"name":"Elson","opt":1,"st":0},{"code":"c1010","ct":1714793892,"d":6,"exp":1190,"g":4,"id":656042400,"l":true,"name":"Zerato","opt":1,"st":0},{"code":"c3163","ct":1715042923,"exp":392415,"f":4,"g":5,"id":659243748,"l":true,"name":"Leah","opt":1,"s":[null,6,3],"st":0,"z":4},{"code":"c1157","ct":1715332266,"exp":50750,"g":5,"id":663498964,"l":true,"name":"Shalltear","opt":1,"st":0,"z":2},{"a":true,"code":"c1142","ct":1715937546,"d":1,"exp":1384450,"f":1507,"g":6,"id":669363338,"l":true,"name":"Eligos","opt":3001,"s":[7,1,7],"st":0,"z":6},{"code":"c2020","ct":1716340623,"exp":1190,"g":4,"id":672399111,"name":"Watcher Schuri","opt":1,"st":0},{"code":"c6014","ct":1717121846,"d":6,"exp":1190,"g":4,"id":677869691,"l":true,"name":"Wandering Prince Cidd","opt":1,"st":0},{"code":"c1147","ct":1717744352,"exp":1250,"g":5,"id":683451634,"l":true,"name":"Fumyr","opt":1,"st":0},{"code":"c1125","ct":1717813570,"exp":1250,"g":5,"id":683971110,"l":true,"name":"Peira","opt":1,"st":0},{"code":"c2029","ct":1717861743,"d":6,"exp":1190,"g":4,"id":684343329,"l":true,"name":"Roaming Warrior Leo","opt":1,"st":0},{"a":true,"code":"c1161","ct":1718855758,"exp":1384450,"f":1725,"g":6,"id":690904230,"l":true,"name":"Immortal Wukong","opt":1,"s":[4,4,4],"st":0,"z":6},{"code":"c1003","ct":1719022190,"exp":1190,"g":4,"id":694125633,"name":"Rose","opt":1,"st":0},{"code":"c3162","ct":1719219351,"d":2,"exp":840,"g":3,"id":697089179,"l":true,"name":"Bernard","opt":1,"st":0},{"code":"c2086","ct":1719278174,"exp":1190,"g":4,"id":697938268,"name":"Great Chief Khawana","opt":1,"st":0},{"code":"c2021","ct":1719449435,"exp":1190,"g":4,"id":700466061,"name":"Blaze Dingo","opt":1,"st":0},{"code":"c1103","ct":1719729849,"d":1,"exp":1384450,"f":1510,"g":6,"id":704271358,"l":true,"name":"Celine","opt":3021,"s":[4,5,5],"st":0,"z":6},{"code":"c1069","ct":1719887339,"exp":1250,"g":5,"id":705706310,"l":true,"name":"Ludwig","opt":1,"st":0},{"code":"c1159","ct":1719887339,"exp":1384450,"f":2,"g":6,"id":705706311,"l":true,"name":"Laia","opt":1,"s":[3,3,5],"st":0,"z":6},{"code":"c1035","ct":1720502364,"exp":0,"g":4,"id":709260574,"name":"Purrgis","opt":1,"st":0},{"code":"c2066","ct":1721290967,"d":2,"exp":1384450,"f":2455,"g":6,"id":713583798,"l":true,"name":"New Moon Luna","opt":3021,"s":[4,4,3],"st":0,"z":6},{"code":"c1148","ct":1721292260,"d":1,"exp":1384450,"f":7,"g":6,"id":713631381,"l":true,"name":"Elvira","opt":21,"s":[null,null,3],"st":0,"z":6},{"code":"c1028","ct":1721292366,"exp":1190,"g":4,"id":713635239,"name":"Clarissa","opt":1,"st":0},{"code":"c1037","ct":1721292366,"exp":1190,"g":4,"id":713635240,"l":true,"name":"Dominiel","opt":1,"st":0},{"code":"c5009","ct":1721293423,"exp":33000,"g":5,"id":713670191,"l":true,"name":"Summer Break Charlotte","opt":1,"st":0,"z":2},{"code":"c2085","ct":1721315297,"exp":1190,"g":4,"id":714211978,"l":true,"name":"Inferno Khawazu","opt":1,"st":0},{"code":"c1019","ct":1721655579,"d":1,"exp":1250,"g":5,"id":717223364,"l":true,"name":"Ravi","opt":1,"st":0},{"code":"c1066","ct":1722101719,"exp":0,"g":5,"id":720757642,"l":true,"name":"Luna","opt":1,"st":0},{"code":"c2099","ct":1722403018,"exp":1250,"g":5,"id":722768494,"l":true,"name":"Architect Laika","opt":1,"st":0,"z":1},{"code":"c3155","ct":1723354015,"d":5,"exp":840,"g":3,"id":727911008,"l":true,"name":"Suthan","opt":1,"st":0},{"code":"c6008","ct":1723724804,"exp":1190,"g":4,"id":729505568,"name":"Bad Cat Armin","opt":1,"st":0},{"code":"c1143","ct":1724576642,"exp":0,"g":5,"id":734132565,"l":true,"name":"Amid","opt":1,"st":0,"z":1},{"code":"c2071","ct":1724916247,"exp":1384450,"f":1302,"g":6,"id":736028830,"l":true,"name":"Lone Crescent Bellona","opt":1,"s":[3,4,5],"st":0,"z":6},{"code":"c2003","ct":1725327062,"exp":1190,"g":4,"id":738613926,"name":"Shadow Rose","opt":1,"st":0},{"code":"c2011","ct":1725327096,"d":6,"exp":1110500,"f":1765,"g":6,"id":738614105,"l":true,"name":"Blood Blade Karin","opt":3021,"s":[3,5,5],"st":0,"z":6},{"code":"c2085","ct":1725354805,"exp":1190,"g":4,"id":738790497,"name":"Inferno Khawazu","opt":1,"st":0},{"code":"c1163","ct":1725505512,"d":1,"exp":1384450,"f":1975,"g":6,"id":739641017,"l":true,"name":"Frida","opt":3021,"s":[null,3,6],"st":0,"z":6},{"code":"c1072","ct":1725848316,"exp":0,"g":5,"id":742543115,"name":"Sigret","opt":1,"st":0},{"code":"c1006","ct":1726127848,"exp":0,"g":5,"id":745533074,"name":"Kise","opt":1,"st":0},{"code":"c6017","ct":1726244362,"exp":1190,"g":4,"id":747633084,"l":true,"name":"Infinite Horizon Achates","opt":1,"st":0},{"code":"c2005","ct":1726270592,"exp":1190,"g":4,"id":748202380,"name":"Celestial Mercedes","opt":1,"st":0},{"code":"c2011","ct":1726530342,"exp":1190,"g":4,"id":753164340,"name":"Blood Blade Karin","opt":1,"st":0},{"code":"c2021","ct":1726703776,"exp":1190,"g":4,"id":756139227,"name":"Blaze Dingo","opt":1,"st":0},{"code":"c6037","ct":1726789914,"exp":1190,"g":4,"id":757618535,"name":"Moon Bunny Dominiel","opt":1,"st":0},{"code":"c2031","ct":1726832217,"exp":1190,"g":4,"id":758299168,"name":"Auxiliary Lots","opt":1,"st":0},{"code":"c2010","ct":1726967321,"exp":1190,"g":4,"id":760775065,"name":"Champion Zerato","opt":1,"st":0},{"code":"c6017","ct":1727135906,"exp":1190,"g":4,"id":764105337,"name":"Infinite Horizon Achates","opt":1,"st":0},{"code":"c2018","ct":1727223703,"exp":1190,"g":4,"id":765454999,"name":"Guider Aither","opt":1,"st":0},{"code":"c2008","ct":1727223721,"d":3,"exp":1190,"g":4,"id":765455465,"name":"Crimson Armin","opt":1,"st":0},{"code":"c1110","ct":1727227245,"exp":0,"g":5,"id":765537981,"l":true,"name":"Flan","opt":1,"st":0,"z":1},{"code":"c2035","ct":1727394517,"exp":1190,"g":4,"id":767590407,"name":"General Purrgis","opt":1,"st":0},{"code":"c1009","ct":1727394592,"exp":0,"g":5,"id":767592356,"name":"Charlotte","opt":1,"st":0},{"code":"c1073","ct":1727508027,"exp":0,"g":5,"id":769109420,"l":true,"name":"Kawerik","opt":1,"st":0},{"code":"c2005","ct":1727565708,"exp":1190,"g":4,"id":769782467,"name":"Celestial Mercedes","opt":1,"st":0},{"code":"c2031","ct":1727565722,"exp":1190,"g":4,"id":769782856,"name":"Auxiliary Lots","opt":1,"st":0},{"code":"c1104","ct":1727572976,"d":1,"exp":1384450,"f":2004,"g":6,"id":769932771,"name":"Mort","opt":3021,"s":[5,5,5],"st":0,"z":6},{"code":"c1029","ct":1727748919,"exp":0,"g":4,"id":771961989,"name":"Leo","opt":1,"st":0},{"code":"c6011","ct":1727924536,"exp":1190,"g":4,"id":774326816,"name":"Last Piece Karin","opt":1,"st":0},{"code":"c1158","ct":1727924557,"exp":13782,"f":9,"g":5,"id":774330313,"name":"Fenris","opt":1,"st":0},{"code":"c3165","ct":1728175276,"d":7,"exp":840,"g":3,"id":777665978,"l":true,"name":"Pernilla","opt":1,"st":0},{"code":"c2028","ct":1728175279,"exp":1190,"g":4,"id":777666018,"name":"Kitty Clarissa","opt":1,"st":0},{"code":"c2101","ct":1728175291,"exp":1384450,"f":1431,"g":6,"id":777666204,"l":true,"name":"Urban Shadow Choux","opt":1,"s":[5,5,5],"st":0,"z":6},{"code":"c2043","ct":1728407903,"exp":1190,"g":4,"id":780423488,"name":"Benevolent Romann","opt":1,"st":0},{"code":"c2015","ct":1728465216,"exp":1250,"g":5,"id":781143454,"l":true,"name":"Sage Baal & Sezan","opt":1,"st":0},{"code":"c2072","ct":1728465216,"exp":1250,"g":5,"id":781143455,"l":true,"name":"Operator Sigret","opt":1,"st":0,"z":1},{"code":"c1079","ct":1728483165,"exp":0,"g":5,"id":781345622,"name":"Cermia","opt":1,"st":0},{"code":"c2002","ct":1728516235,"exp":1384450,"f":1184,"g":6,"id":781837305,"l":true,"name":"Fallen Cecilia","opt":1,"s":[3,5,3],"st":0,"z":6},{"code":"c2015","ct":1728602465,"exp":1250,"g":5,"id":783871215,"l":true,"name":"Sage Baal & Sezan","opt":1,"st":0,"z":1},{"code":"c1100","ct":1728623353,"d":5,"exp":1384450,"f":2926,"g":6,"id":784315107,"l":true,"name":"Alencia","opt":3021,"s":[5,5,5],"st":0,"z":6},{"code":"c1048","ct":1728634897,"exp":0,"g":5,"id":784460720,"name":"Aramintha","opt":1,"st":0},{"code":"c1003","ct":1729055377,"exp":1190,"g":4,"id":788942610,"name":"Rose","opt":1,"st":0},{"code":"c1125","ct":1729055386,"exp":1250,"g":5,"id":788942664,"name":"Peira","opt":1,"st":0},{"code":"c1160","ct":1729055403,"exp":1250,"g":5,"id":788942790,"name":"Birgitta","opt":1,"st":0},{"code":"c1080","ct":1729065887,"exp":1250,"g":5,"id":789011818,"name":"Pavel","opt":1,"st":0},{"code":"c2032","ct":1729512823,"d":2,"exp":1190,"g":4,"id":792704116,"name":"Fighter Maya","opt":1,"st":0},{"code":"c2020","ct":1729512857,"exp":1190,"g":4,"id":792704331,"name":"Watcher Schuri","opt":1,"st":0},{"code":"c1007","ct":1729657821,"d":5,"exp":1384450,"f":1744,"g":6,"id":793619248,"name":"Vildred","opt":3001,"s":[5,5,5],"st":0,"z":6},{"code":"c1038","ct":1729921198,"d":2,"exp":1384450,"f":1512,"g":6,"id":795195383,"l":true,"name":"Sez","opt":3021,"s":[5,5,5],"st":0,"z":6},{"code":"c1096","ct":1729921234,"exp":0,"g":5,"id":795195612,"name":"Melissa","opt":1,"st":0},{"code":"c5110","ct":1730352170,"d":5,"exp":1384450,"f":2568,"g":6,"id":798777729,"l":true,"name":"Afternoon Soak Flan","opt":3021,"s":[5,5,5],"st":0,"z":6},{"code":"c1153","ct":1730386484,"d":1,"exp":1384450,"f":1566,"g":6,"id":799495489,"l":true,"name":"Harsetti","opt":3021,"s":[7,null,8],"st":0,"z":6},{"code":"c1014","ct":1730719416,"exp":1190,"g":4,"id":802066027,"name":"Cidd","opt":1,"st":0},{"code":"c2021","ct":1730768489,"exp":1190,"g":4,"id":802422024,"name":"Blaze Dingo","opt":1,"st":0},{"code":"c1111","ct":1731232616,"exp":1250,"g":5,"id":806245922,"name":"Eda","opt":1,"st":0},{"code":"c2013","ct":1732608860,"exp":1190,"g":4,"id":816373029,"name":"Assassin Cartuja","opt":1,"st":0},{"code":"c1031","ct":1732623781,"d":6,"exp":1190,"g":4,"id":816434203,"l":true,"name":"Lots","opt":1,"st":0},{"code":"c2053","ct":1733034882,"exp":1250,"g":5,"id":819542674,"name":"Desert Jewel Basar","opt":1,"st":0},{"code":"c3160","ct":1733189362,"exp":840,"g":3,"id":821096066,"l":true,"name":"Revna","opt":1,"st":0},{"code":"c2014","ct":1733965880,"exp":1190,"g":4,"id":825069679,"name":"Assassin Cidd","opt":1,"st":0},{"code":"c1047","ct":1733983381,"exp":1250,"g":5,"id":825212632,"name":"Ken","opt":1,"st":0},{"code":"c1015","ct":1734059131,"exp":1250,"g":5,"id":825583290,"name":"Baal & Sezan","opt":1,"st":0},{"a":true,"code":"c1022","ct":1735030551,"exp":1384450,"f":1503,"g":6,"id":829105288,"l":true,"name":"Ruele of Light","opt":3001,"s":[4,5,2],"st":0,"z":6},{"code":"c1162","ct":1735198134,"exp":1384450,"f":537,"g":6,"id":830235768,"l":true,"name":"Young Senya","opt":1,"s":[null,5,4],"st":0,"z":6},{"code":"c1102","ct":1735371046,"exp":1250,"g":5,"id":831124668,"name":"Roana","opt":1,"st":0},{"code":"c1020","ct":1735800397,"d":6,"exp":1190,"g":4,"id":832810039,"name":"Schuri","opt":1,"st":0},{"code":"c1095","ct":1736613290,"exp":1250,"g":5,"id":837159170,"name":"Lilibet","opt":1,"st":0},{"code":"c1006","ct":1736901651,"exp":0,"g":5,"id":839183431,"name":"Kise","opt":1,"st":0},{"code":"c1009","ct":1737423137,"exp":0,"g":5,"id":841561890,"name":"Charlotte","opt":1,"st":0},{"code":"c2037","ct":1737702815,"exp":1190,"g":4,"id":843031086,"name":"Challenger Dominiel","opt":1,"st":0},{"code":"c2036","ct":1737803188,"exp":1190,"g":4,"id":843551487,"name":"Troublemaker Crozet","opt":1,"st":0},{"code":"c1053","ct":1738044569,"exp":1250,"g":5,"id":844765495,"name":"Basar","opt":1,"st":0},{"code":"c2038","ct":1738325778,"exp":1250,"g":5,"id":845965646,"l":true,"name":"Specimen Sez","opt":1,"st":0,"z":1},{"code":"c6017","ct":1738634839,"exp":1190,"g":4,"id":846980694,"name":"Infinite Horizon Achates","opt":1,"st":0},{"code":"c1054","ct":1738637005,"exp":1190,"g":4,"id":846989211,"name":"Rin","opt":1,"st":0},{"code":"c1170","ct":1738811830,"exp":1384450,"f":3832,"g":6,"id":847822619,"l":true,"name":"Fenne","opt":3001,"s":[5,3,5],"st":0,"z":6},{"code":"c6014","ct":1738981000,"exp":1190,"g":4,"id":849101161,"name":"Wandering Prince Cidd","opt":1,"st":0},{"code":"c2086","ct":1739326517,"exp":1190,"g":4,"id":850569245,"name":"Great Chief Khawana","opt":1,"st":0},{"code":"c1085","ct":1739456625,"exp":0,"g":4,"id":851407497,"name":"Khawazu","opt":1,"st":0},{"code":"c2043","ct":1739857998,"exp":1190,"g":4,"id":853072574,"name":"Benevolent Romann","opt":1,"st":0},{"code":"c2054","ct":1740733905,"exp":1190,"g":4,"id":857679008,"name":"Crescent Moon Rin","opt":1,"st":0},{"code":"c5016","ct":1741932122,"exp":1250,"g":5,"id":865374067,"name":"Holiday Yufine","opt":1,"st":0},{"code":"c1076","ct":1742957662,"exp":0,"g":5,"id":870453193,"l":true,"name":"Diene","opt":1,"st":0},{"code":"c2020","ct":1743226650,"exp":1190,"g":4,"id":872420987,"name":"Watcher Schuri","opt":1,"st":0},{"code":"c2029","ct":1743404217,"exp":1190,"g":4,"id":874113059,"name":"Roaming Warrior Leo","opt":1,"st":0},{"code":"c2012","ct":1743468640,"exp":1250,"g":5,"id":874653614,"name":"Dark Corvus","opt":1,"st":0},{"code":"c1054","ct":1744189225,"exp":0,"g":4,"id":880181269,"name":"Rin","opt":1,"st":0},{"code":"c1006","ct":1744189225,"exp":0,"g":5,"id":880181271,"name":"Kise","opt":1,"st":0},{"code":"c1003","ct":1744189225,"exp":0,"g":4,"id":880181272,"name":"Rose","opt":1,"st":0},{"code":"c1010","ct":1744189225,"exp":0,"g":4,"id":880181274,"name":"Zerato","opt":1,"st":0},{"code":"c1006","ct":1744189225,"exp":0,"g":5,"id":880181276,"name":"Kise","opt":1,"st":0},{"code":"c1086","ct":1744435669,"exp":1190,"g":4,"id":880781768,"name":"Khawana","opt":1,"st":0},{"code":"c1095","ct":1745369706,"exp":1250,"g":5,"id":885173208,"name":"Lilibet","opt":1,"st":0},{"code":"c1166","ct":1745646313,"exp":3180,"g":4,"id":887329296,"name":"Victorika","opt":1,"st":0},{"code":"c1032","ct":1745801247,"exp":1190,"g":4,"id":888454074,"name":"Maya","opt":1,"st":0},{"code":"c3006","ct":1745802411,"exp":0,"g":3,"id":888466672,"name":"Bask","opt":1,"st":0},{"code":"c3006","ct":1745803071,"exp":0,"g":3,"id":888474090,"name":"Bask","opt":1,"st":0},{"code":"c3006","ct":1745803071,"exp":0,"g":3,"id":888474091,"name":"Bask","opt":1,"st":0},{"code":"c3006","ct":1745809525,"exp":0,"g":3,"id":888535983,"name":"Bask","opt":1,"st":0},{"code":"c3006","ct":1745809525,"exp":0,"g":3,"id":888535985,"name":"Bask","opt":1,"st":0},{"code":"c3006","ct":1745809525,"exp":0,"g":3,"id":888535988,"name":"Bask","opt":1,"st":0},{"code":"c2015","ct":1745974398,"exp":1250,"g":5,"id":889945456,"name":"Sage Baal & Sezan","opt":1,"st":0},{"code":"c1034","ct":1746072744,"d":5,"exp":1384450,"f":2587,"g":6,"id":890790459,"l":true,"name":"Straze","opt":3021,"s":[5,3,5],"st":0,"z":6},{"code":"c1088","ct":1746111807,"exp":0,"g":5,"id":891089072,"name":"Vivian","opt":1,"st":0},{"code":"c1007","ct":1746189218,"exp":1250,"g":5,"id":891521755,"name":"Vildred","opt":1,"st":0},{"code":"c1031","ct":1746241211,"exp":1190,"g":4,"id":891743321,"name":"Lots","opt":1,"st":0},{"code":"c2106","ct":1746396462,"d":1,"exp":1384450,"f":1522,"g":6,"id":892353109,"l":true,"name":"Dragon Bride Senya","opt":3021,"s":[4,1,7],"st":0,"z":6},{"code":"c2124","ct":1746679162,"d":5,"exp":1384450,"f":750,"g":6,"id":893757497,"l":true,"name":"Boss Arunka","opt":21,"s":[6,3,6],"st":0,"z":6},{"code":"c1060","ct":1746758209,"exp":1384450,"f":1,"g":6,"id":894623419,"name":"Schniel","opt":1,"s":[null,1,1],"st":0,"z":5},{"code":"c1072","ct":1747006760,"exp":0,"g":5,"id":895661551,"name":"Sigret","opt":1,"st":0},{"code":"c1118","ct":1747093837,"exp":1250,"g":5,"id":895977706,"name":"Ran","opt":1,"st":0},{"code":"c1168","ct":1747311994,"exp":1384450,"f":432,"g":6,"id":897188455,"l":true,"name":"Rinak","opt":1,"s":[null,5,5],"st":0,"z":6},{"code":"c5004","ct":1747608371,"exp":0,"g":5,"id":898222350,"name":"Archdemon's Shadow","opt":1,"st":0},{"code":"c5070","ct":1747887832,"exp":650125,"f":364,"g":5,"id":898971885,"l":true,"name":"Guard Captain Krau","opt":1,"st":0,"z":1},{"code":"c5046","ct":1747901013,"exp":1384450,"f":15,"g":6,"id":899011010,"l":true,"name":"Blooming Lidica","opt":1,"s":[3,5,3],"st":0,"z":6},{"code":"c1097","ct":1747993818,"exp":0,"g":5,"id":899502338,"name":"Bomb Model Kanna","opt":1,"st":0},{"code":"c1146","ct":1747996839,"exp":1384450,"f":11,"g":6,"id":899521626,"l":true,"name":"Benimaru","opt":1,"s":[null,4,5],"st":0,"z":6},{"code":"c6017","ct":1748311835,"exp":1190,"g":4,"id":901890162,"name":"Infinite Horizon Achates","opt":1,"st":0},{"code":"c1012","ct":1749028123,"exp":0,"g":4,"id":904716030,"name":"Corvus","opt":1,"st":0},{"code":"c1085","ct":1749028123,"exp":0,"g":4,"id":904716031,"name":"Khawazu","opt":1,"st":0},{"code":"c1054","ct":1749028123,"exp":0,"g":4,"id":904716033,"name":"Rin","opt":1,"st":0},{"code":"c1085","ct":1749028123,"exp":0,"g":4,"id":904716034,"name":"Khawazu","opt":1,"st":0},{"code":"c1099","ct":1749028123,"exp":0,"g":5,"id":904716035,"name":"Command Model Laika","opt":1,"st":0},{"code":"c1011","ct":1749028123,"exp":0,"g":4,"id":904716036,"name":"Karin","opt":1,"st":0},{"code":"c1008","ct":1749028123,"exp":0,"g":4,"id":904716037,"name":"Armin","opt":1,"st":0},{"code":"c1017","ct":1749028123,"exp":0,"g":4,"id":904716038,"name":"Achates","opt":1,"st":0},{"code":"c1004","ct":1749028123,"exp":0,"g":4,"id":904716039,"name":"Silk","opt":1,"st":0},{"code":"c1065","ct":1749106956,"exp":1190,"g":4,"id":904970815,"name":"Surin","opt":1,"st":0},{"code":"c1029","ct":1749620335,"exp":1190,"g":4,"id":907241836,"name":"Leo","opt":1,"st":0},{"code":"c1065","ct":1749775144,"exp":1190,"g":4,"id":908262329,"name":"Surin","opt":1,"st":0},{"code":"c1085","ct":1749869798,"exp":0,"g":4,"id":908791603,"name":"Khawazu","opt":1,"st":0},{"code":"c1004","ct":1749870553,"exp":1190,"g":4,"id":908796189,"name":"Silk","opt":1,"st":0},{"code":"c2087","ct":1749905167,"exp":1190,"g":4,"id":908941809,"name":"Peacemaker Furious","opt":1,"st":0},{"code":"c1028","ct":1749908653,"exp":1190,"g":4,"id":908956490,"name":"Clarissa","opt":1,"st":0},{"code":"c1008","ct":1750311172,"exp":0,"g":4,"id":910891387,"name":"Armin","opt":1,"st":0},{"code":"c1035","ct":1750311172,"exp":0,"g":4,"id":910891388,"name":"Purrgis","opt":1,"st":0},{"code":"c1003","ct":1750311501,"exp":1190,"g":4,"id":910908244,"name":"Rose","opt":1,"st":0},{"code":"c1096","ct":1750423108,"exp":1250,"g":5,"id":912409120,"name":"Melissa","opt":1,"st":0},{"code":"c2087","ct":1750483271,"exp":1190,"g":4,"id":912947591,"name":"Peacemaker Furious","opt":1,"st":0},{"code":"c1004","ct":1750483271,"exp":1190,"g":4,"id":912947593,"name":"Silk","opt":1,"st":0},{"code":"c1013","ct":1750735062,"exp":1190,"g":4,"id":914955758,"name":"Cartuja","opt":1,"st":0},{"code":"c1087","ct":1750774024,"exp":0,"g":4,"id":915209641,"name":"Furious","opt":1,"st":0},{"code":"c1004","ct":1750775239,"exp":1190,"g":4,"id":915219532,"name":"Silk","opt":1,"st":0},{"code":"c1011","ct":1750945159,"exp":1190,"g":4,"id":916420780,"name":"Karin","opt":1,"st":0},{"code":"c2004","ct":1750945182,"exp":1190,"g":4,"id":916420883,"name":"Wanderer Silk","opt":1,"st":0},{"code":"c2036","ct":1750945190,"exp":1190,"g":4,"id":916420926,"name":"Troublemaker Crozet","opt":1,"st":0},{"code":"c1065","ct":1751125444,"exp":0,"g":4,"id":917396476,"name":"Surin","opt":1,"st":0},{"code":"c2005","ct":1751125478,"exp":1190,"g":4,"id":917396695,"name":"Celestial Mercedes","opt":1,"st":0},{"code":"c1069","ct":1751261450,"exp":0,"g":5,"id":918192152,"name":"Ludwig","opt":1,"st":0},{"code":"c3033","ct":1751369082,"exp":840,"g":3,"id":918642787,"name":"Mucacha","opt":1,"st":0},{"code":"c3033","ct":1751369082,"exp":840,"g":3,"id":918642788,"name":"Mucacha","opt":1,"st":0},{"code":"c3071","ct":1751369082,"exp":840,"g":3,"id":918642789,"name":"Carmainerose","opt":1,"st":0}]]} diff --git a/output_raw_e7.json b/output_raw_e7.json deleted file mode 100644 index 12f5e41..0000000 --- a/output_raw_e7.json +++ /dev/null @@ -1,134423 +0,0 @@ -{ - "data": [ - { - "code": "efm03", - "ct": 1687231721, - "e": 152894, - "g": 4, - "id": 4462915, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "p": 713583798, - "s": "ff96", - "sk": 5 - }, - { - "code": "ef316", - "ct": 1687231721, - "e": 10590, - "g": 3, - "id": 4462919, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 16 - ], - [ - "max_hp", - 14 - ] - ], - "p": 28393107, - "s": "aa8b", - "sk": 5 - }, - { - "code": "efk04", - "ct": 1687231721, - "e": 156352, - "g": 4, - "id": 4462920, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "6ae7", - "sk": 5 - }, - { - "code": "ef303", - "ct": 1687231749, - "e": 108949, - "g": 3, - "id": 4487754, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 14 - ], - [ - "max_hp", - 21 - ] - ], - "p": 326928979, - "s": "c2cf", - "sk": 5 - }, - { - "code": "ef304", - "ct": 1687235956, - "e": 11769, - "g": 3, - "id": 8038085, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 14 - ], - [ - "max_hp", - 21 - ] - ], - "s": "cc2c", - "sk": 4 - }, - { - "code": "efw15", - "ct": 1687265403, - "e": 14550, - "g": 4, - "id": 29215102, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "2cd3", - "sk": 5 - }, - { - "code": "efm20", - "ct": 1687266469, - "g": 5, - "id": 30030238, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "s": "2cca" - }, - { - "code": "efh04", - "ct": 1687311955, - "e": 161371, - "g": 4, - "id": 52862619, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "p": 90857803, - "s": "fffa", - "sk": 5 - }, - { - "code": "ef302", - "ct": 1687321001, - "e": 10125, - "g": 3, - "id": 58159013, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 16 - ], - [ - "max_hp", - 14 - ] - ], - "s": "4933", - "sk": 5 - }, - { - "code": "ef317", - "ct": 1687357169, - "e": 109476, - "g": 3, - "id": 79617377, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 16 - ], - [ - "max_hp", - 14 - ] - ], - "p": 49161666, - "s": "924e", - "sk": 5 - }, - { - "code": "ef317", - "ct": 1687395297, - "e": 108123, - "g": 3, - "id": 95763759, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 16 - ], - [ - "max_hp", - 14 - ] - ], - "s": "9408", - "sk": 5 - }, - { - "code": "efr03", - "ct": 1687481111, - "e": 44380, - "g": 4, - "id": 138094604, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "p": 140659207, - "s": "47f0", - "sk": 5 - }, - { - "code": "ef434", - "ct": 1687531495, - "g": 4, - "id": 165469249, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "5b5b", - "sk": 5 - }, - { - "code": "efm14", - "ct": 1687568420, - "g": 5, - "id": 179062892, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "34d0" - }, - { - "code": "efm04", - "ct": 1687610151, - "e": 154068, - "g": 4, - "id": 201087466, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "p": 99507012, - "s": "faac", - "sk": 5 - }, - { - "code": "efk03", - "ct": 1687613863, - "e": 165462, - "g": 4, - "id": 203042400, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "p": 412803674, - "s": "0", - "sk": 5 - }, - { - "code": "efk09", - "ct": 1687646880, - "e": 34686, - "g": 5, - "id": 214521843, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 110838566, - "s": "62fb" - }, - { - "code": "efk02", - "ct": 1687702277, - "e": 204655, - "g": 5, - "id": 239225398, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "p": 360878989, - "s": "219d", - "sk": 5 - }, - { - "code": "efh11", - "ct": 1687739825, - "g": 5, - "id": 251781195, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "a150" - }, - { - "code": "efa03", - "ct": 1687743517, - "e": 27005, - "g": 4, - "id": 253342697, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "p": 313179896, - "s": "5b1b", - "sk": 5 - }, - { - "code": "ef317", - "ct": 1687770420, - "e": 118092, - "g": 3, - "id": 265405741, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 16 - ], - [ - "max_hp", - 14 - ] - ], - "p": 6911147, - "s": "9b5a", - "sk": 5 - }, - { - "code": "efh05", - "ct": 1687821204, - "e": 153078, - "g": 4, - "id": 284790173, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "p": 636577158, - "s": "b92c", - "sk": 5 - }, - { - "code": "efr04", - "ct": 1687831642, - "g": 4, - "id": 288784747, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "fe75" - }, - { - "code": "ef401", - "ct": 1687873809, - "e": 2623, - "g": 4, - "id": 308004433, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "2e70", - "sk": 2 - }, - { - "code": "efm05", - "ct": 1687923488, - "e": 30941, - "g": 4, - "id": 324012612, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "eac1" - }, - { - "code": "efh03", - "ct": 1688397489, - "e": 152274, - "g": 4, - "id": 467600970, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "p": 354206748, - "s": "9b16", - "sk": 5 - }, - { - "code": "efk14", - "ct": 1688431238, - "e": 35678, - "g": 5, - "id": 473956465, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "fb25" - }, - { - "code": "efm23", - "ct": 1688703519, - "e": 39408, - "g": 5, - "id": 530284598, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "p": 6844892, - "s": "4e82", - "sk": 5 - }, - { - "code": "efa20", - "ct": 1688710402, - "e": 216472, - "g": 5, - "id": 532877438, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 158971995, - "s": "914b", - "sk": 5 - }, - { - "code": "efw20", - "ct": 1688735763, - "e": 35679, - "g": 5, - "id": 542128629, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "f8e" - }, - { - "code": "efa03", - "ct": 1688735777, - "e": 154179, - "g": 4, - "id": 542134241, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "4120", - "sk": 5 - }, - { - "code": "efk02", - "ct": 1688772497, - "e": 34884, - "g": 5, - "id": 551026028, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "p": 490684210, - "s": "5f2c" - }, - { - "code": "efh02", - "ct": 1688886117, - "g": 5, - "id": 575977182, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "s": "f4fe" - }, - { - "code": "efh11", - "ct": 1688886154, - "e": 39256, - "g": 5, - "id": 575989978, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 31856726, - "s": "a328" - }, - { - "code": "ef431", - "ct": 1689124042, - "e": 5571, - "g": 4, - "id": 627827153, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "0", - "sk": 4 - }, - { - "code": "efh07", - "ct": 1689345081, - "e": 46173, - "g": 5, - "id": 674145277, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "p": 226377978, - "s": "3f61" - }, - { - "code": "efh02", - "ct": 1689475014, - "g": 5, - "id": 696581680, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "s": "1cb9" - }, - { - "code": "efh19", - "ct": 1689845857, - "e": 34263, - "g": 5, - "id": 759108554, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 279573776, - "s": "f0aa" - }, - { - "code": "ef432", - "ct": 1689846605, - "e": 160557, - "g": 4, - "id": 759344627, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 36 - ] - ], - "p": 890790459, - "s": "9599", - "sk": 5 - }, - { - "code": "efr11", - "ct": 1689863852, - "e": 10304, - "g": 4, - "id": 763676876, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "p": 48982864, - "s": "2f80", - "sk": 5 - }, - { - "code": "ef504", - "ct": 1689947152, - "e": 203196, - "g": 5, - "id": 784612780, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 640588979, - "s": "0", - "sk": 5 - }, - { - "code": "efa13", - "ct": 1690156149, - "e": 40223, - "g": 5, - "id": 821808690, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 360551102, - "s": "e15" - }, - { - "code": "efw31", - "ct": 1690327818, - "e": 34272, - "g": 5, - "id": 845194760, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "p": 434015426, - "s": "1dd8" - }, - { - "code": "efm03", - "ct": 1690553985, - "e": 155220, - "g": 4, - "id": 873946891, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "p": 618609916, - "s": "0", - "sk": 5 - }, - { - "code": "ef303", - "ct": 1690647495, - "e": 109552, - "g": 3, - "id": 885428013, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 14 - ], - [ - "max_hp", - 21 - ] - ], - "p": 566472035, - "s": "1f49", - "sk": 5 - }, - { - "code": "efw32", - "ct": 1691039782, - "e": 202842, - "g": 5, - "id": 938741651, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "p": 784315107, - "s": "22fb", - "sk": 5 - }, - { - "code": "ef505", - "ct": 1691055668, - "e": 205969, - "g": 5, - "id": 943842728, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 583954927, - "s": "0", - "sk": 5 - }, - { - "code": "ef501", - "ct": 1691906837, - "e": 203994, - "g": 5, - "id": 1060911354, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 739641017, - "s": "0", - "sk": 5 - }, - { - "code": "efa02", - "ct": 1692879528, - "e": 104161, - "g": 5, - "id": 1184347069, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "5e9a", - "sk": 3 - }, - { - "code": "efw17", - "ct": 1692880080, - "e": 35445, - "g": 5, - "id": 1184459620, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "6892" - }, - { - "code": "efh14", - "ct": 1693457388, - "e": 35435, - "g": 5, - "id": 1250655682, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "0" - }, - { - "code": "efm22", - "ct": 1693457504, - "g": 5, - "id": 1250714085, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "99ad" - }, - { - "code": "efm22", - "ct": 1693462258, - "g": 5, - "id": 1252509488, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "cb78" - }, - { - "code": "ef501", - "ct": 1694599431, - "e": 203657, - "g": 5, - "id": 1353741355, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 620426700, - "s": "0", - "sk": 5 - }, - { - "code": "ef435", - "ct": 1694669555, - "e": 29381, - "g": 4, - "id": 1356574789, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "p": 11185757, - "s": "396a", - "sk": 5 - }, - { - "code": "efw16", - "ct": 1694828259, - "g": 5, - "id": 1372685234, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "69f4" - }, - { - "code": "efr04", - "ct": 1694908857, - "e": 39115, - "g": 4, - "id": 1387536256, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "p": 562155721, - "s": "e90", - "sk": 4 - }, - { - "code": "efk15", - "ct": 1695268850, - "e": 13407, - "g": 5, - "id": 1427760473, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "e009" - }, - { - "code": "efr05", - "ct": 1695340636, - "e": 4297, - "g": 4, - "id": 1433090983, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "258c", - "sk": 5 - }, - { - "code": "efw03", - "ct": 1695360380, - "e": 56897, - "g": 4, - "id": 1434649476, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "p": 525461035, - "s": "fdd2", - "sk": 5 - }, - { - "code": "efa19", - "ct": 1695471775, - "g": 5, - "id": 1443157729, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "3b35" - }, - { - "code": "efa15", - "ct": 1695471811, - "e": 7344, - "g": 5, - "id": 1443162325, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "731d" - }, - { - "code": "efw05", - "ct": 1695471811, - "e": 6876, - "g": 4, - "id": 1443162328, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "c5ea", - "sk": 4 - }, - { - "code": "efm15", - "ct": 1695598000, - "e": 4297, - "g": 4, - "id": 1455440632, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "58df", - "sk": 5 - }, - { - "code": "efk06", - "ct": 1695598000, - "e": 72407, - "g": 5, - "id": 1455440636, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 893757497, - "s": "54ba", - "sk": 2 - }, - { - "code": "efk05", - "ct": 1695632467, - "e": 42075, - "g": 4, - "id": 1458246497, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 10 - ], - [ - "max_hp", - 55 - ] - ], - "s": "ae16", - "sk": 5 - }, - { - "code": "efw12", - "ct": 1695857836, - "e": 5156, - "g": 4, - "id": 1474390585, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "e89a", - "sk": 5 - }, - { - "code": "efa05", - "ct": 1696027586, - "e": 16889, - "g": 4, - "id": 1503244793, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "p": 440334191, - "s": "410b", - "sk": 5 - }, - { - "code": "efw04", - "ct": 1696118630, - "e": 4749, - "g": 4, - "id": 1517382079, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "81c4", - "sk": 5 - }, - { - "code": "efm02", - "ct": 1696388797, - "e": 34035, - "g": 5, - "id": 1544370742, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 43 - ] - ], - "p": 21884461, - "s": "6363" - }, - { - "code": "ef432", - "ct": 1696473306, - "e": 152162, - "g": 4, - "id": 1553093275, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 36 - ] - ], - "p": 738614105, - "s": "fefd", - "sk": 5 - }, - { - "code": "efh08", - "ct": 1696667512, - "e": 108040, - "g": 4, - "id": 1567769978, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "625a", - "sk": 5 - }, - { - "code": "efk03", - "ct": 1696685236, - "e": 157424, - "g": 4, - "id": 1569748164, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "p": 559859822, - "s": "dd91", - "sk": 5 - }, - { - "code": "efk17", - "ct": 1696685236, - "g": 5, - "id": 1569748165, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "91f5" - }, - { - "code": "efr25", - "ct": 1697088296, - "e": 36726, - "g": 5, - "id": 1586756965, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 649028156, - "s": "b9f0" - }, - { - "code": "efr22", - "ct": 1697377991, - "e": 7735, - "g": 5, - "id": 1601714853, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "0", - "sk": 5 - }, - { - "code": "efa08", - "ct": 1697684468, - "g": 5, - "id": 1614899644, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "2af5" - }, - { - "code": "efm05", - "ct": 1698027236, - "e": 44173, - "g": 4, - "id": 1639113763, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "cb7c", - "sk": 5 - }, - { - "code": "efh14", - "ct": 1698590402, - "e": 35066, - "g": 5, - "id": 1673957157, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 218403497, - "s": "8935" - }, - { - "code": "efh04", - "ct": 1699503566, - "e": 155134, - "g": 4, - "id": 1713004500, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "p": 847822619, - "s": "5e1f", - "sk": 5 - }, - { - "code": "ef317", - "ct": 1699672092, - "e": 108374, - "g": 3, - "id": 1723310813, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 16 - ], - [ - "max_hp", - 14 - ] - ], - "s": "8712", - "sk": 5 - }, - { - "code": "efm19", - "ct": 1699673024, - "e": 35066, - "g": 5, - "id": 1723441894, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 48988520, - "s": "0" - }, - { - "code": "efr13", - "ct": 1699673045, - "e": 49122, - "g": 5, - "id": 1723444781, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 461989175, - "s": "0" - }, - { - "code": "efr18", - "ct": 1699673064, - "e": 203053, - "g": 5, - "id": 1723447431, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 518782830, - "s": "0", - "sk": 5 - }, - { - "code": "efr23", - "ct": 1700285575, - "g": 5, - "id": 1758939073, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "bb9" - }, - { - "code": "efr01", - "ct": 1700336119, - "e": 35498, - "g": 5, - "id": 1763286559, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 613630545, - "s": "51c6" - }, - { - "code": "efw06", - "ct": 1700527322, - "e": 50478, - "g": 5, - "id": 1773543212, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 559859824, - "s": "8279", - "sk": 1 - }, - { - "code": "efw23", - "ct": 1701937886, - "g": 5, - "id": 1835049950, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "7673" - }, - { - "code": "efw29", - "ct": 1702429371, - "g": 5, - "id": 1861750395, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "s": "a150" - }, - { - "code": "efh12", - "ct": 1702429595, - "e": 35678, - "g": 5, - "id": 1861764733, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 6885517, - "s": "333e" - }, - { - "code": "efk04", - "ct": 1702596340, - "e": 152612, - "g": 4, - "id": 1870369798, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "p": 241191727, - "s": "9205", - "sk": 5 - }, - { - "code": "efw30", - "ct": 1702955562, - "e": 6294, - "g": 5, - "id": 1900142025, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "s": "0" - }, - { - "code": "efw02", - "ct": 1703213230, - "g": 5, - "id": 1908937724, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 43 - ] - ], - "s": "68c7" - }, - { - "code": "efm01", - "ct": 1703297507, - "e": 204104, - "g": 5, - "id": 1912132735, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "p": 799495489, - "s": "6ae2", - "sk": 5 - }, - { - "code": "efh15", - "ct": 1703313396, - "e": 7344, - "g": 5, - "id": 1914018172, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 545449824, - "s": "0", - "sk": 5 - }, - { - "code": "ef507", - "ct": 1703464974, - "e": 35067, - "g": 5, - "id": 1929111133, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 713631381, - "s": "0" - }, - { - "code": "efa11", - "ct": 1703632630, - "e": 152771, - "g": 4, - "id": 1939748376, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "p": 96079748, - "s": "3ac9", - "sk": 5 - }, - { - "code": "efw02", - "ct": 1704243432, - "g": 5, - "id": 1964461670, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 43 - ] - ], - "s": "e4c6" - }, - { - "code": "efr06", - "ct": 1704256140, - "g": 5, - "id": 1964960565, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "2cab" - }, - { - "code": "ef406", - "ct": 1704256140, - "g": 4, - "id": 1964960567, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "d497" - }, - { - "code": "efr26", - "ct": 1704791312, - "e": 42768, - "g": 5, - "id": 1990533065, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 590699704, - "s": "9f84" - }, - { - "code": "efa02", - "ct": 1705280767, - "e": 35640, - "g": 5, - "id": 2018582370, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 494187001, - "s": "dbad" - }, - { - "code": "efm13", - "ct": 1705476076, - "g": 5, - "id": 2024775909, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "1956" - }, - { - "code": "efw33", - "ct": 1706328230, - "g": 5, - "id": 2054056488, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "db79" - }, - { - "code": "efm03", - "ct": 1706415586, - "e": 152072, - "g": 4, - "id": 2058808106, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "0", - "sk": 5 - }, - { - "code": "efa01", - "ct": 1706416503, - "e": 37778, - "g": 5, - "id": 2058865844, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "0" - }, - { - "code": "ef437", - "ct": 1707465148, - "g": 4, - "id": 2095702656, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "82d0", - "sk": 5 - }, - { - "code": "efr04", - "ct": 1707538643, - "e": 158806, - "g": 4, - "id": 2100347344, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "91b7", - "sk": 5 - }, - { - "code": "ef507", - "ct": 1707890165, - "g": 5, - "id": 2116983297, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "0" - }, - { - "code": "efw01", - "ct": 1707987798, - "e": 37778, - "g": 5, - "id": 2121417259, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 591089796, - "s": "0" - }, - { - "code": "efm03", - "ct": 1707987830, - "e": 153207, - "g": 4, - "id": 2121418967, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "p": 596366779, - "s": "0", - "sk": 5 - }, - { - "code": "efw19", - "ct": 1708571274, - "g": 5, - "id": 2137715390, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "52e3" - }, - { - "code": "efw20", - "ct": 1708571905, - "g": 5, - "id": 2137856469, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "e084" - }, - { - "code": "ef507", - "ct": 1708962679, - "e": 50369, - "g": 5, - "id": 2155138784, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 389494760, - "s": "0", - "sk": 1 - }, - { - "code": "ef438", - "ct": 1709556938, - "e": 6996, - "g": 4, - "id": 2167712272, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "0", - "sk": 4 - }, - { - "code": "efw35", - "ct": 1709779385, - "e": 81035, - "g": 5, - "id": 2172682781, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "s": "0", - "sk": 2 - }, - { - "code": "ef433", - "ct": 1710408031, - "e": 3498, - "g": 4, - "id": 2192689422, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "64a5", - "sk": 4 - }, - { - "code": "ef507", - "ct": 1711426170, - "g": 5, - "id": 2228137937, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "0" - }, - { - "code": "efk16", - "ct": 1711436398, - "g": 5, - "id": 2228371919, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "138d" - }, - { - "code": "ef317", - "ct": 1711436398, - "e": 119278, - "g": 3, - "id": 2228371920, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 16 - ], - [ - "max_hp", - 14 - ] - ], - "p": 306859366, - "s": "f04d", - "sk": 5 - }, - { - "code": "efh06", - "ct": 1711857943, - "e": 40925, - "g": 5, - "id": 2237100558, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "1b7" - }, - { - "code": "ef507", - "ct": 1713862062, - "e": 48272, - "g": 5, - "id": 2285991134, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 403476926, - "s": "0" - }, - { - "code": "ef427", - "ct": 1714047701, - "e": 27283, - "g": 4, - "id": 2290508984, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "p": 225876663, - "s": "58e1" - }, - { - "code": "efm30", - "ct": 1714621985, - "e": 5770, - "g": 5, - "id": 2311850900, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "p": 653128055, - "s": "2a22", - "sk": 5 - }, - { - "code": "efa04", - "ct": 1714622136, - "e": 3497, - "g": 4, - "id": 2311869598, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "dd44", - "sk": 4 - }, - { - "code": "efk21", - "ct": 1714654759, - "e": 34629, - "g": 5, - "id": 2313845939, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 892353109, - "s": "3391" - }, - { - "code": "efr11", - "ct": 1714956033, - "e": 152334, - "g": 4, - "id": 2324397548, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "5129", - "sk": 5 - }, - { - "code": "efk10", - "ct": 1715067514, - "e": 3498, - "g": 4, - "id": 2327721532, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 10 - ], - [ - "max_hp", - 55 - ] - ], - "s": "1efd", - "sk": 4 - }, - { - "code": "efw34", - "ct": 1715240335, - "e": 50718, - "g": 5, - "id": 2332863605, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 2716899, - "s": "0", - "sk": 1 - }, - { - "code": "ef317", - "ct": 1715245083, - "e": 6645, - "g": 3, - "id": 2333109541, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 16 - ], - [ - "max_hp", - 14 - ] - ], - "s": "ecad", - "sk": 5 - }, - { - "code": "efm08", - "ct": 1716863644, - "g": 4, - "id": 2376927620, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 14 - ], - [ - "max_hp", - 51 - ] - ], - "p": 627243561, - "s": "0" - }, - { - "code": "efr01", - "ct": 1716864020, - "e": 37778, - "g": 5, - "id": 2376938615, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 110853212, - "s": "dbf1" - }, - { - "code": "efk03", - "ct": 1717038053, - "e": 156619, - "g": 4, - "id": 2381263138, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "p": 781837305, - "s": "72ed", - "sk": 5 - }, - { - "code": "efh05", - "ct": 1717644012, - "e": 55791, - "g": 4, - "id": 2396878676, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "4f9", - "sk": 5 - }, - { - "code": "efk09", - "ct": 1717645087, - "e": 34278, - "g": 5, - "id": 2396962936, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 28398305, - "s": "7088" - }, - { - "code": "ef439", - "ct": 1718861710, - "g": 4, - "id": 2428599167, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "a340", - "sk": 5 - }, - { - "code": "efw36", - "ct": 1718865972, - "e": 35678, - "g": 5, - "id": 2429230249, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "9236" - }, - { - "code": "efw27", - "ct": 1718931007, - "g": 5, - "id": 2434161774, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "ed46" - }, - { - "code": "efh11", - "ct": 1719278208, - "g": 5, - "id": 2458397780, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "b29a" - }, - { - "code": "efr09", - "ct": 1719278208, - "g": 5, - "id": 2458397781, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "d66c" - }, - { - "code": "efw09", - "ct": 1719373359, - "g": 5, - "id": 2462444284, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "96b1" - }, - { - "code": "efw01", - "ct": 1722344529, - "e": 39877, - "g": 5, - "id": 2561750760, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 736028830, - "s": "c552" - }, - { - "code": "efr12", - "ct": 1722394893, - "e": 39877, - "g": 5, - "id": 2562923285, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "3844" - }, - { - "code": "efw01", - "ct": 1722561578, - "e": 36726, - "g": 5, - "id": 2566803904, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 717223364, - "s": "d877" - }, - { - "code": "efa14", - "ct": 1724815402, - "e": 214130, - "g": 5, - "id": 2636523808, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 704271358, - "s": "0", - "sk": 5 - }, - { - "code": "efw16", - "ct": 1725505437, - "g": 5, - "id": 2652643665, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "1790" - }, - { - "code": "efm04", - "ct": 1725506653, - "g": 4, - "id": 2652868488, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "ac91" - }, - { - "code": "ef440", - "ct": 1726127866, - "e": 26234, - "g": 4, - "id": 2675698603, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "6d7c", - "sk": 5 - }, - { - "code": "efh21", - "ct": 1726227596, - "e": 37777, - "g": 5, - "id": 2683115359, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "0" - }, - { - "code": "efa22", - "ct": 1726233949, - "e": 39875, - "g": 5, - "id": 2683582241, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "c944" - }, - { - "code": "efa17", - "ct": 1726361842, - "e": 35678, - "g": 5, - "id": 2691498572, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 793619248, - "s": "a8ab" - }, - { - "code": "efa07", - "ct": 1726710940, - "e": 10492, - "g": 5, - "id": 2718105650, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "162b" - }, - { - "code": "efh16", - "ct": 1726712565, - "g": 5, - "id": 2718223724, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "d2dc" - }, - { - "code": "efk07", - "ct": 1726789936, - "g": 5, - "id": 2722243813, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "7246" - }, - { - "code": "efw19", - "ct": 1727054143, - "g": 5, - "id": 2742185557, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "a45b" - }, - { - "code": "efm06", - "ct": 1727135941, - "e": 35679, - "g": 5, - "id": 2747793176, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 43 - ] - ], - "p": 115835449, - "s": "b196" - }, - { - "code": "efr28", - "ct": 1727924557, - "g": 5, - "id": 2793010074, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "6505" - }, - { - "code": "efw13", - "ct": 1728037257, - "g": 5, - "id": 2800371082, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "a6cc" - }, - { - "code": "efw27", - "ct": 1728214638, - "e": 34279, - "g": 5, - "id": 2808847663, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "1765" - }, - { - "code": "efh02", - "ct": 1729324708, - "e": 37777, - "g": 5, - "id": 2861496845, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "s": "8c71" - }, - { - "code": "efr27", - "ct": 1730377337, - "e": 203115, - "g": 5, - "id": 2908978581, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 798777729, - "s": "0", - "sk": 5 - }, - { - "code": "efr09", - "ct": 1731118423, - "g": 5, - "id": 2937459521, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "936c" - }, - { - "code": "efr19", - "ct": 1731118423, - "g": 5, - "id": 2937459522, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "s": "31bb" - }, - { - "code": "efh16", - "ct": 1731890903, - "g": 5, - "id": 2964558515, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "9dc6" - }, - { - "code": "efm02", - "ct": 1733707681, - "e": 35678, - "g": 5, - "id": 3016042895, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 43 - ] - ], - "p": 323638178, - "s": "61e6" - }, - { - "code": "efh23", - "ct": 1735194599, - "e": 37776, - "g": 5, - "id": 3053136643, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 830235768, - "s": "0" - }, - { - "code": "efa15", - "ct": 1735357207, - "g": 5, - "id": 3057109776, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "ebdc" - }, - { - "code": "efw21", - "ct": 1736298164, - "g": 5, - "id": 3078858334, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "7649" - }, - { - "code": "efh03", - "ct": 1736468873, - "e": 153646, - "g": 4, - "id": 3085142965, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "p": 829105288, - "s": "456a", - "sk": 5 - }, - { - "code": "efm18", - "ct": 1736730208, - "g": 5, - "id": 3095287926, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "b69c" - }, - { - "code": "efm03", - "ct": 1736749343, - "e": 18712, - "g": 4, - "id": 3096071305, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "e7a", - "sk": 1 - }, - { - "code": "efa12", - "ct": 1736818143, - "g": 5, - "id": 3098283081, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "4337" - }, - { - "code": "efw12", - "ct": 1737610189, - "g": 4, - "id": 3117735712, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "8344" - }, - { - "code": "efw24", - "ct": 1737610189, - "g": 5, - "id": 3117735715, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "s": "4e68" - }, - { - "code": "ef502", - "ct": 1737612606, - "e": 35678, - "g": 5, - "id": 3117869104, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "0" - }, - { - "code": "efr24", - "ct": 1737772818, - "e": 36729, - "g": 5, - "id": 3123087246, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 669363338, - "s": "ea23" - }, - { - "code": "efa01", - "ct": 1737772818, - "g": 5, - "id": 3123087249, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "c287" - }, - { - "code": "efh09", - "ct": 1737863357, - "g": 5, - "id": 3125285992, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "841c" - }, - { - "code": "efr03", - "ct": 1737863357, - "g": 4, - "id": 3125285996, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "5611" - }, - { - "code": "efh20", - "ct": 1737892949, - "e": 35679, - "g": 5, - "id": 3126020549, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "2332" - }, - { - "code": "efa25", - "ct": 1738044569, - "g": 5, - "id": 3129664628, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "f7c6" - }, - { - "code": "efh04", - "ct": 1738983997, - "e": 26670, - "g": 4, - "id": 3155489521, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "p": 326831592, - "s": "15aa", - "sk": 5 - }, - { - "code": "efr05", - "ct": 1740471311, - "g": 4, - "id": 3192423124, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "f0b0" - }, - { - "code": "ef441", - "ct": 1740662691, - "g": 4, - "id": 3196581146, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "791f" - }, - { - "code": "efk14", - "ct": 1741142944, - "g": 5, - "id": 3210599274, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "651d" - }, - { - "code": "efw16", - "ct": 1741142944, - "g": 5, - "id": 3210599278, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "c440" - }, - { - "code": "efm03", - "ct": 1741228309, - "g": 4, - "id": 3212912912, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "d2c0" - }, - { - "code": "efw05", - "ct": 1741846711, - "g": 4, - "id": 3225243600, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "ee0b" - }, - { - "code": "efa23", - "ct": 1741846711, - "e": 35678, - "g": 5, - "id": 3225243601, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "p": 899011010, - "s": "69e8" - }, - { - "code": "ef441", - "ct": 1742041578, - "g": 4, - "id": 3230800928, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "0" - }, - { - "code": "ef441", - "ct": 1742862046, - "g": 4, - "id": 3244366444, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "a44b" - }, - { - "code": "ef441", - "ct": 1742906459, - "g": 4, - "id": 3245041392, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "0" - }, - { - "code": "ef303", - "ct": 1742953918, - "e": 50721, - "g": 3, - "id": 3245713193, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 14 - ], - [ - "max_hp", - 21 - ] - ], - "p": 207190343, - "s": "daba", - "sk": 5 - }, - { - "code": "ef441", - "ct": 1742991888, - "g": 4, - "id": 3246327762, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "0" - }, - { - "code": "efw03", - "ct": 1743136235, - "g": 4, - "id": 3249187620, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "60b6" - }, - { - "code": "ef502", - "ct": 1743384637, - "e": 35679, - "g": 5, - "id": 3256484807, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 769932771, - "s": "0" - }, - { - "code": "efr04", - "ct": 1744189249, - "g": 4, - "id": 3275118772, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "9c21" - }, - { - "code": "efw05", - "ct": 1744189249, - "g": 4, - "id": 3275118773, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "6e76" - }, - { - "code": "efw03", - "ct": 1744189249, - "g": 4, - "id": 3275118774, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "a627" - }, - { - "code": "efa25", - "ct": 1744189249, - "g": 5, - "id": 3275118775, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "ab78" - }, - { - "code": "efk09", - "ct": 1744189249, - "e": 7344, - "g": 5, - "id": 3275118777, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "6d27" - }, - { - "code": "efw17", - "ct": 1744189249, - "g": 5, - "id": 3275118778, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "372f" - }, - { - "code": "efm04", - "ct": 1744335246, - "g": 4, - "id": 3277217927, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "f60" - }, - { - "code": "efm15", - "ct": 1744341733, - "g": 4, - "id": 3277418725, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "f398" - }, - { - "code": "efk13", - "ct": 1744363141, - "e": 35678, - "g": 5, - "id": 3278211471, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "p": 445022861, - "s": "a53" - }, - { - "code": "efk07", - "ct": 1744434586, - "g": 5, - "id": 3280164077, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "aa53" - }, - { - "code": "ef438", - "ct": 1744448579, - "g": 4, - "id": 3280688708, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "0" - }, - { - "code": "ef438", - "ct": 1744448581, - "g": 4, - "id": 3280688771, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "0" - }, - { - "code": "ef506", - "ct": 1744632168, - "g": 5, - "id": 3285451244, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "0" - }, - { - "code": "efk01", - "ct": 1745413993, - "g": 5, - "id": 3303302637, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "0" - }, - { - "code": "efm14", - "ct": 1745473492, - "g": 5, - "id": 3304378641, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "e694" - }, - { - "code": "efk04", - "ct": 1745550791, - "g": 4, - "id": 3307075085, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "ac7c" - }, - { - "code": "efh08", - "ct": 1745572061, - "g": 4, - "id": 3307804895, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "7566" - }, - { - "code": "efk03", - "ct": 1745645037, - "e": 28333, - "g": 4, - "id": 3309955692, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "p": 166490, - "s": "3e6b" - }, - { - "code": "efw05", - "ct": 1745645037, - "g": 4, - "id": 3309955693, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "340e" - }, - { - "code": "efh08", - "ct": 1745716353, - "g": 4, - "id": 3311770110, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "cac4" - }, - { - "code": "efk04", - "ct": 1745716353, - "g": 4, - "id": 3311770111, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "2eb3" - }, - { - "code": "efk16", - "ct": 1745716353, - "g": 5, - "id": 3311770113, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "6c4e" - }, - { - "code": "ef409", - "ct": 1745802411, - "g": 4, - "id": 3315410834, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "56ec" - }, - { - "code": "ef409", - "ct": 1745809525, - "g": 4, - "id": 3316856438, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "846e" - }, - { - "code": "ef409", - "ct": 1745809525, - "g": 4, - "id": 3316856467, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "6a88" - }, - { - "code": "ef409", - "ct": 1745809525, - "g": 4, - "id": 3316856500, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "5dcb" - }, - { - "code": "efk12", - "ct": 1745851970, - "e": 37778, - "g": 5, - "id": 3328070348, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "7246" - }, - { - "code": "efr03", - "ct": 1745887565, - "g": 4, - "id": 3334167854, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "c243" - }, - { - "code": "efr03", - "ct": 1745904961, - "g": 4, - "id": 3338631065, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "489" - }, - { - "code": "efm06", - "ct": 1745967663, - "g": 5, - "id": 3353450780, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 43 - ] - ], - "s": "72f7" - }, - { - "code": "efr16", - "ct": 1746063496, - "e": 37777, - "g": 5, - "id": 3375118379, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "9f3a" - }, - { - "code": "ef317", - "ct": 1746110637, - "e": 3498, - "g": 3, - "id": 3387404092, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 16 - ], - [ - "max_hp", - 14 - ] - ], - "s": "ebc5", - "sk": 5 - }, - { - "code": "ef317", - "ct": 1746111807, - "e": 3498, - "g": 3, - "id": 3387725549, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 16 - ], - [ - "max_hp", - 14 - ] - ], - "s": "4d03", - "sk": 5 - }, - { - "code": "efh05", - "ct": 1746678639, - "g": 4, - "id": 3457553983, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "cade" - }, - { - "code": "efk22", - "ct": 1746679584, - "e": 41975, - "g": 5, - "id": 3457702816, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 15 - ], - [ - "max_hp", - 54 - ] - ], - "s": "0" - }, - { - "code": "efh01", - "ct": 1746949687, - "g": 5, - "id": 3470437633, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "c309" - }, - { - "code": "efa27", - "ct": 1747284882, - "e": 35678, - "g": 5, - "id": 3484645766, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "p": 897188455, - "s": "de76" - }, - { - "code": "efw04", - "ct": 1747284902, - "e": 3934, - "g": 4, - "id": 3484647470, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "4ce1", - "sk": 3 - }, - { - "code": "efm15", - "ct": 1747558580, - "g": 4, - "id": 3494941078, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "b796" - }, - { - "code": "efw37", - "ct": 1747924863, - "e": 31480, - "g": 5, - "id": 3504437731, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "def", - 11 - ] - ], - "p": 898971885, - "s": "eff0" - }, - { - "code": "efr05", - "ct": 1747961646, - "g": 4, - "id": 3505030374, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "7bf6" - }, - { - "code": "efr10", - "ct": 1747982551, - "g": 5, - "id": 3505554326, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "251d" - }, - { - "code": "efh03", - "ct": 1748046992, - "g": 4, - "id": 3506992811, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "c5b5" - }, - { - "code": "efk03", - "ct": 1748046992, - "g": 4, - "id": 3506992813, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "8002" - }, - { - "code": "efk10", - "ct": 1748137882, - "g": 4, - "id": 3509312931, - "mg": 1111, - "op": [ - [ - "att", - 10 - ], - [ - "max_hp", - 55 - ] - ], - "s": "75dc" - }, - { - "code": "efr11", - "ct": 1748311835, - "g": 4, - "id": 3513481630, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "a46" - }, - { - "code": "ef509", - "ct": 1748440017, - "g": 5, - "id": 3515817210, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "c11f" - }, - { - "code": "ef509", - "ct": 1748620329, - "g": 5, - "id": 3518459452, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "b46d" - }, - { - "code": "ef509", - "ct": 1748673290, - "g": 5, - "id": 3519472795, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "3d18" - }, - { - "code": "efr25", - "ct": 1748757623, - "g": 5, - "id": 3521411131, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "bd75" - }, - { - "code": "efk05", - "ct": 1749028178, - "g": 4, - "id": 3525793174, - "mg": 1111, - "op": [ - [ - "att", - 10 - ], - [ - "max_hp", - 55 - ] - ], - "s": "66b7" - }, - { - "code": "efk03", - "ct": 1749028178, - "g": 4, - "id": 3525793175, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "d67d" - }, - { - "code": "efm05", - "ct": 1749028178, - "g": 4, - "id": 3525793176, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "3e55" - }, - { - "code": "efh04", - "ct": 1749028178, - "g": 4, - "id": 3525793178, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "8695" - }, - { - "code": "efh01", - "ct": 1749028178, - "g": 5, - "id": 3525793179, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "3e5" - }, - { - "code": "efh08", - "ct": 1749028178, - "g": 4, - "id": 3525793180, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "c457" - }, - { - "code": "efa15", - "ct": 1749028178, - "g": 5, - "id": 3525793181, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "23ec" - }, - { - "code": "ef509", - "ct": 1749109489, - "g": 5, - "id": 3526739399, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "3f57" - }, - { - "code": "ef509", - "ct": 1749133113, - "g": 5, - "id": 3527125038, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "ee20" - }, - { - "code": "efw03", - "ct": 1749168389, - "g": 4, - "id": 3527482034, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "bf55" - }, - { - "code": "ef509", - "ct": 1749191371, - "g": 5, - "id": 3527738716, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "d88d" - }, - { - "code": "efr11", - "ct": 1749256342, - "g": 4, - "id": 3528426242, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "dc82" - }, - { - "code": "efm04", - "ct": 1749620335, - "g": 4, - "id": 3533637350, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "bdc" - }, - { - "code": "efh08", - "ct": 1749693351, - "g": 4, - "id": 3534350055, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "d3c1" - }, - { - "code": "efa25", - "ct": 1749775144, - "g": 5, - "id": 3535850749, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "26c5" - }, - { - "code": "ef502", - "ct": 1749807742, - "g": 5, - "id": 3536356840, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "0" - }, - { - "code": "ef502", - "ct": 1749807745, - "g": 5, - "id": 3536356883, - "l": true, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "0" - }, - { - "code": "efm15", - "ct": 1749908653, - "g": 4, - "id": 3537911212, - "mg": 1111, - "op": [ - [ - "att", - 18 - ], - [ - "max_hp", - 27 - ] - ], - "s": "65ad" - }, - { - "code": "efm03", - "ct": 1750210984, - "g": 4, - "id": 3541774737, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "4795" - }, - { - "code": "efk05", - "ct": 1750316482, - "g": 4, - "id": 3543554870, - "mg": 1111, - "op": [ - [ - "att", - 10 - ], - [ - "max_hp", - 55 - ] - ], - "s": "4a6f" - }, - { - "code": "efw05", - "ct": 1750316482, - "g": 4, - "id": 3543554872, - "mg": 1111, - "op": [ - [ - "att", - 7 - ], - [ - "max_hp", - 63 - ] - ], - "s": "50ed" - }, - { - "code": "efm05", - "ct": 1750483271, - "g": 4, - "id": 3549077159, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "6bcd" - }, - { - "code": "efa08", - "ct": 1750558927, - "g": 5, - "id": 3551234946, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "fbb0" - }, - { - "code": "ef443", - "ct": 1750560531, - "g": 4, - "id": 3551290475, - "l": true, - "level": 0, - "mg": 1111, - "name": "Unknown", - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "3bc3", - "sk": 5 - }, - { - "code": "efr28", - "ct": 1750560564, - "g": 5, - "id": 3551291534, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "c2d8" - }, - { - "code": "efw03", - "ct": 1750824575, - "g": 4, - "id": 3557904040, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "8f4" - }, - { - "code": "efw12", - "ct": 1751033215, - "g": 4, - "id": 3562133819, - "mg": 1111, - "op": [ - [ - "att", - 12 - ], - [ - "max_hp", - 45 - ] - ], - "s": "e51e" - }, - { - "code": "efa13", - "ct": 1751173096, - "g": 5, - "id": 3564687450, - "mg": 1111, - "op": [ - [ - "att", - 21 - ], - [ - "max_hp", - 32 - ] - ], - "s": "4ae7" - }, - { - "code": "efk10", - "ct": 1751246575, - "g": 4, - "id": 3566157381, - "mg": 1111, - "op": [ - [ - "att", - 10 - ], - [ - "max_hp", - 55 - ] - ], - "s": "5501" - }, - { - "code": "efk17", - "ct": 1751261441, - "g": 5, - "id": 3566409716, - "mg": 1111, - "op": [ - [ - "att", - 9 - ], - [ - "max_hp", - 76 - ] - ], - "s": "5f19" - }, - { - "code": "emd5a", - "ct": 1687315843, - "e": 70322, - "f": "set_speed", - "g": 5, - "id": 55095347, - "l": true, - "level": 70, - "mainStatBaseValue": 52, - "mainStatId": "md5_armo_m", - "mainStatType": "def", - "mainStatValue": 260, - "mg": 1111, - "op": [ - [ - "def", - 52 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 3 - ] - ], - "p": 663498964, - "s": "bd8d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 260 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 3 - }, - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 55095347, - "ingameEquippedId": "663498964" - }, - { - "code": "emd5n", - "ct": 1687315843, - "e": 76932, - "f": "set_cri", - "g": 5, - "id": 55095368, - "l": true, - "level": 70, - "mainStatBaseValue": 0.11, - "mainStatId": "md5_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.55, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.11 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.02 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ] - ], - "p": 549294853, - "s": "a71a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 55 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 10, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 2 - } - ], - "ingameId": 55095368, - "ingameEquippedId": "549294853" - }, - { - "code": "eah8r", - "ct": 1687319825, - "e": 94162, - "f": "set_speed", - "g": 5, - "id": 57468023, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah8_ring_m1", - "mainStatType": "acc", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "acc", - 0.13 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "p": 899011010, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectivenessPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 27, - "rolls": 4 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 57468023, - "ingameEquippedId": "899011010" - }, - { - "code": "eug14a", - "ct": 1687352113, - "e": 75074, - "f": "set_att", - "g": 5, - "id": 76436415, - "l": true, - "level": 70, - "mainStatBaseValue": 52, - "mainStatId": "ug14_armo_m", - "mainStatType": "def", - "mainStatValue": 260, - "mg": 1111, - "op": [ - [ - "def", - 52 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "p": 502450559, - "s": "43ae", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 260 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 4 - } - ], - "ingameId": 76436415, - "ingameEquippedId": "502450559" - }, - { - "code": "eug15n", - "ct": 1687352113, - "e": 70435, - "f": "set_cri", - "g": 5, - "id": 76436440, - "l": true, - "level": 70, - "mainStatBaseValue": 0.11, - "mainStatId": "ug15_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.55, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.11 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.02 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ] - ], - "s": "ecaf", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 55 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 76436440, - "ingameEquippedId": "undefined" - }, - { - "code": "eah9w", - "ct": 1687362218, - "e": 95035, - "f": "set_acc", - "g": 5, - "id": 82994008, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah9_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 3 - ] - ], - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 4 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 82994008, - "ingameEquippedId": "undefined" - }, - { - "code": "ere6b", - "ct": 1687394468, - "e": 82150, - "f": "set_att", - "g": 5, - "id": 95342608, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "re6_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 3 - ] - ], - "p": 49161666, - "s": "808b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 95342608, - "ingameEquippedId": "49161666" - }, - { - "code": "ere6r", - "ct": 1687394469, - "e": 82508, - "f": "set_att", - "g": 5, - "id": 95342627, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "re6_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ] - ], - "p": 49161666, - "s": "d768", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 17, - "rolls": 3 - } - ], - "ingameId": 95342627, - "ingameEquippedId": "49161666" - }, - { - "code": "eap2w", - "ct": 1687410119, - "e": 83106, - "f": "set_att", - "g": 5, - "id": 104574710, - "l": true, - "level": 75, - "mainStatBaseValue": 93, - "mainStatId": "ap2_weap_m1", - "mainStatType": "att", - "mainStatValue": 465, - "mg": 1111, - "op": [ - [ - "att", - 93 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "p": 140659207, - "s": "a008", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 465 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - } - ], - "ingameId": 104574710, - "ingameEquippedId": "140659207" - }, - { - "code": "eap2h", - "ct": 1687410120, - "e": 89826, - "f": "set_att", - "g": 5, - "id": 104574881, - "l": true, - "level": 75, - "mainStatBaseValue": 499, - "mainStatId": "ap2_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2495, - "mg": 1111, - "op": [ - [ - "max_hp", - 499 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.05 - ] - ], - "s": "9316", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2495 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 4 - } - ], - "ingameId": 104574881, - "ingameEquippedId": "undefined" - }, - { - "code": "eap2a", - "ct": 1687410120, - "e": 82382, - "f": "set_att", - "g": 5, - "id": 104574892, - "l": true, - "level": 75, - "mainStatBaseValue": 55, - "mainStatId": "ap2_armo_m1", - "mainStatType": "def", - "mainStatValue": 275, - "mg": 1111, - "op": [ - [ - "def", - 55 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "p": 49161666, - "s": "b75f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 275 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 25, - "rolls": 4 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 104574892, - "ingameEquippedId": "49161666" - }, - { - "code": "eap2b", - "ct": 1687410120, - "e": 83325, - "f": "set_att", - "g": 5, - "id": 104574909, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "ap2_boot_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "408d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 104574909, - "ingameEquippedId": "undefined" - }, - { - "code": "eap2r", - "ct": 1687410120, - "e": 82680, - "f": "set_att", - "g": 5, - "id": 104574925, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "ap2_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "5200", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 104574925, - "ingameEquippedId": "undefined" - }, - { - "code": "eap2n", - "ct": 1687410120, - "e": 84101, - "f": "set_att", - "g": 5, - "id": 104574936, - "l": true, - "level": 75, - "mainStatBaseValue": 0.13, - "mainStatId": "ap2_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "p": 140659207, - "s": "163", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 24, - "rolls": 4 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 104574936, - "ingameEquippedId": "140659207" - }, - { - "code": "eah9n", - "ct": 1687410312, - "e": 94045, - "f": "set_acc", - "g": 5, - "id": 104689525, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ah9_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.07 - ] - ], - "p": 225876663, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 104689525, - "ingameEquippedId": "225876663" - }, - { - "code": "eap3w", - "ct": 1687411057, - "e": 82977, - "f": "set_max_hp", - "g": 5, - "id": 105136064, - "l": true, - "level": 75, - "mainStatBaseValue": 93, - "mainStatId": "ap3_weap_m1", - "mainStatType": "att", - "mainStatValue": 465, - "mg": 1111, - "op": [ - [ - "att", - 93 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ] - ], - "s": "c93a", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 465 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 105136064, - "ingameEquippedId": "undefined" - }, - { - "code": "eap3h", - "ct": 1687411057, - "e": 82173, - "f": "set_max_hp", - "g": 5, - "id": 105136081, - "l": true, - "level": 75, - "mainStatBaseValue": 499, - "mainStatId": "ap3_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2495, - "mg": 1111, - "op": [ - [ - "max_hp", - 499 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.06 - ] - ], - "p": 40490456, - "s": "e928", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2495 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 24, - "rolls": 4 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 3 - } - ], - "ingameId": 105136081, - "ingameEquippedId": "40490456" - }, - { - "code": "eap3a", - "ct": 1687411057, - "e": 104962, - "f": "set_max_hp", - "g": 5, - "id": 105136105, - "l": true, - "level": 75, - "mainStatBaseValue": 55, - "mainStatId": "ap3_armo_m1", - "mainStatType": "def", - "mainStatValue": 275, - "mg": 1111, - "op": [ - [ - "def", - 55 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ] - ], - "s": "a26a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 275 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 105136105, - "ingameEquippedId": "undefined" - }, - { - "code": "eap3b", - "ct": 1687411057, - "e": 82097, - "f": "set_max_hp", - "g": 5, - "id": 105136123, - "l": true, - "level": 75, - "mainStatBaseValue": 7, - "mainStatId": "ap3_boot_m1", - "mainStatType": "speed", - "mainStatValue": 35, - "mg": 1111, - "op": [ - [ - "speed", - 7 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ] - ], - "p": 40490456, - "s": "53b9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 35 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 105136123, - "ingameEquippedId": "40490456" - }, - { - "code": "eap3r", - "ct": 1687411057, - "e": 82567, - "f": "set_max_hp", - "g": 5, - "id": 105136133, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "ap3_ring_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0.05 - ] - ], - "p": 604874070, - "s": "b42b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 24, - "rolls": 4 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 105136133, - "ingameEquippedId": "604874070" - }, - { - "code": "eap3n", - "ct": 1687411057, - "e": 99342, - "f": "set_max_hp", - "g": 5, - "id": 105136147, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "ap3_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.08 - ] - ], - "p": 40490456, - "s": "375c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 28, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 105136147, - "ingameEquippedId": "40490456" - }, - { - "code": "ecw5b", - "ct": 1687433003, - "e": 70732, - "f": "set_acc", - "g": 5, - "id": 117654795, - "l": true, - "level": 70, - "mainStatBaseValue": 7, - "mainStatId": "cra5_boot_m", - "mainStatType": "speed", - "mainStatValue": 35, - "mg": 1111, - "op": [ - [ - "speed", - 7 - ], - [ - "att_rate", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.03 - ], - [ - "res", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "att_rate", - 0.06 - ] - ], - "p": 207190343, - "s": "f9c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 35 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 3 - } - ], - "ingameId": 117654795, - "ingameEquippedId": "207190343" - }, - { - "code": "eah10w", - "ct": 1687434847, - "e": 93930, - "f": "set_cri_dmg", - "g": 5, - "id": 118606243, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah10_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.05 - ] - ], - "p": 525461035, - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 18, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 118606243, - "ingameEquippedId": "525461035" - }, - { - "code": "exc107201", - "ct": 1687449601, - "g": 5, - "id": 127313641, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.14 - ], - [ - "ek_c107201", - 1 - ] - ], - "s": "be00" - }, - { - "code": "exc107201", - "ct": 1687449606, - "g": 5, - "id": 127316794, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "ek_c107201", - 2 - ] - ], - "p": 49161666, - "s": "5544" - }, - { - "code": "exc108701", - "ct": 1687449681, - "g": 5, - "id": 127360696, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "ek_c108701", - 1 - ] - ], - "s": "f6f" - }, - { - "code": "eum12b", - "ct": 1687483762, - "e": 82403, - "f": "set_cri", - "g": 5, - "id": 139345121, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "um12_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ] - ], - "s": "e921", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 139345121, - "ingameEquippedId": "undefined" - }, - { - "code": "eah9b", - "ct": 1687484711, - "e": 94375, - "f": "set_acc", - "g": 5, - "id": 139824488, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah9_boot_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "p": 6911147, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 24, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 139824488, - "ingameEquippedId": "6911147" - }, - { - "code": "exc106201", - "ct": 1687529453, - "g": 5, - "id": 164285000, - "l": true, - "mg": 1111, - "op": [ - [ - "speed", - 10 - ], - [ - "ek_c106201", - 1 - ] - ], - "s": "2a37" - }, - { - "code": "ess9r", - "ct": 1687532467, - "e": 87723, - "f": "set_speed", - "g": 5, - "id": 166039501, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "ss9_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ] - ], - "p": 518421029, - "s": "bed0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 166039501, - "ingameEquippedId": "518421029" - }, - { - "code": "eah10h", - "ct": 1687536332, - "e": 93957, - "f": "set_cri_dmg", - "g": 5, - "id": 168243437, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah10_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 168243437, - "ingameEquippedId": "undefined" - }, - { - "code": "ere7w", - "ct": 1687568502, - "e": 83351, - "f": "set_max_hp", - "g": 5, - "id": 179100958, - "l": true, - "level": 75, - "mainStatBaseValue": 93, - "mainStatId": "re7_weap_m", - "mainStatType": "att", - "mainStatValue": 465, - "mg": 1111, - "op": [ - [ - "att", - 93 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ] - ], - "s": "18c", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 465 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 179100958, - "ingameEquippedId": "undefined" - }, - { - "code": "ere7a", - "ct": 1687568502, - "e": 83277, - "f": "set_max_hp", - "g": 5, - "id": 179100989, - "l": true, - "level": 75, - "mainStatBaseValue": 55, - "mainStatId": "re7_armo_m", - "mainStatType": "def", - "mainStatValue": 275, - "mg": 1111, - "op": [ - [ - "def", - 55 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.04 - ] - ], - "p": 166490, - "s": "3c2a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 275 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 179100989, - "ingameEquippedId": "166490" - }, - { - "code": "ere7h", - "ct": 1687568502, - "e": 82482, - "f": "set_max_hp", - "g": 5, - "id": 179101000, - "level": 75, - "mainStatBaseValue": 499, - "mainStatId": "re7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2495, - "mg": 1111, - "op": [ - [ - "max_hp", - 499 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 2 - ] - ], - "s": "3752", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2495 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 179101000, - "ingameEquippedId": "undefined" - }, - { - "code": "ere7b", - "ct": 1687568502, - "e": 88459, - "f": "set_max_hp", - "g": 5, - "id": 179101025, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "re7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ] - ], - "p": 830235768, - "s": "e6e0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 179101025, - "ingameEquippedId": "830235768" - }, - { - "code": "ere7n", - "ct": 1687568502, - "e": 83274, - "f": "set_max_hp", - "g": 5, - "id": 179101041, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "re7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.07 - ] - ], - "p": 894623419, - "s": "1704", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 179101041, - "ingameEquippedId": "894623419" - }, - { - "code": "ere7r", - "ct": 1687568502, - "e": 82071, - "f": "set_max_hp", - "g": 5, - "id": 179101055, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "re7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.04 - ] - ], - "s": "19cc", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 3 - } - ], - "ingameId": 179101055, - "ingameEquippedId": "undefined" - }, - { - "code": "eah10n", - "ct": 1687588986, - "e": 94377, - "f": "set_cri_dmg", - "g": 5, - "id": 190263278, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ah10_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 3 - } - ], - "ingameId": 190263278, - "ingameEquippedId": "undefined" - }, - { - "code": "exc108701", - "ct": 1687607681, - "g": 5, - "id": 199838193, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.09 - ], - [ - "ek_c108701", - 2 - ] - ], - "p": 48982864, - "s": "6501" - }, - { - "code": "exc108701", - "ct": 1687607690, - "g": 5, - "id": 199842438, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.07 - ], - [ - "ek_c108701", - 3 - ] - ], - "s": "641c" - }, - { - "code": "eah10r", - "ct": 1687749981, - "e": 100322, - "f": "set_cri_dmg", - "g": 5, - "id": 256289663, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah10_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_1" - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1, - "modified": true - } - ], - "ingameId": 256289663, - "ingameEquippedId": "undefined" - }, - { - "code": "eah13b", - "ct": 1687750046, - "e": 94384, - "f": "set_cri", - "g": 5, - "id": 256319465, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah13_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "att_rate", - 0.06 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 256319465, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1687763657, - "e": 86755, - "f": "set_acc", - "g": 4, - "id": 262500744, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 162 - ], - [ - "max_hp", - 191 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "p": 649028156, - "s": "92b8", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 18, - "rolls": 4 - }, - { - "type": "Health", - "value": 465, - "rolls": 2 - } - ], - "ingameId": 262500744, - "ingameEquippedId": "649028156" - }, - { - "code": "ecw6a_u", - "ct": 1687763657, - "e": 99666, - "f": "set_speed", - "g": 5, - "id": 262500787, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 184 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 898971885, - "s": "a204", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "Health", - "value": 240, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 262500787, - "ingameEquippedId": "898971885" - }, - { - "code": "ecw6a", - "ct": 1687763657, - "e": 82962, - "f": "set_speed", - "g": 5, - "id": 262500915, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp", - 189 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp", - 193 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.06 - ] - ], - "p": 48982864, - "s": "2060", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "Health", - "value": 382, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 262500915, - "ingameEquippedId": "48982864" - }, - { - "code": "ecw6a_u", - "ct": 1687763735, - "e": 94169, - "f": "set_speed", - "g": 5, - "id": 262534238, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.04 - ], - [ - "max_hp_rate", - 0 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.09, - "c", - "change2_max_hp_rate_2_1" - ] - ], - "p": 31856726, - "s": "930a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 12, - "rolls": 2, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 262534238, - "ingameEquippedId": "31856726" - }, - { - "code": "eap3w", - "ct": 1687780503, - "e": 85589, - "f": "set_max_hp", - "g": 5, - "id": 269696885, - "l": true, - "level": 75, - "mainStatBaseValue": 93, - "mainStatId": "ap3_weap_m1", - "mainStatType": "att", - "mainStatValue": 465, - "mg": 1111, - "op": [ - [ - "att", - 93 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ] - ], - "p": 830235768, - "s": "9431", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 465 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 269696885, - "ingameEquippedId": "830235768" - }, - { - "code": "eap3h", - "ct": 1687780503, - "e": 82348, - "f": "set_max_hp", - "g": 5, - "id": 269696916, - "l": true, - "level": 75, - "mainStatBaseValue": 499, - "mainStatId": "ap3_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2495, - "mg": 1111, - "op": [ - [ - "max_hp", - 499 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.08 - ] - ], - "p": 893757497, - "s": "3f84", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2495 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 29, - "rolls": 4 - } - ], - "ingameId": 269696916, - "ingameEquippedId": "893757497" - }, - { - "code": "eap3a", - "ct": 1687780503, - "e": 84411, - "f": "set_max_hp", - "g": 5, - "id": 269696941, - "l": true, - "level": 75, - "mainStatBaseValue": 55, - "mainStatId": "ap3_armo_m1", - "mainStatType": "def", - "mainStatValue": 275, - "mg": 1111, - "op": [ - [ - "def", - 55 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 2 - ] - ], - "p": 830235768, - "s": "8fb0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 275 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 269696941, - "ingameEquippedId": "830235768" - }, - { - "code": "eap3b", - "ct": 1687780503, - "e": 82305, - "f": "set_max_hp", - "g": 5, - "id": 269696969, - "l": true, - "level": 75, - "mainStatBaseValue": 7, - "mainStatId": "ap3_boot_m1", - "mainStatType": "speed", - "mainStatValue": 35, - "mg": 1111, - "op": [ - [ - "speed", - 7 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ] - ], - "p": 166490, - "s": "b520", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 35 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 39, - "rolls": 5 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 269696969, - "ingameEquippedId": "166490" - }, - { - "code": "eap3r", - "ct": 1687780503, - "e": 82165, - "f": "set_max_hp", - "g": 5, - "id": 269696988, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "ap3_ring_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ] - ], - "p": 898971885, - "s": "ea23", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 269696988, - "ingameEquippedId": "898971885" - }, - { - "code": "eap3n", - "ct": 1687780503, - "e": 84576, - "f": "set_max_hp", - "g": 5, - "id": 269697020, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "ap3_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.08 - ] - ], - "p": 412803674, - "s": "d982", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 28, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 269697020, - "ingameEquippedId": "412803674" - }, - { - "code": "ecw6a_u", - "ct": 1687832378, - "e": 94528, - "f": "set_acc", - "g": 5, - "id": 289119203, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 518782830, - "s": "e856", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 289119203, - "ingameEquippedId": "518782830" - }, - { - "code": "ecw6h", - "ct": 1687843166, - "e": 75864, - "f": "set_acc", - "g": 4, - "id": 294239285, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ] - ], - "s": "4ec", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 15, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 294239285, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1687843166, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 294239392, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3, - "c" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "p": 518782830, - "s": "790b", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 294239392, - "ingameEquippedId": "518782830" - }, - { - "code": "ecw6h", - "ct": 1687843167, - "e": 82203, - "f": "set_acc", - "g": 5, - "id": 294239493, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "p": 319905485, - "s": "e28a", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 294239493, - "ingameEquippedId": "319905485" - }, - { - "code": "ecw6h_u", - "ct": 1687843261, - "e": 94048, - "f": "set_speed", - "g": 5, - "id": 294284791, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_2" - ] - ], - "s": "ebc6", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - } - ], - "ingameId": 294284791, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1687843331, - "e": 93938, - "f": "set_cri", - "g": 5, - "id": 294318046, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.11, - "c" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 6844892, - "s": "62f7", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 3, - "modified": true - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 294318046, - "ingameEquippedId": "6844892" - }, - { - "code": "ecw6h_u", - "ct": 1687843332, - "e": 85126, - "f": "set_speed", - "g": 4, - "id": 294318077, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "def_rate", - 0.06, - "c", - "change2_def_rate_1_1" - ] - ], - "p": 445022861, - "s": "262d", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 32, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 294318077, - "ingameEquippedId": "445022861" - }, - { - "code": "ecw6a", - "ct": 1687843428, - "e": 76806, - "f": "set_speed", - "g": 4, - "id": 294364408, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.06 - ] - ], - "p": 742543115, - "s": "b945", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 294364408, - "ingameEquippedId": "742543115" - }, - { - "code": "ecw6a_u", - "ct": 1687843510, - "e": 94030, - "f": "set_speed", - "g": 5, - "id": 294402286, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "s": "87ef", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 294402286, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1687843510, - "e": 94145, - "f": "set_cri", - "g": 5, - "id": 294402395, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 518421029, - "s": "96e0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 294402395, - "ingameEquippedId": "518421029" - }, - { - "code": "ecw6a_u", - "ct": 1687843510, - "e": 94339, - "f": "set_speed", - "g": 5, - "id": 294402419, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ] - ], - "p": 618609916, - "s": "ac3d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 21, - "rolls": 5 - } - ], - "ingameId": 294402419, - "ingameEquippedId": "618609916" - }, - { - "code": "ecw6w", - "ct": 1687843610, - "e": 87349, - "f": "set_speed", - "g": 5, - "id": 294448326, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "att_rate", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.06 - ] - ], - "s": "e41b", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 27, - "rolls": 5 - }, - { - "type": "EffectivenessPercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 294448326, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1687843611, - "e": 93835, - "f": "set_cri", - "g": 5, - "id": 294448584, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.03, - "c", - "change2_cri_2_1" - ] - ], - "s": "7a7d", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 294448584, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1687843724, - "e": 85238, - "f": "set_speed", - "g": 4, - "id": 294501141, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.01, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 403476926, - "s": "855e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 294501141, - "ingameEquippedId": "403476926" - }, - { - "code": "ecw6w", - "ct": 1687843725, - "e": 82230, - "f": "set_speed", - "g": 5, - "id": 294501452, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 180 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp", - 164 - ], - [ - "acc", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp", - 185 - ] - ], - "p": 48982864, - "s": "2ee", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "Health", - "value": 529, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 294501452, - "ingameEquippedId": "48982864" - }, - { - "code": "ecw6h_u", - "ct": 1687854931, - "e": 94412, - "f": "set_speed", - "g": 5, - "id": 299456471, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def", - 32 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "def", - 32 - ], - [ - "res", - 0.04, - "u" - ], - [ - "speed", - 0, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "speed", - 3, - "c", - "change2_speed_1_1" - ] - ], - "p": 389494760, - "s": "ad12", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1, - "modified": true - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Defense", - "value": 82, - "rolls": 2 - } - ], - "ingameId": 299456471, - "ingameEquippedId": "389494760" - }, - { - "code": "eah8n", - "ct": 1687856205, - "e": 94670, - "f": "set_speed", - "g": 5, - "id": 300013216, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah8_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.08 - ] - ], - "p": 279573776, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 26, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 300013216, - "ingameEquippedId": "279573776" - }, - { - "code": "ecw6n_u", - "ct": 1687858583, - "e": 98582, - "f": "set_speed", - "g": 5, - "id": 301032347, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 0 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5, - "c" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 566472035, - "s": "278", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 301032347, - "ingameEquippedId": "566472035" - }, - { - "code": "eah9r", - "ct": 1687858643, - "e": 93970, - "f": "set_acc", - "g": 5, - "id": 301056541, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah9_ring_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "att_rate", - 0.04 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 10, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 21, - "rolls": 4 - } - ], - "ingameId": 301056541, - "ingameEquippedId": "undefined" - }, - { - "code": "esu5b", - "ct": 1687873809, - "e": 88781, - "f": "set_speed", - "g": 5, - "id": 308004347, - "l": true, - "level": 71, - "mainStatBaseValue": 7, - "mainStatId": "un5_boot_m1", - "mainStatType": "speed", - "mainStatValue": 35, - "mg": 1111, - "op": [ - [ - "speed", - 7 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.03 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "p": 48982864, - "s": "2e84", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 35 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 308004347, - "ingameEquippedId": "48982864" - }, - { - "code": "ecb6w_u", - "ct": 1687956016, - "e": 94338, - "f": "set_res", - "g": 5, - "id": 336928771, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "res", - 0.04, - "u" - ] - ], - "p": 893757497, - "s": "562c", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 19, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 27, - "rolls": 3 - } - ], - "ingameId": 336928771, - "ingameEquippedId": "893757497" - }, - { - "code": "eah8h", - "ct": 1687961022, - "e": 112072, - "f": "set_speed", - "g": 5, - "id": 339227178, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah8_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ] - ], - "p": 226377978, - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 339227178, - "ingameEquippedId": "226377978" - }, - { - "code": "eah13r", - "ct": 1688017793, - "e": 103784, - "f": "set_cri", - "g": 5, - "id": 355445654, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah13_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 355445654, - "ingameEquippedId": "undefined" - }, - { - "code": "eap2w", - "ct": 1688017941, - "e": 82266, - "f": "set_att", - "g": 5, - "id": 355496057, - "l": true, - "level": 75, - "mainStatBaseValue": 93, - "mainStatId": "ap2_weap_m1", - "mainStatType": "att", - "mainStatValue": 465, - "mg": 1111, - "op": [ - [ - "att", - 93 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ] - ], - "p": 49161666, - "s": "7c69", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 465 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - } - ], - "ingameId": 355496057, - "ingameEquippedId": "49161666" - }, - { - "code": "eap2h", - "ct": 1688017941, - "e": 82301, - "f": "set_att", - "g": 5, - "id": 355496114, - "l": true, - "level": 75, - "mainStatBaseValue": 499, - "mainStatId": "ap2_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2495, - "mg": 1111, - "op": [ - [ - "max_hp", - 499 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "p": 48982864, - "s": "dc41", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2495 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - } - ], - "ingameId": 355496114, - "ingameEquippedId": "48982864" - }, - { - "code": "eap2a", - "ct": 1688017941, - "e": 88277, - "f": "set_att", - "g": 5, - "id": 355496155, - "l": true, - "level": 75, - "mainStatBaseValue": 55, - "mainStatId": "ap2_armo_m1", - "mainStatType": "def", - "mainStatValue": 275, - "mg": 1111, - "op": [ - [ - "def", - 55 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "4003", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 275 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 23, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 355496155, - "ingameEquippedId": "undefined" - }, - { - "code": "eap2b", - "ct": 1688017942, - "e": 88827, - "f": "set_att", - "g": 5, - "id": 355496195, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "ap2_boot_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.07 - ] - ], - "p": 140659207, - "s": "6300", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 355496195, - "ingameEquippedId": "140659207" - }, - { - "code": "eap2n", - "ct": 1688017942, - "e": 82552, - "f": "set_att", - "g": 5, - "id": 355496241, - "l": true, - "level": 75, - "mainStatBaseValue": 0.13, - "mainStatId": "ap2_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.05 - ] - ], - "s": "5951", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 25, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - } - ], - "ingameId": 355496241, - "ingameEquippedId": "undefined" - }, - { - "code": "eie18w", - "ct": 1688115660, - "e": 82084, - "f": "set_rage", - "g": 5, - "id": 384442889, - "l": true, - "level": 80, - "mainStatBaseValue": 95, - "mainStatId": "inf_wepo_m1", - "mainStatType": "att", - "mainStatValue": 475, - "mg": 1111, - "op": [ - [ - "att", - 95 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "2162", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 475 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 27, - "rolls": 4 - } - ], - "ingameId": 384442889, - "ingameEquippedId": "undefined" - }, - { - "code": "eih8n", - "ct": 1688128046, - "e": 97303, - "f": "set_immune", - "g": 5, - "id": 388326452, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ihf_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "att_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 3 - ] - ], - "s": "f47b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 3 - } - ], - "ingameId": 388326452, - "ingameEquippedId": "undefined" - }, - { - "code": "eih8w", - "ct": 1688440308, - "e": 93843, - "f": "set_acc", - "g": 5, - "id": 476567788, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ihf_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 5 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "8669", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 476567788, - "ingameEquippedId": "undefined" - }, - { - "code": "eah20r", - "ct": 1688564159, - "e": 94860, - "f": "set_acc", - "g": 5, - "id": 505480826, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah20_ring_m1", - "mainStatType": "acc", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "acc", - 0.13 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "p": 4647526, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectivenessPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 3 - } - ], - "ingameId": 505480826, - "ingameEquippedId": "4647526" - }, - { - "code": "eah17b", - "ct": 1688564752, - "e": 94860, - "f": "set_max_hp", - "g": 5, - "id": 505655177, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah17_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "p": 829105288, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 505655177, - "ingameEquippedId": "829105288" - }, - { - "code": "exc108801", - "ct": 1688569072, - "g": 5, - "id": 506952000, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "ek_c108801", - 2 - ] - ], - "p": 115835449, - "s": "3f0f" - }, - { - "code": "exc108801", - "ct": 1688569077, - "g": 5, - "id": 506953726, - "l": true, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.11 - ], - [ - "ek_c108801", - 3 - ] - ], - "s": "8343" - }, - { - "code": "exc107201", - "ct": 1688572703, - "g": 5, - "id": 508010364, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.14 - ], - [ - "ek_c107201", - 1 - ] - ], - "s": "c1eb" - }, - { - "code": "exc107201", - "ct": 1688572707, - "g": 5, - "id": 508011271, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.08 - ], - [ - "ek_c107201", - 3 - ] - ], - "s": "deec" - }, - { - "code": "eus6a", - "ct": 1688739974, - "e": 19484, - "f": "set_vampire", - "g": 5, - "id": 543925421, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "un6_armo_m1", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.08 - ] - ], - "s": "fdc1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 4, - "rolls": 1 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 543925421, - "ingameEquippedId": "undefined" - }, - { - "code": "eus6n", - "ct": 1688858564, - "e": 82510, - "f": "set_vampire", - "g": 5, - "id": 567279111, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "un6_neck_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.03 - ] - ], - "s": "e214", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 567279111, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1688888630, - "e": 73828, - "f": "set_speed", - "g": 4, - "id": 576858023, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "acc", - 0.12 - ], - [ - "max_hp", - 188 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 177 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "max_hp", - 190 - ] - ], - "s": "85a3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectivenessPercent", - "value": 60 - }, - "substats": [ - { - "type": "Health", - "value": 555, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 576858023, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1688888715, - "e": 73886, - "f": "set_speed", - "g": 4, - "id": 576888702, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ] - ], - "s": "f8a5", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 4 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1 - } - ], - "ingameId": 576888702, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1688889520, - "e": 98929, - "f": "set_speed", - "g": 5, - "id": 577173482, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp", - 159 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp", - 182 - ], - [ - "acc", - 0.05 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "p": 6885517, - "s": "2236", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Health", - "value": 453, - "rolls": 2 - } - ], - "ingameId": 577173482, - "ingameEquippedId": "6885517" - }, - { - "code": "ecw6r_u", - "ct": 1688890156, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 577397598, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "p": 713631381, - "s": "d67f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 577397598, - "ingameEquippedId": "713631381" - }, - { - "code": "ecw6w_u", - "ct": 1688890817, - "e": 98626, - "f": "set_speed", - "g": 5, - "id": 577631529, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "p": 166490, - "s": "1ca8", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 577631529, - "ingameEquippedId": "166490" - }, - { - "code": "eus6r", - "ct": 1688998892, - "e": 85244, - "f": "set_vampire", - "g": 5, - "id": 604863261, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "un6_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.05, - "c", - "change2_def_rate_1_1" - ] - ], - "s": "4b3f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 5, - "rolls": 1, - "modified": true - } - ], - "ingameId": 604863261, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1689039382, - "e": 85289, - "f": "set_cri", - "g": 4, - "id": 611475932, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.04, - "c" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "s": "251e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 5, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 21, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 611475932, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1689130450, - "e": 94183, - "f": "set_speed", - "g": 5, - "id": 629160765, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri_dmg", - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.11, - "c" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "p": 490684210, - "s": "e6c4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 3, - "modified": true - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 629160765, - "ingameEquippedId": "490684210" - }, - { - "code": "ecs7r", - "ct": 1689236282, - "e": 94079, - "f": "set_cri", - "g": 5, - "id": 648330212, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "cs7_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "p": 360878989, - "s": "4075", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 648330212, - "ingameEquippedId": "360878989" - }, - { - "code": "eah13a", - "ct": 1689437921, - "e": 98209, - "f": "set_cri", - "g": 5, - "id": 691030506, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah13_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ] - ], - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 8, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 691030506, - "ingameEquippedId": "undefined" - }, - { - "code": "eus7w", - "ct": 1689441497, - "e": 93851, - "f": "set_vampire", - "g": 5, - "id": 691587898, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "un7_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "1987", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 691587898, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1689503650, - "e": 94594, - "f": "set_speed", - "g": 5, - "id": 704893645, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "p": 117268286, - "s": "731d", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 704893645, - "ingameEquippedId": "117268286" - }, - { - "code": "ecw6a", - "ct": 1689503666, - "e": 80752, - "f": "set_speed", - "g": 4, - "id": 704897964, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 166 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 2 - ] - ], - "s": "fc1a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "Health", - "value": 166, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 704897964, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1689512515, - "e": 94270, - "f": "set_speed", - "g": 5, - "id": 707434259, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "max_hp", - 166 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp", - 56, - "u" - ] - ], - "s": "a4c4", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Health", - "value": 222, - "rolls": 1 - } - ], - "ingameId": 707434259, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h", - "ct": 1689514913, - "e": 8161, - "f": "set_speed", - "g": 5, - "id": 708193041, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "def", - 29 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "def", - 28 - ] - ], - "s": "a24b", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Defense", - "value": 57, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 708193041, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9n", - "ct": 1689601803, - "e": 94148, - "f": "set_penetrate", - "g": 5, - "id": 724488481, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "6b39", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 724488481, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6w_u", - "ct": 1689608997, - "e": 88270, - "f": "set_max_hp", - "g": 4, - "id": 726114158, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 40490456, - "s": "392e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 726114158, - "ingameEquippedId": "40490456" - }, - { - "code": "ecb6h_u", - "ct": 1689865820, - "e": 94287, - "f": "set_res", - "g": 5, - "id": 764162132, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def", - 32 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "def", - 31 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "p": 218403497, - "s": "f83b", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Defense", - "value": 81, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 764162132, - "ingameEquippedId": "218403497" - }, - { - "code": "eus7h", - "ct": 1689865963, - "e": 94122, - "f": "set_vampire", - "g": 5, - "id": 764197884, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "un7_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ] - ], - "s": "588a", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - } - ], - "ingameId": 764197884, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1689870973, - "e": 94589, - "f": "set_counter", - "g": 5, - "id": 765293871, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 360878989, - "s": "bb1b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 19, - "rolls": 2 - } - ], - "ingameId": 765293871, - "ingameEquippedId": "360878989" - }, - { - "code": "eus7a", - "ct": 1689955462, - "e": 94137, - "f": "set_vampire", - "g": 5, - "id": 787867181, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "un7_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "acc", - 0.09 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ] - ], - "p": 313179896, - "s": "ffa5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 787867181, - "ingameEquippedId": "313179896" - }, - { - "code": "ecd6h_u", - "ct": 1690021934, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 797246691, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "p": 49161666, - "s": "161", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 797246691, - "ingameEquippedId": "49161666" - }, - { - "code": "ecd6n", - "ct": 1690031207, - "f": "set_penetrate", - "g": 5, - "id": 798673712, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "att_rate", - 0.08 - ], - [ - "att", - 34 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.06 - ] - ], - "p": 440334191, - "s": "73a8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Attack", - "value": 34, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 798673712, - "ingameEquippedId": "440334191" - }, - { - "code": "ecd6h_u", - "ct": 1690035492, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 799418097, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri_dmg", - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05, - "c" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.05, - "u" - ] - ], - "s": "da89", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1, - "modified": true - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 33, - "rolls": 4 - } - ], - "ingameId": 799418097, - "ingameEquippedId": "undefined" - }, - { - "code": "eeu1h", - "ct": 1690035701, - "e": 82475, - "f": "set_max_hp", - "g": 5, - "id": 799455981, - "l": true, - "level": 80, - "mainStatBaseValue": 513, - "mainStatId": "eu1_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2565, - "mg": 1111, - "op": [ - [ - "max_hp", - 513 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "p": 830235768, - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2565 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 799455981, - "ingameEquippedId": "830235768" - }, - { - "code": "eot2n_u4", - "ct": 1690040029, - "e": 82726, - "f": "set_speed", - "g": 5, - "id": 800225597, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "ot2u_neck_m4", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.07 - ] - ], - "p": 31856726, - "s": "ca94", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 33, - "rolls": 5 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 800225597, - "ingameEquippedId": "31856726" - }, - { - "code": "ecb6a_u", - "ct": 1690040362, - "e": 93943, - "f": "set_res", - "g": 5, - "id": 800283637, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.07 - ], - [ - "max_hp", - 177 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "p": 90857803, - "s": "d14d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Health", - "value": 233, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 800283637, - "ingameEquippedId": "90857803" - }, - { - "code": "ecw6h", - "ct": 1690080024, - "e": 73895, - "f": "set_speed", - "g": 4, - "id": 805454737, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def", - 27 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "9473", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "Defense", - "value": 27, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 805454737, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1690109043, - "e": 87795, - "f": "set_speed", - "g": 4, - "id": 813012872, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 31856726, - "s": "6658", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 29, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 813012872, - "ingameEquippedId": "31856726" - }, - { - "code": "ecw6w", - "ct": 1690109103, - "e": 82418, - "f": "set_cri", - "g": 5, - "id": 813027691, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ] - ], - "s": "399a", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 813027691, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1690109104, - "e": 94995, - "f": "set_speed", - "g": 5, - "id": 813027749, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "p": 6844892, - "s": "7fa3", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 21, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 813027749, - "ingameEquippedId": "6844892" - }, - { - "code": "ecw6h", - "ct": 1690109210, - "e": 73845, - "f": "set_cri", - "g": 4, - "id": 813054588, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "def_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "p": 140659207, - "s": "d6b9", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 813054588, - "ingameEquippedId": "140659207" - }, - { - "code": "ecw6a_u", - "ct": 1690109361, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 813092363, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.07, - "c", - "change2_max_hp_rate_1_2" - ] - ], - "p": 99507012, - "s": "8ac1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 20, - "rolls": 4 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 813092363, - "ingameEquippedId": "99507012" - }, - { - "code": "ecw6h_u", - "ct": 1690109435, - "e": 95882, - "f": "set_speed", - "g": 5, - "id": 813111415, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "p": 21884461, - "s": "a122", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 813111415, - "ingameEquippedId": "21884461" - }, - { - "code": "ecd6r", - "ct": 1690111779, - "e": 4125, - "f": "set_revenge", - "g": 5, - "id": 813696804, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "att", - 40 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ] - ], - "s": "429f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "RevengeSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "Attack", - "value": 40, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 813696804, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1690116357, - "e": 84759, - "f": "set_speed", - "g": 4, - "id": 814879215, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "att_rate", - 0.06, - "c", - "change2_att_rate_1_1" - ] - ], - "s": "d21d", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 7, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 26, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 814879215, - "ingameEquippedId": "undefined" - }, - { - "code": "eus7n", - "ct": 1690124564, - "e": 95178, - "f": "set_vampire", - "g": 5, - "id": 817316274, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "un7_neck_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ] - ], - "s": "37e0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 817316274, - "ingameEquippedId": "undefined" - }, - { - "code": "exc106201", - "ct": 1690125190, - "g": 5, - "id": 817511469, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "ek_c106201", - 2 - ] - ], - "s": "972" - }, - { - "code": "exc106201", - "ct": 1690125197, - "g": 5, - "id": 817513776, - "l": true, - "mg": 1111, - "op": [ - [ - "speed", - 10 - ], - [ - "ek_c106201", - 3 - ] - ], - "p": 40490456, - "s": "b1c6" - }, - { - "code": "eus7r", - "ct": 1690128943, - "e": 94118, - "f": "set_vampire", - "g": 5, - "id": 818592178, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "un7_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0 - ], - [ - "cri_dmg", - 0.08, - "c", - "change2_cri_dmg_3_1" - ] - ], - "s": "e210", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 3, - "modified": true - } - ], - "ingameId": 818592178, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6a_u", - "ct": 1690206102, - "e": 94099, - "f": "set_penetrate", - "g": 5, - "id": 830173356, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_2_1" - ] - ], - "p": 777666204, - "s": "981a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 19, - "rolls": 5 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 830173356, - "ingameEquippedId": "777666204" - }, - { - "code": "eeu1n", - "ct": 1690207788, - "e": 82909, - "f": "set_max_hp", - "g": 5, - "id": 830527704, - "l": true, - "level": 80, - "mainStatBaseValue": 0.12, - "mainStatId": "eu1_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 830527704, - "ingameEquippedId": "undefined" - }, - { - "code": "eeu1b", - "ct": 1690209317, - "e": 82480, - "f": "set_max_hp", - "g": 5, - "id": 830852536, - "l": true, - "level": 80, - "mainStatBaseValue": 0.12, - "mainStatId": "eu1_boot_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.05 - ] - ], - "p": 412803674, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 21, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 830852536, - "ingameEquippedId": "412803674" - }, - { - "code": "eum13r", - "ct": 1690210222, - "e": 101761, - "f": "set_speed", - "g": 5, - "id": 831044760, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "um13_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ] - ], - "p": 549294853, - "s": "77d7", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 831044760, - "ingameEquippedId": "549294853" - }, - { - "code": "ecd6a_u", - "ct": 1690347105, - "e": 94029, - "f": "set_penetrate", - "g": 5, - "id": 847818635, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "s": "dc1d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 24, - "rolls": 4 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 847818635, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1690462574, - "e": 74030, - "f": "set_acc", - "g": 4, - "id": 862719491, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "acc", - 0.12 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "att", - 38 - ], - [ - "att", - 38 - ] - ], - "p": 313109293, - "s": "c71b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectivenessPercent", - "value": 60 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Attack", - "value": 76, - "rolls": 2 - } - ], - "ingameId": 862719491, - "ingameEquippedId": "313109293" - }, - { - "code": "ecw6r", - "ct": 1690462627, - "f": "set_speed", - "g": 5, - "id": 862728582, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def", - 34 - ], - [ - "acc", - 0.07 - ] - ], - "p": 522853044, - "s": "e06e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "Defense", - "value": 34, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 862728582, - "ingameEquippedId": "522853044" - }, - { - "code": "exc111901", - "ct": 1690475088, - "g": 5, - "id": 864858624, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.08 - ], - [ - "ek_c111901", - 2 - ] - ], - "s": "e6bc" - }, - { - "code": "exc111901", - "ct": 1690475119, - "g": 5, - "id": 864862856, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.11 - ], - [ - "ek_c111901", - 3 - ] - ], - "s": "2fab" - }, - { - "code": "exc111901", - "ct": 1690475122, - "g": 5, - "id": 864863306, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.08 - ], - [ - "ek_c111901", - 1 - ] - ], - "s": "1a7f" - }, - { - "code": "exc111901", - "ct": 1690475133, - "g": 5, - "id": 864864698, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "ek_c111901", - 1 - ] - ], - "s": "e969" - }, - { - "code": "ecd6h_u", - "ct": 1690518746, - "e": 93808, - "f": "set_penetrate", - "g": 5, - "id": 868975656, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.07, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "def_rate", - 0.06, - "c", - "change2_def_rate_1_1" - ] - ], - "p": 48988518, - "s": "775", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 39, - "rolls": 5 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 868975656, - "ingameEquippedId": "48988518" - }, - { - "code": "eah13n", - "ct": 1690540168, - "e": 95627, - "f": "set_cri", - "g": 5, - "id": 871856531, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ah13_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.04 - ] - ], - "p": 6844892, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 26, - "rolls": 4 - } - ], - "ingameId": 871856531, - "ingameEquippedId": "6844892" - }, - { - "code": "ecd6n", - "ct": 1690605473, - "e": 1982, - "f": "set_penetrate", - "g": 5, - "id": 879500420, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ] - ], - "s": "46ef", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 879500420, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6a_u", - "ct": 1690643568, - "e": 84464, - "f": "set_rage", - "g": 4, - "id": 884845052, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 690904230, - "s": "cb0a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "RageSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 884845052, - "ingameEquippedId": "690904230" - }, - { - "code": "ecd6h_u", - "ct": 1690798820, - "e": 93945, - "f": "set_penetrate", - "g": 5, - "id": 901246333, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "2866", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 27, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 901246333, - "ingameEquippedId": "undefined" - }, - { - "code": "eah15a", - "ct": 1690801483, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 901529896, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah15_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 2 - ] - ], - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 901529896, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85r_u", - "ct": 1690902137, - "e": 94687, - "f": "set_penetrate", - "g": 5, - "id": 911737411, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.06, - "c", - "change2_cri_dmg_1_1" - ] - ], - "p": 99507012, - "s": "5e57", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 911737411, - "ingameEquippedId": "99507012" - }, - { - "code": "eal85b_u", - "ct": 1690902290, - "e": 94146, - "f": "set_speed", - "g": 5, - "id": 911758443, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "u" - ] - ], - "s": "c342", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 4 - } - ], - "ingameId": 911758443, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1691074089, - "e": 94099, - "f": "set_speed", - "g": 5, - "id": 950034425, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "s": "35fd", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 25, - "rolls": 3 - } - ], - "ingameId": 950034425, - "ingameEquippedId": "undefined" - }, - { - "code": "eie18h", - "ct": 1691075357, - "e": 83405, - "f": "set_speed", - "g": 5, - "id": 950493439, - "l": true, - "level": 80, - "mainStatBaseValue": 513, - "mainStatId": "inf_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2565, - "mg": 1111, - "op": [ - [ - "max_hp", - 513 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.08 - ] - ], - "p": 403476926, - "s": "d401", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2565 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 32, - "rolls": 5 - } - ], - "ingameId": 950493439, - "ingameEquippedId": "403476926" - }, - { - "code": "ecw6w_u", - "ct": 1691121365, - "e": 101111, - "f": "set_speed", - "g": 5, - "id": 958807250, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 150271128, - "s": "19bf", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 958807250, - "ingameEquippedId": "150271128" - }, - { - "code": "eah20b", - "ct": 1691142135, - "e": 101483, - "f": "set_acc", - "g": 5, - "id": 964534414, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah20_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.09 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.09 - ] - ], - "p": 4647526, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 964534414, - "ingameEquippedId": "4647526" - }, - { - "code": "ecb6h_u", - "ct": 1691410155, - "e": 93862, - "f": "set_counter", - "g": 5, - "id": 1017122992, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "8568", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 31, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1017122992, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1691411464, - "e": 101090, - "f": "set_speed", - "g": 5, - "id": 1017307432, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "acc", - 0.05, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "s": "5a81", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 34, - "rolls": 4 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 1017307432, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6h_u", - "ct": 1691461375, - "e": 93769, - "f": "set_penetrate", - "g": 5, - "id": 1022018663, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "c", - "change1_cri_1_1" - ] - ], - "s": "d711", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 26, - "rolls": 4 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1, - "modified": true - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 1022018663, - "ingameEquippedId": "undefined" - }, - { - "code": "eih1w", - "ct": 1691487886, - "e": 97260, - "f": "set_max_hp", - "g": 5, - "id": 1024950442, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "imh_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "max_hp", - 179 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.04 - ] - ], - "s": "bdba", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Health", - "value": 179, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 22, - "rolls": 5 - } - ], - "ingameId": 1024950442, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1691503294, - "e": 97785, - "f": "set_speed", - "g": 5, - "id": 1026796743, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ] - ], - "p": 559859822, - "s": "f0b4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 1026796743, - "ingameEquippedId": "559859822" - }, - { - "code": "ecb6b_u", - "ct": 1691678257, - "e": 97121, - "f": "set_counter", - "g": 5, - "id": 1042548473, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 360878989, - "s": "1127", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 28, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 1042548473, - "ingameEquippedId": "360878989" - }, - { - "code": "eih3w", - "ct": 1691814405, - "e": 115173, - "f": "set_rage", - "g": 5, - "id": 1052966260, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "imh_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ] - ], - "s": "1bce", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 3 - } - ], - "ingameId": 1052966260, - "ingameEquippedId": "undefined" - }, - { - "code": "eeu1r", - "ct": 1691839543, - "e": 86277, - "f": "set_max_hp", - "g": 5, - "id": 1055351414, - "l": true, - "level": 80, - "mainStatBaseValue": 0.12, - "mainStatId": "eu1_ring_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.06 - ] - ], - "p": 40490456, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 30, - "rolls": 5 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 1055351414, - "ingameEquippedId": "40490456" - }, - { - "code": "eeu1w", - "ct": 1691852287, - "e": 82834, - "f": "set_max_hp", - "g": 5, - "id": 1056709008, - "l": true, - "level": 80, - "mainStatBaseValue": 95, - "mainStatId": "eu1_weap_m1", - "mainStatType": "att", - "mainStatValue": 475, - "mg": 1111, - "op": [ - [ - "att", - 95 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 475 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 1056709008, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w", - "ct": 1691907811, - "e": 39254, - "f": "set_counter", - "g": 5, - "id": 1061010023, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.04 - ] - ], - "s": "b698", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 12, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 1061010023, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1692026269, - "e": 93778, - "f": "set_speed", - "g": 5, - "id": 1071327894, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "p": 620426700, - "s": "f961", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 1071327894, - "ingameEquippedId": "620426700" - }, - { - "code": "eih2a", - "ct": 1692101668, - "e": 93913, - "f": "set_res", - "g": 5, - "id": 1076985972, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "imh_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.09 - ], - [ - "max_hp", - 198 - ], - [ - "res", - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0 - ], - [ - "res", - 0.11, - "c", - "change2_res_2_2" - ] - ], - "p": 412803674, - "s": "fbda", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 29, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Health", - "value": 198, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 11, - "rolls": 2, - "modified": true - } - ], - "ingameId": 1076985972, - "ingameEquippedId": "412803674" - }, - { - "code": "ecw6b_u", - "ct": 1692512618, - "e": 84392, - "f": "set_speed", - "g": 4, - "id": 1129638392, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.07, - "c" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "p": 590699704, - "s": "d2de", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1129638392, - "ingameEquippedId": "590699704" - }, - { - "code": "ecw6a", - "ct": 1692513162, - "e": 75600, - "f": "set_cri", - "g": 4, - "id": 1129744885, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "c18a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 21, - "rolls": 4 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1129744885, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1692548207, - "e": 93998, - "f": "set_speed", - "g": 5, - "id": 1136872192, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0 - ], - [ - "att_rate", - 0.1, - "c" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 490684210, - "s": "7de5", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 13, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 1136872192, - "ingameEquippedId": "490684210" - }, - { - "code": "ecw6n", - "ct": 1692548230, - "e": 86455, - "f": "set_acc", - "g": 5, - "id": 1136876675, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.05 - ] - ], - "p": 473350938, - "s": "8ef9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 25, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 1136876675, - "ingameEquippedId": "473350938" - }, - { - "code": "ecw6a_u", - "ct": 1692548556, - "e": 94048, - "f": "set_acc", - "g": 5, - "id": 1136939234, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.07, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "p": 899011010, - "s": "e06c", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 41, - "rolls": 5 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 1136939234, - "ingameEquippedId": "899011010" - }, - { - "code": "ecw6a", - "ct": 1692548556, - "e": 82031, - "f": "set_acc", - "g": 5, - "id": 1136939258, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.05 - ] - ], - "p": 117268286, - "s": "ff1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 1136939258, - "ingameEquippedId": "117268286" - }, - { - "code": "ecw6h_u", - "ct": 1692548594, - "e": 84411, - "f": "set_speed", - "g": 4, - "id": 1136946286, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 90857803, - "s": "7d8a", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 1136946286, - "ingameEquippedId": "90857803" - }, - { - "code": "ecw6r_u", - "ct": 1692585967, - "e": 115039, - "f": "set_cri", - "g": 5, - "id": 1142175659, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 1 - ], - [ - "max_hp_rate", - 0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.08, - "c", - "change2_max_hp_rate_1_1" - ] - ], - "p": 434015426, - "s": "9df7", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 25, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 1142175659, - "ingameEquippedId": "434015426" - }, - { - "code": "ecw6r_u", - "ct": 1692617283, - "e": 94457, - "f": "set_speed", - "g": 5, - "id": 1149229209, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 187 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp", - 165 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp", - 188 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp", - 168, - "u" - ] - ], - "s": "d043", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "Health", - "value": 708, - "rolls": 3 - } - ], - "ingameId": 1149229209, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r_u", - "ct": 1692617308, - "e": 94210, - "f": "set_speed", - "g": 5, - "id": 1149235477, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.04 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "def_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3, - "c" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ] - ], - "p": 166490, - "s": "63cb", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1, - "modified": true - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 1149235477, - "ingameEquippedId": "166490" - }, - { - "code": "eeu1a", - "ct": 1692630947, - "e": 82571, - "f": "set_max_hp", - "g": 5, - "id": 1152848167, - "l": true, - "level": 80, - "mainStatBaseValue": 57, - "mainStatId": "eu1_armo_m1", - "mainStatType": "def", - "mainStatValue": 285, - "mg": 1111, - "op": [ - [ - "def", - 57 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp", - 163, - "c", - "change2_max_hp_1_1" - ] - ], - "p": 739641017, - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 285 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 35, - "rolls": 5 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "Health", - "value": 163, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1152848167, - "ingameEquippedId": "739641017" - }, - { - "code": "eah12n", - "ct": 1692713222, - "e": 94759, - "f": "set_counter", - "g": 5, - "id": 1163632047, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ah12_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.08, - "c", - "change2_att_rate_1_2" - ] - ], - "p": 360878989, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 15, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1163632047, - "ingameEquippedId": "360878989" - }, - { - "code": "eah12w", - "ct": 1692713251, - "e": 94355, - "f": "set_counter", - "g": 5, - "id": 1163636420, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah12_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 17, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - } - ], - "ingameId": 1163636420, - "ingameEquippedId": "undefined" - }, - { - "code": "eah13h", - "ct": 1692968841, - "e": 94287, - "f": "set_cri", - "g": 5, - "id": 1196927356, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah13_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 25, - "rolls": 4 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 1196927356, - "ingameEquippedId": "undefined" - }, - { - "code": "eie18b", - "ct": 1693233259, - "e": 85966, - "f": "set_max_hp", - "g": 5, - "id": 1229545416, - "l": true, - "level": 80, - "mainStatBaseValue": 0.12, - "mainStatId": "inf_boot_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ] - ], - "p": 799495489, - "s": "167d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 1229545416, - "ingameEquippedId": "799495489" - }, - { - "code": "eih9n", - "ct": 1693236680, - "e": 94093, - "f": "set_penetrate", - "g": 5, - "id": 1230124571, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.06 - ] - ], - "p": 158971995, - "s": "253c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 1230124571, - "ingameEquippedId": "158971995" - }, - { - "code": "eal85b_u", - "ct": 1693398788, - "e": 98672, - "f": "set_speed", - "g": 5, - "id": 1246408859, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.04 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "acc", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 618609916, - "s": "b18e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 29, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 1246408859, - "ingameEquippedId": "618609916" - }, - { - "code": "ecs2h", - "ct": 1693468332, - "e": 82031, - "f": "set_immune", - "g": 5, - "id": 1254071924, - "l": true, - "level": 78, - "mainStatBaseValue": 513, - "mainStatId": "cs2_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2565, - "mg": 1111, - "op": [ - [ - "max_hp", - 513 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06, - "c", - "change2_cri_dmg_1_1" - ] - ], - "p": 559859824, - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2565 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 29, - "rolls": 5 - } - ], - "ingameId": 1254071924, - "ingameEquippedId": "559859824" - }, - { - "code": "ecs2r", - "ct": 1693468337, - "e": 84712, - "f": "set_cri", - "g": 5, - "id": 1254072762, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "cs2_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ] - ], - "p": 313179896, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 21, - "rolls": 5 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 1254072762, - "ingameEquippedId": "313179896" - }, - { - "code": "ecs2n", - "ct": 1693468341, - "e": 82921, - "f": "set_cri", - "g": 5, - "id": 1254073561, - "l": true, - "level": 78, - "mainStatBaseValue": 0.13, - "mainStatId": "cs2_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ] - ], - "p": 518421029, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 25, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 16, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 1254073561, - "ingameEquippedId": "518421029" - }, - { - "code": "eih2a", - "ct": 1693575313, - "e": 20628, - "f": "set_res", - "g": 5, - "id": 1266214181, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "imh_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.06 - ], - [ - "acc", - 0.09 - ], - [ - "cri", - 0.06 - ] - ], - "s": "1b63", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1266214181, - "ingameEquippedId": "undefined" - }, - { - "code": "ewb1h", - "ct": 1693836462, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1292938356, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "wb1_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ] - ], - "p": 583954927, - "s": "5175", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 1292938356, - "ingameEquippedId": "583954927" - }, - { - "code": "eah19n", - "ct": 1693840670, - "e": 94357, - "f": "set_speed", - "g": 5, - "id": 1293509714, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah19_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.04 - ] - ], - "p": 777666204, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 19, - "rolls": 5 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 1293509714, - "ingameEquippedId": "777666204" - }, - { - "code": "ela7b", - "ct": 1693874163, - "e": 94080, - "f": "set_vampire", - "g": 5, - "id": 1295540409, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "la7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ] - ], - "p": 326831592, - "s": "d3cb", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 34, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1295540409, - "ingameEquippedId": "326831592" - }, - { - "code": "eal85b_u", - "ct": 1693892577, - "e": 94039, - "f": "set_speed", - "g": 5, - "id": 1297578046, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.11, - "c" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 323638178, - "s": "46a4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 1297578046, - "ingameEquippedId": "323638178" - }, - { - "code": "eih9n", - "ct": 1693921011, - "e": 95760, - "f": "set_penetrate", - "g": 5, - "id": 1300670242, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.09 - ] - ], - "p": 461351155, - "s": "bdac", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 24, - "rolls": 4 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 1300670242, - "ingameEquippedId": "461351155" - }, - { - "code": "ela7r", - "ct": 1694051288, - "e": 95760, - "f": "set_immune", - "g": 5, - "id": 1311832421, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "att_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ] - ], - "s": "c359", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 27, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1311832421, - "ingameEquippedId": "undefined" - }, - { - "code": "ela7a", - "ct": 1694182220, - "e": 95760, - "f": "set_vampire", - "g": 5, - "id": 1319942405, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "la7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ] - ], - "p": 48988520, - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 1319942405, - "ingameEquippedId": "48988520" - }, - { - "code": "eiu51r", - "ct": 1694268912, - "e": 95592, - "f": "set_res", - "g": 5, - "id": 1327616181, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu51_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 0 - ], - [ - "speed", - 5, - "c", - "change2_speed_2_3" - ] - ], - "p": 90857803, - "s": "d99b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 2, - "modified": true - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 1327616181, - "ingameEquippedId": "90857803" - }, - { - "code": "ela7w", - "ct": 1694312566, - "e": 96383, - "f": "set_vampire", - "g": 5, - "id": 1330713921, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "la7_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06, - "c", - "change2_cri_dmg_1_1" - ] - ], - "p": 48988520, - "s": "4942", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 27, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 1330713921, - "ingameEquippedId": "48988520" - }, - { - "code": "ela7h", - "ct": 1694399170, - "e": 93856, - "f": "set_vampire", - "g": 5, - "id": 1339029649, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "la7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ] - ], - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 1339029649, - "ingameEquippedId": "undefined" - }, - { - "code": "eah19b", - "ct": 1694610303, - "e": 94920, - "f": "set_speed", - "g": 5, - "id": 1354490436, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah19_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.08 - ] - ], - "p": 96079748, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 1354490436, - "ingameEquippedId": "96079748" - }, - { - "code": "ela7n", - "ct": 1694693378, - "e": 93855, - "f": "set_immune", - "g": 5, - "id": 1360281980, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "la7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.06 - ] - ], - "p": 640588979, - "s": "bf97", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 28, - "rolls": 5 - } - ], - "ingameId": 1360281980, - "ingameEquippedId": "640588979" - }, - { - "code": "eah17r", - "ct": 1694710948, - "e": 94136, - "f": "set_max_hp", - "g": 5, - "id": 1362828555, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah17_ring_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ] - ], - "p": 620426700, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 25, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 30, - "rolls": 4 - } - ], - "ingameId": 1362828555, - "ingameEquippedId": "620426700" - }, - { - "code": "ess10n", - "ct": 1694785665, - "e": 82320, - "f": "set_speed", - "g": 5, - "id": 1368533909, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "ss10_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.06 - ] - ], - "p": 21884461, - "s": "d849", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 1368533909, - "ingameEquippedId": "21884461" - }, - { - "code": "eah10b", - "ct": 1694915637, - "e": 93800, - "f": "set_cri_dmg", - "g": 5, - "id": 1388427710, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah10_boot_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 3 - } - ], - "ingameId": 1388427710, - "ingameEquippedId": "undefined" - }, - { - "code": "eot2r_u1", - "ct": 1694917485, - "e": 83255, - "f": "set_rage", - "g": 5, - "id": 1388720566, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "ot2u_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "speed", - 3 - ], - [ - "def", - 32 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "p": 690904230, - "s": "1a22", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "Defense", - "value": 32, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 4 - } - ], - "ingameId": 1388720566, - "ingameEquippedId": "690904230" - }, - { - "code": "ecb6h_u", - "ct": 1694941950, - "e": 93771, - "f": "set_cri_dmg", - "g": 5, - "id": 1393005362, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ] - ], - "s": "32fe", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 20, - "rolls": 5 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 1393005362, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w", - "ct": 1694950763, - "e": 76440, - "f": "set_counter", - "g": 4, - "id": 1394544142, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 164 - ], - [ - "cri", - 0.05 - ] - ], - "s": "886d", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "Health", - "value": 164, - "rolls": 1 - } - ], - "ingameId": 1394544142, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w_u", - "ct": 1694950763, - "e": 84464, - "f": "set_res", - "g": 4, - "id": 1394544157, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.08, - "c", - "change1_att_rate_1_1" - ] - ], - "p": 306770592, - "s": "69ad", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1394544157, - "ingameEquippedId": "306770592" - }, - { - "code": "ecb6w_u", - "ct": 1694950763, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1394544167, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "f88", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 1394544167, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w_u", - "ct": 1694950851, - "e": 84375, - "f": "set_vampire", - "g": 4, - "id": 1394560081, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "75cf", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 1394560081, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w_u", - "ct": 1694950876, - "e": 84467, - "f": "set_cri_dmg", - "g": 4, - "id": 1394564468, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0 - ], - [ - "speed", - 2 - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.07, - "c", - "change2_att_rate_1_2" - ] - ], - "s": "97fa", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 19, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1394564468, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6h_u", - "ct": 1694951172, - "e": 98815, - "f": "set_res", - "g": 5, - "id": 1394616557, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 28398305, - "s": "7d62", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 36, - "rolls": 5 - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 1394616557, - "ingameEquippedId": "28398305" - }, - { - "code": "ecb6h_u", - "ct": 1694951273, - "e": 84419, - "f": "set_res", - "g": 4, - "id": 1394634189, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "res", - 0.07, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.05, - "c", - "change1_max_hp_rate_1_2" - ] - ], - "p": 566472035, - "s": "dec5", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 35, - "rolls": 5 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1394634189, - "ingameEquippedId": "566472035" - }, - { - "code": "ecb6h_u", - "ct": 1694951558, - "e": 86259, - "f": "set_cri_dmg", - "g": 4, - "id": 1394686000, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.06, - "c", - "change2_cri_dmg_1_1" - ] - ], - "s": "8a1f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 23, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1394686000, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1694956922, - "e": 95318, - "f": "set_res", - "g": 5, - "id": 1395712527, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 194 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07, - "c" - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "def_rate", - 0.07, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "f321", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "Health", - "value": 250, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 38, - "rolls": 5 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1395712527, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1694959631, - "e": 98528, - "f": "set_vampire", - "g": 5, - "id": 1396264718, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 3 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "bab7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1396264718, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6h_u", - "ct": 1695010279, - "e": 93772, - "f": "set_cri_dmg", - "g": 5, - "id": 1402663039, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.07, - "c" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "p": 158971995, - "s": "e913", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 15, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - } - ], - "ingameId": 1402663039, - "ingameEquippedId": "158971995" - }, - { - "code": "ecb6h_u", - "ct": 1695010338, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 1402672680, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.06, - "c" - ], - [ - "acc", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 6885517, - "s": "f4d", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 26, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 2, - "modified": true - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 1402672680, - "ingameEquippedId": "6885517" - }, - { - "code": "ecb6h_u", - "ct": 1695010338, - "e": 84467, - "f": "set_counter", - "g": 4, - "id": 1402672686, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.06, - "c", - "change2_def_rate_1_1" - ] - ], - "p": 568689715, - "s": "a272", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 7, - "rolls": 1, - "modified": true - }, - { - "type": "HealthPercent", - "value": 26, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1402672686, - "ingameEquippedId": "568689715" - }, - { - "code": "ecb6h", - "ct": 1695010338, - "e": 9797, - "f": "set_vampire", - "g": 5, - "id": 1402672720, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ] - ], - "s": "4ff", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 5, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1402672720, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6b_u", - "ct": 1695011147, - "e": 93799, - "f": "set_res", - "g": 5, - "id": 1402810067, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp", - 183 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp", - 162 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp", - 112, - "u" - ], - [ - "res", - 0.03, - "c", - "change1_res_1_1" - ] - ], - "p": 31856726, - "s": "8cb0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 4, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Health", - "value": 457, - "rolls": 2 - } - ], - "ingameId": 1402810067, - "ingameEquippedId": "31856726" - }, - { - "code": "ecb6h_u", - "ct": 1695011648, - "e": 97399, - "f": "set_cri_dmg", - "g": 5, - "id": 1402898503, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.06, - "c", - "change1_cri_dmg_2_2" - ] - ], - "p": 591089796, - "s": "2058", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 26, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 2, - "modified": true - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 1402898503, - "ingameEquippedId": "591089796" - }, - { - "code": "eah21n", - "ct": 1695109838, - "e": 93968, - "f": "set_cri_dmg", - "g": 5, - "id": 1415487105, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ah21_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 3 - ] - ], - "p": 738614105, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 1415487105, - "ingameEquippedId": "738614105" - }, - { - "code": "ecd6a_u", - "ct": 1695118195, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 1416222058, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.06, - "c" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 890790459, - "s": "aab2", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2, - "modified": true - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 27, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 1416222058, - "ingameEquippedId": "890790459" - }, - { - "code": "eah21a", - "ct": 1695218947, - "e": 94024, - "f": "set_cri_dmg", - "g": 5, - "id": 1424165891, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah21_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.09 - ] - ], - "p": 434015426, - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 1424165891, - "ingameEquippedId": "434015426" - }, - { - "code": "exc109001", - "ct": 1695482031, - "g": 5, - "id": 1444525856, - "l": true, - "mg": 1111, - "op": [ - [ - "res", - 0.11 - ], - [ - "ek_c109001", - 1 - ] - ], - "s": "f75a" - }, - { - "code": "eih4a", - "ct": 1695484860, - "e": 93750, - "f": "set_att", - "g": 5, - "id": 1444890132, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "imh_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ] - ], - "s": "9e2e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 23, - "rolls": 5 - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 1444890132, - "ingameEquippedId": "undefined" - }, - { - "code": "eum13n", - "ct": 1695702216, - "e": 92232, - "f": "set_speed", - "g": 5, - "id": 1462923960, - "l": true, - "level": 75, - "mainStatBaseValue": 0.12, - "mainStatId": "um13_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.04 - ] - ], - "p": 48982864, - "s": "5de", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 20, - "rolls": 4 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 1462923960, - "ingameEquippedId": "48982864" - }, - { - "code": "ecw6a", - "ct": 1695869369, - "e": 73864, - "f": "set_speed", - "g": 4, - "id": 1476441427, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.03 - ] - ], - "p": 403357976, - "s": "88df", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 1476441427, - "ingameEquippedId": "403357976" - }, - { - "code": "ecb6h_u", - "ct": 1695874459, - "e": 93815, - "f": "set_counter", - "g": 5, - "id": 1477587046, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "972d", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - } - ], - "ingameId": 1477587046, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1695874459, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1477587057, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "s": "97e7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 1477587057, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6b_u", - "ct": 1695874459, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1477587080, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "s": "c502", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 1477587080, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6n", - "ct": 1695874459, - "e": 82128, - "f": "set_counter", - "g": 5, - "id": 1477587102, - "l": true, - "level": 85, - "mainStatBaseValue": 0.13, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "6f0c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - } - ], - "ingameId": 1477587102, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6r_u", - "ct": 1695874460, - "e": 95090, - "f": "set_counter", - "g": 5, - "id": 1477587124, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ] - ], - "p": 96079743, - "s": "e14", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 23, - "rolls": 4 - } - ], - "ingameId": 1477587124, - "ingameEquippedId": "96079743" - }, - { - "code": "ecw6n", - "ct": 1695877024, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 1478142240, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp", - 180 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 0 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 0 - ], - [ - "speed", - 4, - "c", - "change2_speed_3_1" - ] - ], - "p": 590699704, - "s": "af7b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Health", - "value": 180, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 3, - "modified": true - } - ], - "ingameId": 1478142240, - "ingameEquippedId": "590699704" - }, - { - "code": "ecw6n", - "ct": 1695911806, - "e": 86688, - "f": "set_speed", - "g": 4, - "id": 1485375946, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "p": 659243748, - "s": "404f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 1485375946, - "ingameEquippedId": "659243748" - }, - { - "code": "ecw6a", - "ct": 1695914040, - "e": 87438, - "f": "set_acc", - "g": 4, - "id": 1485898799, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.05 - ] - ], - "s": "74df", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "Speed", - "value": 13, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 1485898799, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1695947410, - "e": 8161, - "f": "set_cri", - "g": 5, - "id": 1490172520, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.08 - ] - ], - "s": "a22c", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 1490172520, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1695948957, - "e": 98074, - "f": "set_speed", - "g": 5, - "id": 1490428702, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 1 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "p": 669363338, - "s": "4727", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 18, - "rolls": 3 - } - ], - "ingameId": 1490428702, - "ingameEquippedId": "669363338" - }, - { - "code": "ess11r", - "ct": 1695980630, - "e": 89880, - "f": "set_speed", - "g": 5, - "id": 1496409944, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "ss11_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.04 - ] - ], - "p": 218403497, - "s": "72a6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 25, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 1496409944, - "ingameEquippedId": "218403497" - }, - { - "code": "ecw6h_u", - "ct": 1695981528, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 1496567808, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def", - 29 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.05 - ], - [ - "att", - 40 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "def", - 29 - ], - [ - "speed", - 4 - ], - [ - "def", - 30 - ], - [ - "def", - 27, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "att", - 11, - "u" - ] - ], - "s": "e768", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Defense", - "value": 115, - "rolls": 3 - }, - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Attack", - "value": 51, - "rolls": 1 - } - ], - "ingameId": 1496567808, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h", - "ct": 1695981528, - "e": 74082, - "f": "set_speed", - "g": 4, - "id": 1496567838, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "att_rate", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.06 - ], - [ - "def", - 27 - ], - [ - "def_rate", - 0.05 - ] - ], - "p": 659243748, - "s": "33e7", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "Defense", - "value": 27, - "rolls": 1 - } - ], - "ingameId": 1496567838, - "ingameEquippedId": "659243748" - }, - { - "code": "ecw6w_u", - "ct": 1695981604, - "e": 93759, - "f": "set_speed", - "g": 5, - "id": 1496581052, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ] - ], - "p": 21884461, - "s": "15e8", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 27, - "rolls": 4 - } - ], - "ingameId": 1496581052, - "ingameEquippedId": "21884461" - }, - { - "code": "ecw6w", - "ct": 1695981634, - "e": 74592, - "f": "set_speed", - "g": 4, - "id": 1496586296, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "max_hp", - 187 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.07 - ] - ], - "s": "e914", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "Health", - "value": 187, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 1496586296, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1695981662, - "e": 84632, - "f": "set_speed", - "g": 4, - "id": 1496590728, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 795195383, - "s": "6b1e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 29, - "rolls": 4 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 1496590728, - "ingameEquippedId": "795195383" - }, - { - "code": "ecw6a", - "ct": 1695981662, - "e": 8569, - "f": "set_acc", - "g": 5, - "id": 1496590816, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.06 - ] - ], - "s": "54e5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1496590816, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n", - "ct": 1695981790, - "e": 90384, - "f": "set_speed", - "g": 5, - "id": 1496612742, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def", - 29 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def", - 28 - ], - [ - "speed", - 4 - ], - [ - "def", - 33 - ] - ], - "s": "4f67", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Defense", - "value": 90, - "rolls": 3 - } - ], - "ingameId": 1496612742, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r_u", - "ct": 1695984156, - "e": 94654, - "f": "set_speed", - "g": 5, - "id": 1497008762, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 0 - ], - [ - "speed", - 2, - "c" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "p": 389494760, - "s": "2d10", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 2, - "modified": true - } - ], - "ingameId": 1497008762, - "ingameEquippedId": "389494760" - }, - { - "code": "ecw6n", - "ct": 1695984169, - "e": 17752, - "f": "set_speed", - "g": 5, - "id": 1497010955, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def", - 29 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def", - 34 - ] - ], - "p": 545449824, - "s": "4c76", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Defense", - "value": 63, - "rolls": 2 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1497010955, - "ingameEquippedId": "545449824" - }, - { - "code": "ecw6r_u", - "ct": 1696000182, - "e": 93815, - "f": "set_speed", - "g": 5, - "id": 1500062217, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 1 - ], - [ - "speed", - 4 - ], - [ - "att", - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 1, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "att", - 46, - "c", - "change2_att_1_2" - ] - ], - "p": 494187001, - "s": "1124", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "Attack", - "value": 57, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 1500062217, - "ingameEquippedId": "494187001" - }, - { - "code": "ecw6h_u", - "ct": 1696352505, - "e": 86259, - "f": "set_speed", - "g": 4, - "id": 1541258505, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 1 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "p": 326831592, - "s": "4fff", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Speed", - "value": 15, - "rolls": 5 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 1541258505, - "ingameEquippedId": "326831592" - }, - { - "code": "ecw6a", - "ct": 1696352545, - "e": 74652, - "f": "set_speed", - "g": 4, - "id": 1541262139, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "921f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 1541262139, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu51w", - "ct": 1696429922, - "e": 3498, - "f": "set_rage", - "g": 5, - "id": 1550003470, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu51_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.07 - ] - ], - "s": "faa4", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 1550003470, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu31w", - "ct": 1696439752, - "e": 2352, - "f": "set_revenge", - "g": 5, - "id": 1551254123, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu31_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "dd48", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "RevengeSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 1551254123, - "ingameEquippedId": "undefined" - }, - { - "code": "eih7a", - "ct": 1696440299, - "e": 96600, - "f": "set_immune", - "g": 5, - "id": 1551301611, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "imh_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.09 - ], - [ - "cri", - 0.05 - ] - ], - "p": 110853212, - "s": "69dc", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 1551301611, - "ingameEquippedId": "110853212" - }, - { - "code": "ecw6w_u", - "ct": 1696693249, - "e": 103397, - "f": "set_speed", - "g": 5, - "id": 1570812246, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp", - 199 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp", - 56, - "u" - ] - ], - "p": 96079748, - "s": "92c7", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 16, - "rolls": 5 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Health", - "value": 255, - "rolls": 1 - } - ], - "ingameId": 1570812246, - "ingameEquippedId": "96079748" - }, - { - "code": "ecw6w_u", - "ct": 1696693259, - "e": 93815, - "f": "set_speed", - "g": 5, - "id": 1570813561, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 90857803, - "s": "8950", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 26, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 1570813561, - "ingameEquippedId": "90857803" - }, - { - "code": "eah21w", - "ct": 1696693632, - "e": 93823, - "f": "set_cri_dmg", - "g": 5, - "id": 1570859068, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah21_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "att_rate", - 0.09 - ], - [ - "att_rate", - 0.06 - ] - ], - "p": 591089796, - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 1570859068, - "ingameEquippedId": "591089796" - }, - { - "code": "exc101701", - "ct": 1696770186, - "g": 5, - "id": 1574475925, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "ek_c101701", - 2 - ] - ], - "s": "1a9e" - }, - { - "code": "exc101701", - "ct": 1696770190, - "g": 5, - "id": 1574476142, - "l": true, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "ek_c101701", - 3 - ] - ], - "p": 306770592, - "s": "1f15" - }, - { - "code": "ecs13w", - "ct": 1697089651, - "e": 82137, - "f": "set_speed", - "g": 5, - "id": 1587144632, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "cs13_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 3 - ] - ], - "s": "2eaf", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 1587144632, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6h", - "ct": 1697249128, - "e": 3094, - "f": "set_coop", - "g": 5, - "id": 1595378390, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "905a", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "UnitySet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 1595378390, - "ingameEquippedId": "undefined" - }, - { - "code": "eah19h", - "ct": 1697809217, - "e": 118324, - "f": "set_speed", - "g": 5, - "id": 1624804788, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah19_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ] - ], - "p": 897188455, - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 21, - "rolls": 5 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 1624804788, - "ingameEquippedId": "897188455" - }, - { - "code": "ecl23r", - "ct": 1698325785, - "e": 93856, - "f": "set_speed", - "g": 5, - "id": 1653826956, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "wc2023_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 1 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.03 - ] - ], - "p": 618609916, - "s": "f0e3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - } - ], - "ingameId": 1653826956, - "ingameEquippedId": "618609916" - }, - { - "code": "eiu12a", - "ct": 1698594482, - "f": "set_scar", - "g": 5, - "id": 1674412887, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu12_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "6e62", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1674412887, - "ingameEquippedId": "undefined" - }, - { - "code": "eah14b", - "ct": 1698757844, - "e": 95404, - "f": "set_res", - "g": 5, - "id": 1680890938, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah14_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.05 - ] - ], - "p": 226377978, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 1680890938, - "ingameEquippedId": "226377978" - }, - { - "code": "eiu11h", - "ct": 1698812238, - "e": 95060, - "f": "set_speed", - "g": 5, - "id": 1682787417, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu11_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ] - ], - "p": 739641017, - "s": "d736", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 27, - "rolls": 4 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1682787417, - "ingameEquippedId": "739641017" - }, - { - "code": "eda15h", - "ct": 1698812238, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 1682787418, - "l": true, - "level": 80, - "mainStatBaseValue": 513, - "mainStatId": "duna6_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2565, - "mg": 1111, - "op": [ - [ - "max_hp", - 513 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 2, - "c", - "change2_speed_1_1" - ] - ], - "p": 306859366, - "s": "6f70", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2565 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1, - "modified": true - }, - { - "type": "AttackPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 1682787418, - "ingameEquippedId": "306859366" - }, - { - "code": "eih9n", - "ct": 1698812369, - "e": 97409, - "f": "set_penetrate", - "g": 5, - "id": 1682793427, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.06 - ] - ], - "p": 306859366, - "s": "4db8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 1682793427, - "ingameEquippedId": "306859366" - }, - { - "code": "eah14r", - "ct": 1698934036, - "e": 95060, - "f": "set_res", - "g": 5, - "id": 1687751055, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah14_ring_m1", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 2 - ] - ], - "p": 279573776, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 24, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - } - ], - "ingameId": 1687751055, - "ingameEquippedId": "279573776" - }, - { - "code": "ecb6n_u", - "ct": 1699197498, - "e": 84463, - "f": "set_res", - "g": 4, - "id": 1702201074, - "l": true, - "level": 90, - "mainStatBaseValue": 0.12, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "cri", - 0.12, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "3372", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitChancePercent", - "value": 60 - }, - "substats": [ - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 1702201074, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6n_u", - "ct": 1699197520, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 1702203221, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp", - 186 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp", - 198 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "max_hp", - 112, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_1" - ] - ], - "p": 434015426, - "s": "859a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - }, - { - "type": "DefensePercent", - "value": 26, - "rolls": 3 - }, - { - "type": "Health", - "value": 496, - "rolls": 2 - } - ], - "ingameId": 1702203221, - "ingameEquippedId": "434015426" - }, - { - "code": "ecb6n_u", - "ct": 1699236439, - "e": 94231, - "f": "set_res", - "g": 5, - "id": 1703676098, - "l": true, - "level": 90, - "mainStatBaseValue": 0.12, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "cri", - 0.12, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "p": 461989175, - "s": "aba0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitChancePercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 28, - "rolls": 4 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1703676098, - "ingameEquippedId": "461989175" - }, - { - "code": "ecb6w_u", - "ct": 1699322044, - "e": 93770, - "f": "set_vampire", - "g": 5, - "id": 1707619478, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07, - "c" - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 798777729, - "s": "1b07", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 32, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 1707619478, - "ingameEquippedId": "798777729" - }, - { - "code": "ecb6h_u", - "ct": 1699322469, - "e": 93770, - "f": "set_cri_dmg", - "g": 5, - "id": 1707635213, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_2" - ] - ], - "s": "bd8f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 21, - "rolls": 5 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1707635213, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w_u", - "ct": 1699322993, - "e": 86067, - "f": "set_vampire", - "g": 4, - "id": 1707653977, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 313179896, - "s": "b375", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 1707653977, - "ingameEquippedId": "313179896" - }, - { - "code": "ecw6b", - "ct": 1699524396, - "e": 75692, - "f": "set_cri", - "g": 4, - "id": 1715726620, - "l": true, - "level": 85, - "mainStatBaseValue": 8, - "mainStatId": "cra6_boot_m", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att", - 35 - ], - [ - "def_rate", - 0.08 - ] - ], - "s": "dc71", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 40 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 2 - }, - { - "type": "Attack", - "value": 35, - "rolls": 1 - } - ], - "ingameId": 1715726620, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu31w", - "ct": 1699706143, - "e": 2292, - "f": "set_revenge", - "g": 5, - "id": 1728014892, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu31_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "eaed", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "RevengeSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 1728014892, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu51w", - "ct": 1700455409, - "e": 4664, - "f": "set_rage", - "g": 5, - "id": 1770631627, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu51_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.06 - ] - ], - "s": "a0a5", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 1770631627, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6n_u", - "ct": 1700532021, - "e": 93772, - "f": "set_rage", - "g": 5, - "id": 1773767234, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "def", - 30 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "def", - 9, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 690904230, - "s": "6105", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "Defense", - "value": 39, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 1773767234, - "ingameEquippedId": "690904230" - }, - { - "code": "eal85b_u", - "ct": 1700635875, - "e": 103685, - "f": "set_vampire", - "g": 5, - "id": 1777828559, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.05, - "c", - "change2_cri_dmg_1_1" - ] - ], - "s": "98b6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 15, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 1777828559, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85n_u", - "ct": 1700641764, - "e": 93829, - "f": "set_vampire", - "g": 5, - "id": 1778028869, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.07, - "c" - ], - [ - "acc", - 0.05, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "e7d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 32, - "rolls": 4 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1778028869, - "ingameEquippedId": "undefined" - }, - { - "code": "eah14a", - "ct": 1700803284, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 1783540481, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah14_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ] - ], - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 1783540481, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu21r", - "ct": 1700988861, - "e": 93856, - "f": "set_speed", - "g": 5, - "id": 1795607593, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu21_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ] - ], - "p": 559859822, - "s": "67f2", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - } - ], - "ingameId": 1795607593, - "ingameEquippedId": "559859822" - }, - { - "code": "eih4a", - "ct": 1700994850, - "f": "set_att", - "g": 5, - "id": 1796151091, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "imh_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "acc", - 0.09 - ] - ], - "s": "ee25", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 1796151091, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9n", - "ct": 1700994909, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 1796156402, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ] - ], - "s": "e6cb", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 1796156402, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1701103523, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1804369966, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0 - ], - [ - "res", - 0.08 - ], - [ - "att", - 42 - ], - [ - "att_rate", - 0.08 - ], - [ - "att", - 45 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "att", - 43 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.08, - "c" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "att", - 33, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "s": "d825", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Attack", - "value": 163, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 1804369966, - "ingameEquippedId": "undefined" - }, - { - "code": "exc202201", - "ct": 1701232533, - "g": 5, - "id": 1809058744, - "l": true, - "mg": 1111, - "op": [ - [ - "res", - 0.15 - ], - [ - "ek_c202201", - 2 - ] - ], - "s": "bbfc" - }, - { - "code": "exc202201", - "ct": 1701232540, - "g": 5, - "id": 1809059097, - "l": true, - "mg": 1111, - "op": [ - [ - "res", - 0.16 - ], - [ - "ek_c202201", - 3 - ] - ], - "p": 389494760, - "s": "68f7" - }, - { - "code": "eah17h", - "ct": 1701235250, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 1809176155, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah17_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ] - ], - "p": 326928979, - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 1809176155, - "ingameEquippedId": "326928979" - }, - { - "code": "eum13a", - "ct": 1701274041, - "e": 82032, - "f": "set_speed", - "g": 5, - "id": 1810869248, - "l": true, - "level": 78, - "mainStatBaseValue": 57, - "mainStatId": "um13_armo_m", - "mainStatType": "def", - "mainStatValue": 285, - "mg": 1111, - "op": [ - [ - "def", - 57 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "cri", - 0.05 - ] - ], - "p": 150271128, - "s": "68d9", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 285 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 19, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 1810869248, - "ingameEquippedId": "150271128" - }, - { - "code": "eiu12w", - "ct": 1701490284, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 1818219857, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu12_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.06 - ] - ], - "p": 795195383, - "s": "fcc0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 26, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - } - ], - "ingameId": 1818219857, - "ingameEquippedId": "795195383" - }, - { - "code": "eiu31n", - "ct": 1701506336, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 1818872512, - "l": true, - "level": 88, - "mainStatBaseValue": 0.12, - "mainStatId": "iu31_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "a31", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitChancePercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 1818872512, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1701508150, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1818940282, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "acc", - 0.07 - ], - [ - "att", - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att", - 0 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "att", - 22, - "u" - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "att", - 64, - "c", - "change2_att_2_1" - ] - ], - "s": "9ee3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Attack", - "value": 86, - "rolls": 2, - "modified": true - }, - { - "type": "AttackPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1818940282, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1701508620, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1818957037, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp", - 171 - ], - [ - "res", - 0.04 - ], - [ - "max_hp", - 160 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp", - 161 - ], - [ - "max_hp", - 191 - ], - [ - "acc", - 0.07, - "c" - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "max_hp", - 224, - "u" - ] - ], - "p": 389494760, - "s": "794b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Health", - "value": 907, - "rolls": 4 - } - ], - "ingameId": 1818957037, - "ingameEquippedId": "389494760" - }, - { - "code": "eal85b_u", - "ct": 1701508668, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1818958688, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "p": 241191727, - "s": "b2fc", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 1818958688, - "ingameEquippedId": "241191727" - }, - { - "code": "eot3r_u2", - "ct": 1701839954, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1830795504, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_ring_m2", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 180 - ], - [ - "def", - 38 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "def", - 38 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ] - ], - "p": 6885517, - "s": "165c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 8, - "rolls": 3 - }, - { - "type": "Health", - "value": 180, - "rolls": 1 - }, - { - "type": "Defense", - "value": 76, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 1830795504, - "ingameEquippedId": "6885517" - }, - { - "code": "ewb1r", - "ct": 1701935651, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1834878032, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "wb1_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "acc", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "s": "a2b8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 1834878032, - "ingameEquippedId": "undefined" - }, - { - "code": "ecs12w", - "ct": 1701953800, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 1836149988, - "l": true, - "level": 78, - "mainStatBaseValue": 95, - "mainStatId": "cs12_weap_m1", - "mainStatType": "att", - "mainStatValue": 475, - "mg": 1111, - "op": [ - [ - "att", - 95 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ] - ], - "p": 549294853, - "s": "35fc", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 475 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 1836149988, - "ingameEquippedId": "549294853" - }, - { - "code": "exc112301", - "ct": 1701953816, - "g": 5, - "id": 1836151170, - "l": true, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.14 - ], - [ - "ek_c112301", - 1 - ] - ], - "s": "e6a9" - }, - { - "code": "ere_sp_w", - "ct": 1701996691, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1838332519, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ere_sp_w_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_2" - ] - ], - "s": "c260", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 26, - "rolls": 4 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1838332519, - "ingameEquippedId": "undefined" - }, - { - "code": "ere_sp_h", - "ct": 1701996691, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1838332524, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ere_sp_h_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.05 - ] - ], - "p": 99507012, - "s": "cc6c", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 1838332524, - "ingameEquippedId": "99507012" - }, - { - "code": "ere_sp_a", - "ct": 1701996691, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1838332525, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ere_sp_a_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.06 - ] - ], - "p": 4647526, - "s": "89b4", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 1838332525, - "ingameEquippedId": "4647526" - }, - { - "code": "ere_sp_n", - "ct": 1701996691, - "e": 93856, - "f": "set_speed", - "g": 5, - "id": 1838332526, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ere_sp_n_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "max_hp", - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp", - 0 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp", - 305, - "c", - "change2_max_hp_2_1" - ] - ], - "p": 226377978, - "s": "1a8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "Health", - "value": 305, - "rolls": 2, - "modified": true - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 1838332526, - "ingameEquippedId": "226377978" - }, - { - "code": "ere_sp_r", - "ct": 1701996691, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1838332527, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ere_sp_r_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "att_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.09 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ] - ], - "p": 225876663, - "s": "3949", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 1838332527, - "ingameEquippedId": "225876663" - }, - { - "code": "ere_sp_b", - "ct": 1701996691, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1838332528, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ere_sp_b_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.09 - ], - [ - "att_rate", - 0.07 - ] - ], - "p": 518421029, - "s": "d516", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 1838332528, - "ingameEquippedId": "518421029" - }, - { - "code": "eiu51r", - "ct": 1702020029, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 1839826439, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu51_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "cri_dmg", - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0 - ], - [ - "res", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.09, - "c", - "change2_cri_dmg_2_2" - ] - ], - "s": "652a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 9, - "rolls": 2, - "modified": true - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - } - ], - "ingameId": 1839826439, - "ingameEquippedId": "undefined" - }, - { - "code": "exc101601", - "ct": 1702025934, - "g": 5, - "id": 1840127454, - "l": true, - "mg": 1111, - "op": [ - [ - "acc", - 0.12 - ], - [ - "ek_c101601", - 1 - ] - ], - "p": 525461035, - "s": "52c0" - }, - { - "code": "exc208501", - "ct": 1702026000, - "g": 5, - "id": 1840130722, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.08 - ], - [ - "ek_c208501", - 3 - ] - ], - "s": "f8ea" - }, - { - "code": "exc208501", - "ct": 1702026013, - "g": 5, - "id": 1840131324, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "ek_c208501", - 3 - ] - ], - "s": "8899" - }, - { - "code": "exc111901", - "ct": 1702026413, - "g": 5, - "id": 1840150222, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.14 - ], - [ - "ek_c111901", - 1 - ] - ], - "p": 306859366, - "s": "9742" - }, - { - "code": "eah19r", - "ct": 1702355451, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1858123965, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah19_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att", - 0 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "att", - 0 - ], - [ - "att", - 0 - ], - [ - "att", - 101, - "c", - "change2_att_3_1" - ] - ], - "p": 518782830, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Attack", - "value": 101, - "rolls": 3, - "modified": true - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 1858123965, - "ingameEquippedId": "518782830" - }, - { - "code": "ecd6w_u", - "ct": 1702434780, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 1862090546, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.07, - "c" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "p": 158971995, - "s": "3ff2", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 20, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1862090546, - "ingameEquippedId": "158971995" - }, - { - "code": "ecd6h_u", - "ct": 1702434780, - "e": 84462, - "f": "set_torrent", - "g": 4, - "id": 1862090550, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att", - 34 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att", - 11, - "u" - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 0, - "u" - ], - [ - "speed", - 4, - "c", - "change2_speed_1_2" - ] - ], - "p": 890790459, - "s": "4e10", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Attack", - "value": 45, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1862090550, - "ingameEquippedId": "890790459" - }, - { - "code": "ere_co_w", - "ct": 1702596384, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1870371729, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ere_co_w_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.06 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ] - ], - "s": "6a15", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 25, - "rolls": 3 - } - ], - "ingameId": 1870371729, - "ingameEquippedId": "undefined" - }, - { - "code": "ere_co_h", - "ct": 1702596384, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1870371734, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ere_co_h_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ] - ], - "p": 180232242, - "s": "b556", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 1870371734, - "ingameEquippedId": "180232242" - }, - { - "code": "ere_co_a", - "ct": 1702596384, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1870371735, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ere_co_a_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.06 - ] - ], - "s": "123b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 1870371735, - "ingameEquippedId": "undefined" - }, - { - "code": "ere_co_n", - "ct": 1702596384, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1870371737, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ere_co_n_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ] - ], - "p": 96079743, - "s": "4446", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 1870371737, - "ingameEquippedId": "96079743" - }, - { - "code": "ere_co_r", - "ct": 1702596384, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1870371742, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ere_co_r_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri_dmg", - 0.08 - ] - ], - "p": 568689715, - "s": "afdf", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 29, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 1870371742, - "ingameEquippedId": "568689715" - }, - { - "code": "ere_co_b", - "ct": 1702596384, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1870371743, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ere_co_b_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.05 - ] - ], - "p": 568689715, - "s": "ec07", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 1870371743, - "ingameEquippedId": "568689715" - }, - { - "code": "ecw6w_u", - "ct": 1702707180, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 1876168756, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "p": 360878989, - "s": "642d", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 20, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 1876168756, - "ingameEquippedId": "360878989" - }, - { - "code": "exc112202", - "ct": 1702827763, - "g": 5, - "id": 1890516830, - "l": true, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "ek_c112202", - 2 - ] - ], - "s": "a775" - }, - { - "code": "ecw6a", - "ct": 1702876091, - "e": 73828, - "f": "set_speed", - "g": 4, - "id": 1893825637, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ] - ], - "s": "57e3", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 1893825637, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n", - "ct": 1702893818, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 1895726655, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0 - ], - [ - "res", - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.06, - "c", - "change1_res_2_1" - ] - ], - "s": "ec5c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 2, - "modified": true - } - ], - "ingameId": 1895726655, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1702894050, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1895749753, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0 - ], - [ - "att_rate", - 0.14, - "c" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "p": 99507012, - "s": "bb8b", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 20, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 3, - "modified": true - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 1895749753, - "ingameEquippedId": "99507012" - }, - { - "code": "ecw6n_u", - "ct": 1702894119, - "e": 84375, - "f": "set_cri", - "g": 4, - "id": 1895756907, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0 - ], - [ - "def_rate", - 0.05 - ], - [ - "att_rate", - 0.05, - "c" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "p": 583954927, - "s": "61e5", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1895756907, - "ingameEquippedId": "583954927" - }, - { - "code": "ecw6w_u", - "ct": 1702894144, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1895759346, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "res", - 0.06 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.04 - ], - [ - "res", - 0.03, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 306859366, - "s": "57a5", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 1895759346, - "ingameEquippedId": "306859366" - }, - { - "code": "ecw6n", - "ct": 1702894249, - "f": "set_speed", - "g": 5, - "id": 1895770976, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_neck_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.07 - ] - ], - "p": 522853044, - "s": "c819", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 1895770976, - "ingameEquippedId": "522853044" - }, - { - "code": "ecw6n", - "ct": 1702894286, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 1895774983, - "level": 85, - "mainStatBaseValue": 0.13, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "def", - 32 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ] - ], - "p": 323638178, - "s": "b780", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Defense", - "value": 32, - "rolls": 1 - } - ], - "ingameId": 1895774983, - "ingameEquippedId": "323638178" - }, - { - "code": "ecw6a_u", - "ct": 1702894352, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1895781680, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 0 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "speed", - 0, - "u" - ], - [ - "speed", - 4, - "c", - "change2_speed_1_3" - ] - ], - "p": 241191727, - "s": "de72", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1895781680, - "ingameEquippedId": "241191727" - }, - { - "code": "ecw6h_u", - "ct": 1702895147, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 1895864631, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.06, - "c", - "change2_cri_dmg_1_1" - ] - ], - "p": 434015426, - "s": "6338", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1, - "modified": true - }, - { - "type": "DefensePercent", - "value": 33, - "rolls": 4 - } - ], - "ingameId": 1895864631, - "ingameEquippedId": "434015426" - }, - { - "code": "ecw6w", - "ct": 1702895239, - "e": 73828, - "f": "set_cri", - "g": 4, - "id": 1895874138, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 164 - ], - [ - "speed", - 2 - ] - ], - "s": "b84a", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "Health", - "value": 164, - "rolls": 1 - } - ], - "ingameId": 1895874138, - "ingameEquippedId": "undefined" - }, - { - "code": "exc112302", - "ct": 1702948244, - "g": 5, - "id": 1899778700, - "l": true, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.14 - ], - [ - "ek_c112302", - 2 - ] - ], - "s": "6390" - }, - { - "code": "exc112303", - "ct": 1702966727, - "g": 5, - "id": 1900700611, - "l": true, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.14 - ], - [ - "ek_c112303", - 3 - ] - ], - "s": "6cb0" - }, - { - "code": "euq7h", - "ct": 1703040014, - "e": 82031, - "f": "set_cri_dmg", - "g": 5, - "id": 1903537842, - "l": true, - "level": 78, - "mainStatBaseValue": 513, - "mainStatId": "uq7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2565, - "mg": 1111, - "op": [ - [ - "max_hp", - 513 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ] - ], - "s": "fb7c", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2565 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 20, - "rolls": 3 - } - ], - "ingameId": 1903537842, - "ingameEquippedId": "undefined" - }, - { - "code": "euq7a", - "ct": 1703041994, - "e": 82031, - "f": "set_cri_dmg", - "g": 5, - "id": 1903619236, - "l": true, - "level": 78, - "mainStatBaseValue": 57, - "mainStatId": "uq7_armo_m", - "mainStatType": "def", - "mainStatValue": 285, - "mg": 1111, - "op": [ - [ - "def", - 57 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "p": 784315107, - "s": "9d73", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 285 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 1903619236, - "ingameEquippedId": "784315107" - }, - { - "code": "euq7n", - "ct": 1703047131, - "e": 82031, - "f": "set_cri", - "g": 5, - "id": 1903827158, - "level": 78, - "mainStatBaseValue": 0.13, - "mainStatId": "uq7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.06 - ] - ], - "s": "e681", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 17, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 1903827158, - "ingameEquippedId": "undefined" - }, - { - "code": "euq7w", - "ct": 1703047131, - "e": 82086, - "f": "set_cri_dmg", - "g": 5, - "id": 1903827162, - "l": true, - "level": 78, - "mainStatBaseValue": 95, - "mainStatId": "uq7_weap_m", - "mainStatType": "att", - "mainStatValue": 475, - "mg": 1111, - "op": [ - [ - "att", - 95 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "a483", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 475 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 35, - "rolls": 5 - } - ], - "ingameId": 1903827162, - "ingameEquippedId": "undefined" - }, - { - "code": "euq7b", - "ct": 1703047132, - "e": 82086, - "f": "set_cri_dmg", - "g": 5, - "id": 1903827192, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "uq7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "p": 525461035, - "s": "e498", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 1903827192, - "ingameEquippedId": "525461035" - }, - { - "code": "euq7r", - "ct": 1703047132, - "e": 82031, - "f": "set_cri", - "g": 5, - "id": 1903827211, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "uq7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ] - ], - "p": 659243748, - "s": "8afb", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 14, - "rolls": 5 - } - ], - "ingameId": 1903827211, - "ingameEquippedId": "659243748" - }, - { - "code": "ecw6h_u", - "ct": 1703141661, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1906756378, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0 - ], - [ - "acc", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "att_rate", - 0.08, - "c", - "change2_att_rate_1_2" - ] - ], - "p": 494187001, - "s": "757a", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 9, - "rolls": 1, - "modified": true - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 29, - "rolls": 4 - }, - { - "type": "Speed", - "value": 14, - "rolls": 3 - } - ], - "ingameId": 1906756378, - "ingameEquippedId": "494187001" - }, - { - "code": "ecw6h", - "ct": 1703141678, - "e": 82031, - "f": "set_acc", - "g": 5, - "id": 1906757106, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.03 - ] - ], - "p": 117268286, - "s": "bd7", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 26, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 1906757106, - "ingameEquippedId": "117268286" - }, - { - "code": "ecw6a", - "ct": 1703175377, - "e": 73828, - "f": "set_speed", - "g": 4, - "id": 1908105131, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "s": "50e7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 1908105131, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1703175377, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1908105139, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "def_rate", - 0.07, - "c", - "change2_def_rate_1_2" - ] - ], - "p": 894623419, - "s": "ac7c", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 29, - "rolls": 4 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 1908105139, - "ingameEquippedId": "894623419" - }, - { - "code": "ecw6a_u", - "ct": 1703175406, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1908106285, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 218403497, - "s": "6abd", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 26, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 1908106285, - "ingameEquippedId": "218403497" - }, - { - "code": "eum13b", - "ct": 1703213230, - "e": 82080, - "f": "set_speed", - "g": 5, - "id": 1908937718, - "l": true, - "level": 78, - "mainStatBaseValue": 8, - "mainStatId": "um13_boot_m", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.04, - "c", - "change2_cri_dmg_1_1" - ] - ], - "p": 279573776, - "s": "13cd", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 40 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 18, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 4, - "rolls": 1, - "modified": true - } - ], - "ingameId": 1908937718, - "ingameEquippedId": "279573776" - }, - { - "code": "ecs12a", - "ct": 1703308864, - "e": 82031, - "f": "set_cri", - "g": 5, - "id": 1913449308, - "l": true, - "level": 78, - "mainStatBaseValue": 57, - "mainStatId": "cs12_armo_m1", - "mainStatType": "def", - "mainStatValue": 285, - "mg": 1111, - "op": [ - [ - "def", - 57 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "p": 480028811, - "s": "9e29", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 285 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 1913449308, - "ingameEquippedId": "480028811" - }, - { - "code": "exc112203", - "ct": 1703315091, - "g": 5, - "id": 1914229424, - "l": true, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "ek_c112203", - 3 - ] - ], - "s": "1da2" - }, - { - "code": "eiu21r", - "ct": 1703345070, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1918328237, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu21_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.06 - ] - ], - "s": "c163", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 1918328237, - "ingameEquippedId": "undefined" - }, - { - "code": "exc112201", - "ct": 1703377846, - "g": 5, - "id": 1920730843, - "l": true, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "ek_c112201", - 1 - ] - ], - "s": "250a" - }, - { - "code": "ecw6a", - "ct": 1703431685, - "e": 73828, - "f": "set_speed", - "g": 4, - "id": 1927057511, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "p": 545449824, - "s": "4f20", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 1927057511, - "ingameEquippedId": "545449824" - }, - { - "code": "eah19a", - "ct": 1703484568, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1931044545, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah19_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ] - ], - "p": 207190343, - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 1931044545, - "ingameEquippedId": "207190343" - }, - { - "code": "exc103901", - "ct": 1703485979, - "g": 5, - "id": 1931179435, - "mg": 1111, - "op": [ - [ - "cri", - 0.09 - ], - [ - "ek_c103901", - 3 - ] - ], - "s": "c296" - }, - { - "code": "exc103901", - "ct": 1703485985, - "g": 5, - "id": 1931180015, - "l": true, - "mg": 1111, - "op": [ - [ - "cri", - 0.06 - ], - [ - "ek_c103901", - 2 - ] - ], - "s": "6948" - }, - { - "code": "eih9n", - "ct": 1703486429, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 1931224415, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.08 - ] - ], - "p": 490684210, - "s": "8b0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 1931224415, - "ingameEquippedId": "490684210" - }, - { - "code": "ecw6w", - "ct": 1703502922, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 1932781906, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 2, - "c", - "change1_speed_1_1" - ] - ], - "p": 894623419, - "s": "ca47", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1, - "modified": true - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 1932781906, - "ingameEquippedId": "894623419" - }, - { - "code": "ecw6w", - "ct": 1703502922, - "e": 82143, - "f": "set_acc", - "g": 5, - "id": 1932781920, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "res", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "p": 6911147, - "s": "d27", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 1932781920, - "ingameEquippedId": "6911147" - }, - { - "code": "ecw6h", - "ct": 1703646613, - "f": "set_cri", - "g": 5, - "id": 1940430552, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.06 - ] - ], - "s": "dd76", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1940430552, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1703646688, - "e": 84375, - "f": "set_cri", - "g": 4, - "id": 1940434100, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "182f", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1940434100, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1703646688, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1940434101, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "1ff2", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 28, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 1940434101, - "ingameEquippedId": "undefined" - }, - { - "code": "eah22n", - "ct": 1704069210, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 1957909968, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah22_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 3 - } - ], - "ingameId": 1957909968, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1704095124, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1959203877, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08, - "c" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 150271128, - "s": "a559", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 11, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 1959203877, - "ingameEquippedId": "150271128" - }, - { - "code": "eal85r_u", - "ct": 1704177759, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1962235405, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04, - "c" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "7550", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 25, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 1962235405, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1704252274, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1964804569, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "p": 279573776, - "s": "68e3", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 1964804569, - "ingameEquippedId": "279573776" - }, - { - "code": "ecw6w_u", - "ct": 1704254341, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1964886762, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "s": "b875", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 1964886762, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1704379061, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 1968811157, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 894623419, - "s": "943f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1968811157, - "ingameEquippedId": "894623419" - }, - { - "code": "ecd6n_u", - "ct": 1704609216, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 1982634674, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 2 - ], - [ - "speed", - 3 - ], - [ - "att", - 42 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.06 - ], - [ - "att", - 43 - ], - [ - "att_rate", - 0.04 - ], - [ - "att", - 39 - ], - [ - "speed", - 1, - "u" - ], - [ - "att", - 33, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "s": "ad05", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "Attack", - "value": 157, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 20, - "rolls": 3 - } - ], - "ingameId": 1982634674, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu32h", - "ct": 1704611861, - "e": 93802, - "f": "set_cri", - "g": 5, - "id": 1982871811, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu32_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "p": 549294853, - "s": "3de6", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 1982871811, - "ingameEquippedId": "549294853" - }, - { - "code": "eiu52r", - "ct": 1704616985, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1983314284, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu52_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ] - ], - "s": "bf4f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 3 - } - ], - "ingameId": 1983314284, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu11h", - "ct": 1704619286, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1983504651, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu11_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ] - ], - "p": 518421029, - "s": "cac", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 1983504651, - "ingameEquippedId": "518421029" - }, - { - "code": "eiu41a", - "ct": 1704631506, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 1984528251, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu41_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.09 - ] - ], - "s": "8a4e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 1984528251, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9r", - "ct": 1704631650, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 1984540949, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "imh_ring_m11", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.09 - ] - ], - "p": 28398305, - "s": "2be4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 1984540949, - "ingameEquippedId": "28398305" - }, - { - "code": "eah19w", - "ct": 1704633388, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1984695828, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah19_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.07 - ] - ], - "p": 518782830, - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 36, - "rolls": 5 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 1984695828, - "ingameEquippedId": "518782830" - }, - { - "code": "eal85b_u", - "ct": 1704636015, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1984935372, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def", - 34 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "def", - 28 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "s": "9f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Defense", - "value": 80, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 1984935372, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1704856091, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 1992544299, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0 - ], - [ - "max_hp", - 160 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp", - 190 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.07, - "c" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "max_hp", - 112, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "2c0c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "Health", - "value": 462, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 24, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 1992544299, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6a", - "ct": 1704948019, - "e": 82085, - "f": "set_torrent", - "g": 5, - "id": 1996773798, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "max_hp", - 199 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 191 - ] - ], - "s": "2b31", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "Speed", - "value": 7, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Health", - "value": 390, - "rolls": 2 - } - ], - "ingameId": 1996773798, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1704949315, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 1996948269, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "res", - 0.05, - "u" - ] - ], - "p": 636577158, - "s": "cae", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 29, - "rolls": 4 - } - ], - "ingameId": 1996948269, - "ingameEquippedId": "636577158" - }, - { - "code": "ecd6a", - "ct": 1705030549, - "f": "set_torrent", - "g": 5, - "id": 2002995558, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp", - 193 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ] - ], - "s": "2a5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Health", - "value": 193, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2002995558, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6h_u", - "ct": 1705030559, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2002996261, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "49b0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 2002996261, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1705035322, - "e": 84411, - "f": "set_cri_dmg", - "g": 4, - "id": 2003362268, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "p": 48988518, - "s": "c6e3", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 2 - } - ], - "ingameId": 2003362268, - "ingameEquippedId": "48988518" - }, - { - "code": "ecb6a", - "ct": 1705038404, - "e": 9560, - "f": "set_counter", - "g": 5, - "id": 2003602517, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.05 - ] - ], - "s": "45", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 3 - } - ], - "ingameId": 2003602517, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6h_u", - "ct": 1705041755, - "e": 93804, - "f": "set_cri_dmg", - "g": 5, - "id": 2003857003, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att", - 46 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att", - 35 - ], - [ - "att", - 22, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "p": 847822619, - "s": "fc3a", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Attack", - "value": 103, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 25, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2003857003, - "ingameEquippedId": "847822619" - }, - { - "code": "ecb6w_u", - "ct": 1705050363, - "e": 84375, - "f": "set_res", - "g": 4, - "id": 2004501127, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "s": "1352", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2004501127, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1705053072, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 2004697268, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "s": "629", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 30, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2004697268, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w_u", - "ct": 1705071097, - "e": 93863, - "f": "set_res", - "g": 5, - "id": 2006249124, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "p": 218403497, - "s": "892c", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - } - ], - "ingameId": 2006249124, - "ingameEquippedId": "218403497" - }, - { - "code": "ecb6h", - "ct": 1705071109, - "e": 82031, - "f": "set_counter", - "g": 5, - "id": 2006250341, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ] - ], - "p": 717223364, - "s": "e804", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - } - ], - "ingameId": 2006250341, - "ingameEquippedId": "717223364" - }, - { - "code": "ecb6h", - "ct": 1705071109, - "e": 27342, - "f": "set_counter", - "g": 5, - "id": 2006250342, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.04 - ] - ], - "s": "23c1", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 5, - "rolls": 2 - } - ], - "ingameId": 2006250342, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w", - "ct": 1705114558, - "e": 82086, - "f": "set_cri_dmg", - "g": 5, - "id": 2008384390, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ] - ], - "s": "4a80", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 17, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 3 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - } - ], - "ingameId": 2008384390, - "ingameEquippedId": "undefined" - }, - { - "code": "eus8w", - "ct": 1705126396, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2009335986, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "un8_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.09 - ] - ], - "s": "7f6b", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 24, - "rolls": 3 - } - ], - "ingameId": 2009335986, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1705152618, - "e": 93750, - "f": "set_rage", - "g": 5, - "id": 2011430764, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0 - ], - [ - "cri", - 0.06, - "c" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "s": "a58b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 2011430764, - "ingameEquippedId": "undefined" - }, - { - "code": "eus8h", - "ct": 1705161253, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 2012198829, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "un8_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.09 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ] - ], - "s": "e7c2", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 2012198829, - "ingameEquippedId": "undefined" - }, - { - "code": "eus8a", - "ct": 1705213851, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2014873252, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "un8_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "res", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.09 - ] - ], - "p": 620426700, - "s": "4782", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 33, - "rolls": 4 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2014873252, - "ingameEquippedId": "620426700" - }, - { - "code": "eus8b", - "ct": 1705240177, - "e": 93861, - "f": "set_speed", - "g": 5, - "id": 2016902853, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "un8_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "cri", - 0.06 - ], - [ - "acc", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.05 - ] - ], - "p": 649028156, - "s": "1e29", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 2016902853, - "ingameEquippedId": "649028156" - }, - { - "code": "eal85r", - "ct": 1705243174, - "e": 82031, - "f": "set_penetrate", - "g": 5, - "id": 2017167572, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "al85_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "def", - 29 - ], - [ - "max_hp", - 196 - ], - [ - "max_hp", - 174 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.06 - ] - ], - "p": 48982864, - "s": "c570", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Defense", - "value": 29, - "rolls": 1 - }, - { - "type": "Health", - "value": 370, - "rolls": 2 - } - ], - "ingameId": 2017167572, - "ingameEquippedId": "48982864" - }, - { - "code": "ecb6r", - "ct": 1705244277, - "e": 82031, - "f": "set_res", - "g": 5, - "id": 2017265718, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "res", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "res", - 0.12 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 176 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.07 - ] - ], - "p": 403357976, - "s": "7ee0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 4 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "Health", - "value": 176, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 2017265718, - "ingameEquippedId": "403357976" - }, - { - "code": "eal85r_u", - "ct": 1705245285, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 2017356019, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "p": 798777729, - "s": "361d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 2017356019, - "ingameEquippedId": "798777729" - }, - { - "code": "ecb6w_u", - "ct": 1705304460, - "e": 93804, - "f": "set_counter", - "g": 5, - "id": 2019544740, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0 - ], - [ - "max_hp_rate", - 0 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.11, - "c", - "change2_max_hp_rate_3_1" - ] - ], - "p": 717223364, - "s": "f8a2", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 15, - "rolls": 3, - "modified": true - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 2019544740, - "ingameEquippedId": "717223364" - }, - { - "code": "ecb6a_u", - "ct": 1705304473, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2019545099, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "c", - "change1_cri_1_1" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 736028830, - "s": "1ea2", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1, - "modified": true - }, - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 2019545099, - "ingameEquippedId": "736028830" - }, - { - "code": "eah22r", - "ct": 1705390872, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2022267621, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah22_ring_m1", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.08 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 26, - "rolls": 4 - } - ], - "ingameId": 2022267621, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85n_u", - "ct": 1705391355, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2022281446, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp", - 163 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.05, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp", - 56, - "u" - ] - ], - "p": 893757497, - "s": "1287", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 33, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Health", - "value": 219, - "rolls": 1 - } - ], - "ingameId": 2022281446, - "ingameEquippedId": "893757497" - }, - { - "code": "ecw6h", - "ct": 1705478614, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2024850782, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "p": 306770592, - "s": "a694", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 2024850782, - "ingameEquippedId": "306770592" - }, - { - "code": "ecw6w_u", - "ct": 1705478628, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2024851183, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 157 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 150 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp", - 112, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_2" - ] - ], - "p": 115835449, - "s": "406a", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "Health", - "value": 419, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1, - "modified": true - } - ], - "ingameId": 2024851183, - "ingameEquippedId": "115835449" - }, - { - "code": "ecw6w", - "ct": 1705478653, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2024851848, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp", - 158 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp", - 181 - ] - ], - "s": "adb6", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Health", - "value": 339, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 25, - "rolls": 4 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - } - ], - "ingameId": 2024851848, - "ingameEquippedId": "undefined" - }, - { - "code": "ecn23r", - "ct": 1705551897, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2026412395, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "wc2023_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "c683", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2026412395, - "ingameEquippedId": "undefined" - }, - { - "code": "ecs14n", - "ct": 1705552327, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2026424962, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "cs14_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ] - ], - "p": 90857803, - "s": "4705", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 2026424962, - "ingameEquippedId": "90857803" - }, - { - "code": "ecb6h_u", - "ct": 1705570726, - "e": 93863, - "f": "set_vampire", - "g": 5, - "id": 2027220836, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def", - 34 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "def", - 9, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "p": 313179896, - "s": "57e5", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Defense", - "value": 43, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 20, - "rolls": 3 - } - ], - "ingameId": 2027220836, - "ingameEquippedId": "313179896" - }, - { - "code": "ecb6h", - "ct": 1705570759, - "e": 73828, - "f": "set_vampire", - "g": 4, - "id": 2027221801, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "speed", - 4 - ], - [ - "def", - 28 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "def", - 30 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ] - ], - "s": "edf3", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "Defense", - "value": 58, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2027221801, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6h_u", - "ct": 1705570782, - "e": 93863, - "f": "set_counter", - "g": 5, - "id": 2027222422, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "p": 360878989, - "s": "fc4a", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - } - ], - "ingameId": 2027222422, - "ingameEquippedId": "360878989" - }, - { - "code": "ecw6r", - "ct": 1705893640, - "e": 19239, - "f": "set_speed", - "g": 5, - "id": 2038111401, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "att", - 39 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.08 - ] - ], - "s": "f1a1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Attack", - "value": 39, - "rolls": 1 - } - ], - "ingameId": 2038111401, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1705903493, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 2038874253, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "b090", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2038874253, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h", - "ct": 1706000509, - "e": 3964, - "f": "set_speed", - "g": 5, - "id": 2043861084, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "att", - 44 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "att", - 38 - ] - ], - "p": 360502881, - "s": "5e9d", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "Attack", - "value": 82, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2043861084, - "ingameEquippedId": "360502881" - }, - { - "code": "ecw6w_u", - "ct": 1706001487, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 2043892879, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att_rate", - 0.05, - "u" - ] - ], - "s": "37cf", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 29, - "rolls": 4 - } - ], - "ingameId": 2043892879, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1706162050, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 2048932715, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp", - 166 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp", - 192 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "p": 549294853, - "s": "3a88", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Health", - "value": 470, - "rolls": 2 - } - ], - "ingameId": 2048932715, - "ingameEquippedId": "549294853" - }, - { - "code": "eah22b", - "ct": 1706235521, - "e": 93803, - "f": "set_immune", - "g": 5, - "id": 2051113296, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah22_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ] - ], - "p": 713583798, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2051113296, - "ingameEquippedId": "713583798" - }, - { - "code": "ecw6b_u", - "ct": 1706353874, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2055869382, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "res", - 0.08, - "c", - "change2_res_1_2" - ] - ], - "p": 110838566, - "s": "62af", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 19, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1, - "modified": true - } - ], - "ingameId": 2055869382, - "ingameEquippedId": "110838566" - }, - { - "code": "eal85b_u", - "ct": 1706378560, - "e": 93803, - "f": "set_speed", - "g": 5, - "id": 2057530391, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ] - ], - "s": "53c2", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - } - ], - "ingameId": 2057530391, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1706414991, - "e": 82031, - "f": "set_cri", - "g": 5, - "id": 2058772361, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.04 - ] - ], - "s": "4f6a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2058772361, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1706415536, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 2058805133, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05, - "c" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "f3dc", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 25, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 2058805133, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w", - "ct": 1706441913, - "f": "set_acc", - "g": 4, - "id": 2060434624, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "p": 522853044, - "s": "be10", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2060434624, - "ingameEquippedId": "522853044" - }, - { - "code": "ecw6a_u", - "ct": 1706541353, - "e": 93802, - "f": "set_cri", - "g": 5, - "id": 2064216941, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "10e6", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 2064216941, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w", - "ct": 1706541435, - "e": 82144, - "f": "set_speed", - "g": 5, - "id": 2064220982, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "p": 403357976, - "s": "f782", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2064220982, - "ingameEquippedId": "403357976" - }, - { - "code": "ecw6h", - "ct": 1706620357, - "f": "set_cri", - "g": 5, - "id": 2066291963, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "d519", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2066291963, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h", - "ct": 1706620525, - "e": 82085, - "f": "set_cri", - "g": 5, - "id": 2066298537, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04 - ] - ], - "s": "6589", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "Speed", - "value": 2, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - } - ], - "ingameId": 2066298537, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w_u", - "ct": 1706620599, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2066301482, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "p": 389494760, - "s": "b666", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 32, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2066301482, - "ingameEquippedId": "389494760" - }, - { - "code": "ecb6b", - "ct": 1706657162, - "e": 82031, - "f": "set_vampire", - "g": 5, - "id": 2067112315, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "cri", - 0.05 - ], - [ - "def", - 33 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "def", - 31 - ], - [ - "def", - 32 - ] - ], - "p": 313179896, - "s": "74e9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "Defense", - "value": 96, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2067112315, - "ingameEquippedId": "313179896" - }, - { - "code": "eiu21a", - "ct": 1706684102, - "e": 2332, - "f": "set_vampire", - "g": 5, - "id": 2067869313, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu21_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.08 - ] - ], - "s": "55f6", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 2067869313, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu21n", - "ct": 1706778716, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2071394636, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "iu21_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ] - ], - "p": 591089796, - "s": "1f1f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 2071394636, - "ingameEquippedId": "591089796" - }, - { - "code": "ess13n", - "ct": 1706780572, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2071559998, - "l": true, - "level": 78, - "mainStatBaseValue": 0.13, - "mainStatId": "ss13_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ] - ], - "s": "7337", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2071559998, - "ingameEquippedId": "undefined" - }, - { - "code": "eus8n", - "ct": 1706889460, - "e": 93860, - "f": "set_speed", - "g": 5, - "id": 2078298748, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "un8_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 3 - ] - ], - "s": "fc05", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 26, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 2078298748, - "ingameEquippedId": "undefined" - }, - { - "code": "eus8r", - "ct": 1706892248, - "e": 93861, - "f": "set_speed", - "g": 5, - "id": 2078474272, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "un8_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 3 - ] - ], - "p": 596366779, - "s": "ad26", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 2078474272, - "ingameEquippedId": "596366779" - }, - { - "code": "eiu12b", - "ct": 1706925455, - "f": "set_shield", - "g": 5, - "id": 2079299987, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "iu12_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ] - ], - "s": "e3a1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ProtectionSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2079299987, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1707100081, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2084745648, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "def_rate", - 0 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.07, - "u" - ], - [ - "def_rate", - 0.07, - "c", - "change2_def_rate_1_1" - ] - ], - "s": "2ccb", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 35, - "rolls": 5 - } - ], - "ingameId": 2084745648, - "ingameEquippedId": "undefined" - }, - { - "code": "eah22a", - "ct": 1707290467, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2089731577, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah22_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.05 - ] - ], - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 27, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 2089731577, - "ingameEquippedId": "undefined" - }, - { - "code": "eot3n_u3", - "ct": 1707293465, - "e": 93750, - "f": "set_att", - "g": 5, - "id": 2089861086, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ot3u_neck_m3", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "def", - 35 - ], - [ - "cri", - 0.06 - ], - [ - "def", - 32 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "def", - 36 - ], - [ - "att_rate", - 0.08 - ] - ], - "s": "990e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 18, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Defense", - "value": 103, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 2089861086, - "ingameEquippedId": "undefined" - }, - { - "code": "eot3r_u1", - "ct": 1707293472, - "f": "set_att", - "g": 5, - "id": 2089861315, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def", - 36 - ] - ], - "s": "eab", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Defense", - "value": 36, - "rolls": 1 - } - ], - "ingameId": 2089861315, - "ingameEquippedId": "undefined" - }, - { - "code": "exc206201", - "ct": 1707467590, - "g": 5, - "id": 2095902029, - "l": true, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "ek_c206201", - 2 - ] - ], - "s": "caa2" - }, - { - "code": "exc206201", - "ct": 1707467595, - "g": 5, - "id": 2095902430, - "l": true, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "ek_c206201", - 3 - ] - ], - "p": 566472035, - "s": "6728" - }, - { - "code": "ecw6a_u", - "ct": 1707487214, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2097373980, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "s": "bac1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 2097373980, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1707493083, - "f": "set_speed", - "g": 5, - "id": 2097839766, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp", - 188 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "p": 568417281, - "s": "a73f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Health", - "value": 188, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2097839766, - "ingameEquippedId": "568417281" - }, - { - "code": "ecw6h_u", - "ct": 1707493091, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2097840413, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "def", - 29 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "def", - 32 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 559859822, - "s": "c2a1", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 17, - "rolls": 5 - }, - { - "type": "Defense", - "value": 79, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2097840413, - "ingameEquippedId": "559859822" - }, - { - "code": "ecw6a_u", - "ct": 1707570325, - "e": 93862, - "f": "set_cri", - "g": 5, - "id": 2102818293, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "s": "91f3", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - } - ], - "ingameId": 2102818293, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1707579459, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2103561103, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 3, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "dc70", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2103561103, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1707582380, - "f": "set_acc", - "g": 5, - "id": 2103767124, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp", - 164 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.03 - ] - ], - "p": 323638178, - "s": "2ec1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Health", - "value": 164, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 2103767124, - "ingameEquippedId": "323638178" - }, - { - "code": "ecw6r", - "ct": 1707585479, - "f": "set_acc", - "g": 4, - "id": 2103945239, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "acc", - 0.12 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp", - 179 - ] - ], - "p": 360502881, - "s": "edff", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "EffectivenessPercent", - "value": 60 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Health", - "value": 179, - "rolls": 1 - } - ], - "ingameId": 2103945239, - "ingameEquippedId": "360502881" - }, - { - "code": "ecw6w", - "ct": 1707595052, - "e": 1865, - "f": "set_speed", - "g": 4, - "id": 2104279288, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.05 - ] - ], - "p": 545449824, - "s": "d700", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2104279288, - "ingameEquippedId": "545449824" - }, - { - "code": "ecw6a", - "ct": 1707634837, - "e": 12476, - "f": "set_speed", - "g": 5, - "id": 2106228453, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.05 - ] - ], - "s": "9df3", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2106228453, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6w_u", - "ct": 1707730599, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2110924322, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 326831592, - "s": "35f3", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 29, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2110924322, - "ingameEquippedId": "326831592" - }, - { - "code": "ecd6b", - "ct": 1707831482, - "f": "set_scar", - "g": 4, - "id": 2114759155, - "level": 85, - "mainStatBaseValue": 8, - "mainStatId": "cra6_boot_m", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att", - 41 - ], - [ - "def_rate", - 0.07 - ] - ], - "p": 545449824, - "s": "2be3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Heroic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Speed", - "value": 40 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Attack", - "value": 41, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2114759155, - "ingameEquippedId": "545449824" - }, - { - "code": "ecw6w_u", - "ct": 1707984836, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2121257472, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 793619248, - "s": "ef9c", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 26, - "rolls": 5 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2121257472, - "ingameEquippedId": "793619248" - }, - { - "code": "ecw6b_u", - "ct": 1707986961, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2121373185, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.09, - "c", - "change2_cri_dmg_2_2" - ] - ], - "p": 583954927, - "s": "ad1e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2, - "modified": true - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2121373185, - "ingameEquippedId": "583954927" - }, - { - "code": "eot3r_u1", - "ct": 1707988277, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2121441876, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "att", - 38 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "p": 96079748, - "s": "be42", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "Attack", - "value": 38, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 2121441876, - "ingameEquippedId": "96079748" - }, - { - "code": "ecw6h", - "ct": 1708148701, - "f": "set_speed", - "g": 4, - "id": 2126739471, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.08 - ] - ], - "p": 627243561, - "s": "6d3a", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2126739471, - "ingameEquippedId": "627243561" - }, - { - "code": "ecw6w", - "ct": 1708148770, - "e": 1982, - "f": "set_acc", - "g": 5, - "id": 2126741481, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ] - ], - "p": 360502881, - "s": "3b96", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2126741481, - "ingameEquippedId": "360502881" - }, - { - "code": "ecw6a", - "ct": 1708148803, - "f": "set_speed", - "g": 5, - "id": 2126742492, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.05 - ] - ], - "p": 360502881, - "s": "a309", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2126742492, - "ingameEquippedId": "360502881" - }, - { - "code": "ecw6h_u", - "ct": 1708148813, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2126742800, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 590699704, - "s": "3a6", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 29, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2126742800, - "ingameEquippedId": "590699704" - }, - { - "code": "ela8n", - "ct": 1708488110, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2135372005, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la8_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.08 - ] - ], - "p": 899011010, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 31, - "rolls": 4 - } - ], - "ingameId": 2135372005, - "ingameEquippedId": "899011010" - }, - { - "code": "ela8b", - "ct": 1708594531, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 2139237574, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "la8_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ] - ], - "p": 218403497, - "s": "c625", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 2139237574, - "ingameEquippedId": "218403497" - }, - { - "code": "ela8a", - "ct": 1708699865, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2142093452, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "la8_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.09 - ], - [ - "res", - 0.07 - ] - ], - "p": 389494760, - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 2142093452, - "ingameEquippedId": "389494760" - }, - { - "code": "eah22h", - "ct": 1708700141, - "e": 93863, - "f": "set_immune", - "g": 5, - "id": 2142102830, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah22_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.09 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.06 - ] - ], - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2142102830, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1708835823, - "e": 84471, - "f": "set_speed", - "g": 4, - "id": 2149094317, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 2, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "77d8", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2149094317, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w", - "ct": 1708836357, - "e": 73828, - "f": "set_cri", - "g": 4, - "id": 2149133295, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ] - ], - "s": "1a8", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2149133295, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1708836571, - "e": 82031, - "f": "set_acc", - "g": 5, - "id": 2149149204, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "res", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "res", - 0.12 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.03 - ] - ], - "s": "b2bf", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2149149204, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1708849487, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2150114260, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "6983", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - } - ], - "ingameId": 2150114260, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1708854407, - "e": 73982, - "f": "set_speed", - "g": 4, - "id": 2150481857, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp", - 181 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 172 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "15bc", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "Health", - "value": 353, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2150481857, - "ingameEquippedId": "undefined" - }, - { - "code": "ela8w", - "ct": 1708858417, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2150775127, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "la8_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "max_hp", - 0 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 183, - "c", - "change2_max_hp_1_2" - ] - ], - "p": 739641017, - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Health", - "value": 183, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2150775127, - "ingameEquippedId": "739641017" - }, - { - "code": "ecw6w_u", - "ct": 1708858507, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2150781870, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 518421029, - "s": "2e53", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2150781870, - "ingameEquippedId": "518421029" - }, - { - "code": "eiu32w", - "ct": 1708869824, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2151692442, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu32_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "2197", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 29, - "rolls": 4 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2151692442, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1708870404, - "e": 82031, - "f": "set_acc", - "g": 5, - "id": 2151743407, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "b5bb", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2151743407, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w", - "ct": 1708872038, - "e": 39993, - "f": "set_acc", - "g": 5, - "id": 2151884103, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "6e87", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 12, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - } - ], - "ingameId": 2151884103, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1708872272, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 2151903486, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "s": "ba01", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2151903486, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1708873580, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2152014884, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.11, - "c" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ] - ], - "p": 21884461, - "s": "dcc0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 27, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2, - "modified": true - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 2152014884, - "ingameEquippedId": "21884461" - }, - { - "code": "eal85b_u", - "ct": 1708918581, - "e": 93863, - "f": "set_speed", - "g": 5, - "id": 2153414067, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp", - 0 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp", - 0 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "max_hp", - 112, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp", - 309, - "c", - "change2_max_hp_2_2" - ] - ], - "p": 899011010, - "s": "baf4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "Health", - "value": 421, - "rolls": 2, - "modified": true - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 2153414067, - "ingameEquippedId": "899011010" - }, - { - "code": "ecw6n", - "ct": 1708935431, - "e": 73922, - "f": "set_speed", - "g": 4, - "id": 2154045784, - "l": true, - "level": 85, - "mainStatBaseValue": 0.11, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.55, - "mg": 1111, - "op": [ - [ - "cri", - 0.11 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 2 - ] - ], - "s": "da64", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitChancePercent", - "value": 55 - }, - "substats": [ - { - "type": "Speed", - "value": 11, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2154045784, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1709015810, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2156211616, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 0, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 3, - "c", - "change2_speed_1_2" - ] - ], - "s": "6566", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 26, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2156211616, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9n", - "ct": 1709016391, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2156226369, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ] - ], - "p": 618609916, - "s": "2f74", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 18, - "rolls": 5 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2156226369, - "ingameEquippedId": "618609916" - }, - { - "code": "ela8r", - "ct": 1709021074, - "e": 93862, - "f": "set_max_hp", - "g": 5, - "id": 2156341348, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la8_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.07 - ] - ], - "p": 893757497, - "s": "35eb", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 36, - "rolls": 5 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2156341348, - "ingameEquippedId": "893757497" - }, - { - "code": "ecs15w", - "ct": 1709198551, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2159926269, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "cs15_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.06 - ] - ], - "p": 110838566, - "s": "aea6", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 2159926269, - "ingameEquippedId": "110838566" - }, - { - "code": "eih4h", - "ct": 1709214188, - "e": 3498, - "f": "set_def", - "g": 5, - "id": 2160337152, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "imh_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.05 - ] - ], - "s": "3efb", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DefenseSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2160337152, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85n_u", - "ct": 1709274459, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2161464314, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "3f41", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 28, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 26, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2161464314, - "ingameEquippedId": "undefined" - }, - { - "code": "ela8h", - "ct": 1709366505, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 2163380815, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "la8_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.09 - ] - ], - "p": 713631381, - "s": "82d1", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2163380815, - "ingameEquippedId": "713631381" - }, - { - "code": "exc202001", - "ct": 1709712739, - "g": 5, - "id": 2171220621, - "mg": 1111, - "op": [ - [ - "speed", - 10 - ], - [ - "ek_c202001", - 3 - ] - ], - "s": "a480" - }, - { - "code": "exc202001", - "ct": 1709712752, - "g": 5, - "id": 2171220939, - "mg": 1111, - "op": [ - [ - "speed", - 10 - ], - [ - "ek_c202001", - 1 - ] - ], - "s": "2094" - }, - { - "code": "exc202001", - "ct": 1709712936, - "g": 5, - "id": 2171224959, - "l": true, - "mg": 1111, - "op": [ - [ - "speed", - 10 - ], - [ - "ek_c202001", - 2 - ] - ], - "p": 562155721, - "s": "290a" - }, - { - "code": "ecw6a", - "ct": 1709889907, - "e": 73922, - "f": "set_speed", - "g": 4, - "id": 2176808434, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 1 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "dec7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 10, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2176808434, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1709890142, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2176821438, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "p": 713631381, - "s": "7840", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 25, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 2176821438, - "ingameEquippedId": "713631381" - }, - { - "code": "ecq6b", - "ct": 1709952472, - "f": "set_coop", - "g": 5, - "id": 2179311086, - "l": true, - "level": 85, - "mainStatBaseValue": 8, - "mainStatId": "cra6_boot_m", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "att_rate", - 0.06 - ] - ], - "s": "8c35", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "UnitySet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Speed", - "value": 40 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2179311086, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu32h", - "ct": 1709988234, - "e": 93862, - "f": "set_cri", - "g": 5, - "id": 2180478765, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu32_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.04 - ] - ], - "p": 115835449, - "s": "7e2c", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 24, - "rolls": 4 - } - ], - "ingameId": 2180478765, - "ingameEquippedId": "115835449" - }, - { - "code": "ecw6r_u", - "ct": 1710049208, - "e": 93863, - "f": "set_acc", - "g": 5, - "id": 2182640389, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "acc", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 590699704, - "s": "247", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectivenessPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 27, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 2182640389, - "ingameEquippedId": "590699704" - }, - { - "code": "ecw6h", - "ct": 1710054409, - "e": 73828, - "f": "set_acc", - "g": 4, - "id": 2183027208, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "s": "8d48", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2183027208, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1710056355, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2183176619, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "p": 225876663, - "s": "4bc9", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 15, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2183176619, - "ingameEquippedId": "225876663" - }, - { - "code": "ecw6h", - "ct": 1710072742, - "e": 73924, - "f": "set_acc", - "g": 4, - "id": 2184381870, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "speed", - 3 - ], - [ - "att", - 35 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "att", - 39 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.04 - ], - [ - "att", - 42 - ] - ], - "p": 323638178, - "s": "c78", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "Attack", - "value": 116, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2184381870, - "ingameEquippedId": "323638178" - }, - { - "code": "ecw6h", - "ct": 1710081673, - "f": "set_speed", - "g": 4, - "id": 2185097428, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.08 - ] - ], - "p": 440334191, - "s": "3662", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2185097428, - "ingameEquippedId": "440334191" - }, - { - "code": "ecw6r_u", - "ct": 1710082271, - "e": 84375, - "f": "set_acc", - "g": 4, - "id": 2185148258, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "acc", - 0.13, - null, - null, - 0 - ], - [ - "def", - 30 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0 - ], - [ - "def", - 9, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.11, - "c", - "change2_max_hp_rate_2_2" - ] - ], - "p": 403476926, - "s": "52a4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectivenessPercent", - "value": 65 - }, - "substats": [ - { - "type": "Defense", - "value": 39, - "rolls": 1 - }, - { - "type": "Speed", - "value": 15, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2185148258, - "ingameEquippedId": "403476926" - }, - { - "code": "ecw6h_u", - "ct": 1710125285, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2186430690, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ] - ], - "p": 769932771, - "s": "cb87", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 31, - "rolls": 4 - } - ], - "ingameId": 2186430690, - "ingameEquippedId": "769932771" - }, - { - "code": "ecw6h_u", - "ct": 1710125326, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2186431865, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "p": 899011010, - "s": "55c3", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 28, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 2186431865, - "ingameEquippedId": "899011010" - }, - { - "code": "ecw6w", - "ct": 1710126616, - "e": 18655, - "f": "set_speed", - "g": 5, - "id": 2186466517, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.05 - ] - ], - "p": 440334191, - "s": "3a5", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 3 - } - ], - "ingameId": 2186466517, - "ingameEquippedId": "440334191" - }, - { - "code": "ecs11r", - "ct": 1710463521, - "e": 93861, - "f": "set_max_hp", - "g": 5, - "id": 2194259314, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "cs11_ring_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.07 - ] - ], - "p": 226377978, - "s": "5794", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2194259314, - "ingameEquippedId": "226377978" - }, - { - "code": "eot3r_u4", - "ct": 1710507219, - "e": 91773, - "f": "set_vampire", - "g": 5, - "id": 2196695880, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_ring_m4", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def", - 33 - ], - [ - "def", - 35 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.07 - ] - ], - "s": "22e8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 12, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Defense", - "value": 68, - "rolls": 2 - } - ], - "ingameId": 2196695880, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a", - "ct": 1710765143, - "e": 3964, - "f": "set_counter", - "g": 5, - "id": 2208228998, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.03 - ] - ], - "s": "28f8", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2208228998, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6b_u", - "ct": 1710768062, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2208462837, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp", - 0 - ], - [ - "def", - 29 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "def", - 28 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp", - 160, - "c", - "change2_max_hp_1_1" - ] - ], - "p": 893757497, - "s": "d4a2", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Health", - "value": 216, - "rolls": 1, - "modified": true - }, - { - "type": "Defense", - "value": 75, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 26, - "rolls": 3 - } - ], - "ingameId": 2208462837, - "ingameEquippedId": "893757497" - }, - { - "code": "ecb6h", - "ct": 1710812221, - "e": 1982, - "f": "set_cri_dmg", - "g": 5, - "id": 2210102316, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "75b9", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2210102316, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w_u", - "ct": 1710812279, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2210103803, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_1" - ] - ], - "p": 11185757, - "s": "3b71", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2210103803, - "ingameEquippedId": "11185757" - }, - { - "code": "ecb6a_u", - "ct": 1710812307, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 2210104511, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "p": 568689715, - "s": "9e27", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2210104511, - "ingameEquippedId": "568689715" - }, - { - "code": "ecb6a", - "ct": 1710812307, - "e": 73828, - "f": "set_vampire", - "g": 4, - "id": 2210104515, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 159 - ], - [ - "cri", - 0.04 - ] - ], - "s": "32f0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2 - }, - { - "type": "Health", - "value": 159, - "rolls": 1 - } - ], - "ingameId": 2210104515, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w", - "ct": 1710812698, - "e": 73828, - "f": "set_res", - "g": 4, - "id": 2210115802, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.03 - ] - ], - "s": "696b", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2210115802, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6h", - "ct": 1710897942, - "e": 6704, - "f": "set_vampire", - "g": 5, - "id": 2212150491, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def", - 33 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.03 - ] - ], - "s": "ef25", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Defense", - "value": 33, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2212150491, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85n_u", - "ct": 1711087559, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2216419210, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "res", - 0 - ], - [ - "def", - 31 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "res", - 0 - ], - [ - "def", - 32 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "res", - 0.1, - "c", - "change2_res_2_2" - ] - ], - "s": "99e1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2, - "modified": true - }, - { - "type": "Defense", - "value": 81, - "rolls": 2 - } - ], - "ingameId": 2216419210, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85n", - "ct": 1711088204, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2216442796, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "al85_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "att_rate", - 0.05 - ], - [ - "att", - 34 - ], - [ - "max_hp", - 163 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "att", - 33 - ], - [ - "max_hp", - 196 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp", - 189 - ] - ], - "p": 166490, - "s": "e1b7", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Attack", - "value": 67, - "rolls": 2 - }, - { - "type": "Health", - "value": 548, - "rolls": 3 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - } - ], - "ingameId": 2216442796, - "ingameEquippedId": "166490" - }, - { - "code": "ecb6a", - "ct": 1711340064, - "e": 73828, - "f": "set_counter", - "g": 4, - "id": 2224920636, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.06 - ] - ], - "s": "6003", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2224920636, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a", - "ct": 1711356508, - "e": 2973, - "f": "set_vampire", - "g": 5, - "id": 2225731924, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "s": "5f92", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 2225731924, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w", - "ct": 1711368370, - "e": 73923, - "f": "set_vampire", - "g": 4, - "id": 2226334464, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.08 - ] - ], - "s": "811e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2226334464, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a", - "ct": 1711425671, - "e": 82031, - "f": "set_vampire", - "g": 5, - "id": 2228126615, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.07 - ] - ], - "s": "60b4", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 31, - "rolls": 5 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2228126615, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1711425706, - "e": 84375, - "f": "set_res", - "g": 4, - "id": 2228127402, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 713631381, - "s": "4541", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 33, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2228127402, - "ingameEquippedId": "713631381" - }, - { - "code": "eiu12b", - "ct": 1711460956, - "f": "set_shield", - "g": 5, - "id": 2228948935, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "iu12_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ] - ], - "s": "d956", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ProtectionSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2228948935, - "ingameEquippedId": "undefined" - }, - { - "code": "eih6r", - "ct": 1711524757, - "e": 93862, - "f": "set_immune", - "g": 5, - "id": 2230045201, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "imh_ring_m3", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.05 - ] - ], - "s": "8c17", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 2230045201, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu51b", - "ct": 1711524757, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2230045203, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "iu51_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.09 - ], - [ - "acc", - 0.06 - ] - ], - "s": "2f25", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2230045203, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu22a", - "ct": 1711631354, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2232095205, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu22_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.06 - ] - ], - "p": 847822619, - "s": "fddd", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 2232095205, - "ingameEquippedId": "847822619" - }, - { - "code": "eih9r", - "ct": 1711631477, - "e": 93920, - "f": "set_res", - "g": 5, - "id": 2232099646, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "imh_ring_m11", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.09 - ], - [ - "speed", - 4 - ] - ], - "p": 636577158, - "s": "a953", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 27, - "rolls": 3 - } - ], - "ingameId": 2232099646, - "ingameEquippedId": "636577158" - }, - { - "code": "ecb6a_u", - "ct": 1711681401, - "e": 93862, - "f": "set_counter", - "g": 5, - "id": 2233107404, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "d6ee", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2233107404, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1711681457, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 2233108959, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "s": "b2c1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 28, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 2233108959, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1711681520, - "e": 84375, - "f": "set_res", - "g": 4, - "id": 2233110737, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "p": 28398305, - "s": "6e31", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2233110737, - "ingameEquippedId": "28398305" - }, - { - "code": "exc109101", - "ct": 1711857997, - "g": 5, - "id": 2237102003, - "l": true, - "mg": 1111, - "op": [ - [ - "res", - 0.09 - ], - [ - "ek_c109101", - 2 - ] - ], - "p": 636577158, - "s": "6340" - }, - { - "code": "eal85n_u", - "ct": 1711858473, - "e": 93863, - "f": "set_counter", - "g": 5, - "id": 2237115399, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "5465", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 24, - "rolls": 3 - } - ], - "ingameId": 2237115399, - "ingameEquippedId": "undefined" - }, - { - "code": "exc110101", - "ct": 1711859192, - "g": 5, - "id": 2237136940, - "l": true, - "mg": 1111, - "op": [ - [ - "speed", - 7 - ], - [ - "ek_c110101", - 1 - ] - ], - "p": 568689715, - "s": "a6cf" - }, - { - "code": "exc110101", - "ct": 1711859199, - "g": 5, - "id": 2237137145, - "l": true, - "mg": 1111, - "op": [ - [ - "speed", - 10 - ], - [ - "ek_c110101", - 3 - ] - ], - "s": "f9bf" - }, - { - "code": "ecb6w_u", - "ct": 1711934480, - "e": 93862, - "f": "set_res", - "g": 5, - "id": 2238763993, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.04, - "u" - ] - ], - "p": 6885517, - "s": "1c49", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 25, - "rolls": 3 - } - ], - "ingameId": 2238763993, - "ingameEquippedId": "6885517" - }, - { - "code": "ecb6h", - "ct": 1711934480, - "e": 3964, - "f": "set_vampire", - "g": 5, - "id": 2238763994, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "att", - 43 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ] - ], - "s": "cd1", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "Attack", - "value": 43, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2238763994, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85n_u", - "ct": 1711943062, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2238992507, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "att_rate", - 0.07, - "u" - ] - ], - "s": "8141", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 37, - "rolls": 5 - } - ], - "ingameId": 2238992507, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu41a", - "ct": 1711961614, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 2239472709, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu41_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.09 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "p": 559859824, - "s": "f7c", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 28, - "rolls": 4 - } - ], - "ingameId": 2239472709, - "ingameEquippedId": "559859824" - }, - { - "code": "eah22w", - "ct": 1712021329, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2240779763, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah22_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.09 - ] - ], - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - } - ], - "ingameId": 2240779763, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1712314770, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2249488507, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.04, - "c" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "p": 704271358, - "s": "bb5d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - }, - { - "type": "DefensePercent", - "value": 19, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 3 - } - ], - "ingameId": 2249488507, - "ingameEquippedId": "704271358" - }, - { - "code": "ecg6a", - "ct": 1712451845, - "e": 9852, - "f": "set_shield", - "g": 5, - "id": 2253346580, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "a51", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ProtectionSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 10, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 2253346580, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85r_u", - "ct": 1712542817, - "e": 93862, - "f": "set_cri_dmg", - "g": 5, - "id": 2257469979, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0 - ], - [ - "cri_dmg", - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.12, - "c", - "change2_cri_dmg_3_2" - ] - ], - "p": 591089796, - "s": "2c24", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 3, - "modified": true - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 20, - "rolls": 3 - } - ], - "ingameId": 2257469979, - "ingameEquippedId": "591089796" - }, - { - "code": "exc109101", - "ct": 1712548564, - "g": 5, - "id": 2257774540, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "ek_c109101", - 3 - ] - ], - "s": "5220" - }, - { - "code": "exc109101", - "ct": 1712548644, - "g": 5, - "id": 2257778861, - "l": true, - "mg": 1111, - "op": [ - [ - "res", - 0.16 - ], - [ - "ek_c109101", - 1 - ] - ], - "s": "8f1f" - }, - { - "code": "eal85b_u", - "ct": 1712736647, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2263136846, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "def", - 32 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "def", - 9, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "4378", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 32, - "rolls": 4 - }, - { - "type": "Defense", - "value": 41, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2263136846, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1712892905, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 2265984311, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att", - 38 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "s": "44b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 27, - "rolls": 4 - }, - { - "type": "Attack", - "value": 49, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2265984311, - "ingameEquippedId": "undefined" - }, - { - "code": "eah21r", - "ct": 1713025254, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2268832536, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah21_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ] - ], - "p": 899521626, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 30, - "rolls": 5 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2268832536, - "ingameEquippedId": "899521626" - }, - { - "code": "eal85n_u", - "ct": 1713147840, - "e": 93803, - "f": "set_vampire", - "g": 5, - "id": 2271281400, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri", - 0.06, - "c", - "change2_cri_2_1" - ] - ], - "s": "707a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2, - "modified": true - }, - { - "type": "Speed", - "value": 5, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 2271281400, - "ingameEquippedId": "undefined" - }, - { - "code": "eah23n", - "ct": 1713776806, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 2284288170, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ah23_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.05 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Speed", - "value": 15, - "rolls": 4 - } - ], - "ingameId": 2284288170, - "ingameEquippedId": "undefined" - }, - { - "code": "exc112901", - "ct": 1714034144, - "g": 5, - "id": 2289973254, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "ek_c112901", - 3 - ] - ], - "s": "a6c4" - }, - { - "code": "exc112901", - "ct": 1714034148, - "g": 5, - "id": 2289973428, - "mg": 1111, - "op": [ - [ - "res", - 0.14 - ], - [ - "ek_c112901", - 3 - ] - ], - "s": "7c80" - }, - { - "code": "exc112901", - "ct": 1714034151, - "g": 5, - "id": 2289973579, - "mg": 1111, - "op": [ - [ - "res", - 0.12 - ], - [ - "ek_c112901", - 1 - ] - ], - "s": "3cad" - }, - { - "code": "exc112901", - "ct": 1714034156, - "g": 5, - "id": 2289973699, - "mg": 1111, - "op": [ - [ - "res", - 0.15 - ], - [ - "ek_c112901", - 3 - ] - ], - "p": 48988520, - "s": "51c4" - }, - { - "code": "exc112901", - "ct": 1714034168, - "g": 5, - "id": 2289974253, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "ek_c112901", - 2 - ] - ], - "s": "8191" - }, - { - "code": "ecs5w", - "ct": 1714049426, - "f": "set_scar", - "g": 5, - "id": 2290581263, - "l": true, - "level": 78, - "mainStatBaseValue": 95, - "mainStatId": "cs5_weap_m1", - "mainStatType": "att", - "mainStatValue": 475, - "mg": 1111, - "op": [ - [ - "att", - 95 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.07 - ] - ], - "s": "c0ca", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Attack", - "value": 475 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2290581263, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu21r", - "ct": 1714122430, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2292196268, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu21_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.06 - ] - ], - "p": 350226992, - "s": "3b64", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 19, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2292196268, - "ingameEquippedId": "350226992" - }, - { - "code": "ecb6n_u", - "ct": 1714231161, - "e": 84375, - "f": "set_res", - "g": 4, - "id": 2296597756, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.06, - "c", - "change2_max_hp_rate_1_1" - ] - ], - "s": "e075", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 30, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1, - "modified": true - } - ], - "ingameId": 2296597756, - "ingameEquippedId": "undefined" - }, - { - "code": "eep_w", - "ct": 1714284409, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2298865302, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ep_weapon_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp", - 188 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp", - 196 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp", - 178 - ], - [ - "max_hp", - 202 - ] - ], - "s": "2add", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Health", - "value": 764, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 2298865302, - "ingameEquippedId": "undefined" - }, - { - "code": "eep_a", - "ct": 1714284422, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 2298866017, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ep_armor_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 3 - ] - ], - "p": 279573776, - "s": "6db7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2298866017, - "ingameEquippedId": "279573776" - }, - { - "code": "eep_n", - "ct": 1714284436, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2298866778, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ep_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "att", - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "att", - 43, - "c", - "change2_att_1_2" - ] - ], - "p": 518782830, - "s": "b7b8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "Attack", - "value": 43, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "Speed", - "value": 15, - "rolls": 4 - } - ], - "ingameId": 2298866778, - "ingameEquippedId": "518782830" - }, - { - "code": "eal85n_u", - "ct": 1714284692, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2298881181, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "p": 6885517, - "s": "aa0f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2298881181, - "ingameEquippedId": "6885517" - }, - { - "code": "eiu52r", - "ct": 1714293950, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 2299390917, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu52_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "edab", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2299390917, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9n", - "ct": 1714294051, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2299396303, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ] - ], - "p": 568689715, - "s": "b570", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 22, - "rolls": 5 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2299396303, - "ingameEquippedId": "568689715" - }, - { - "code": "eal85n_u", - "ct": 1714295058, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2299448611, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "res", - 0 - ], - [ - "speed", - 2 - ], - [ - "att", - 34 - ], - [ - "att_rate", - 0.07 - ], - [ - "att", - 37 - ], - [ - "att", - 41 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "res", - 0 - ], - [ - "res", - 0.1, - "c" - ], - [ - "res", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "att", - 33, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "p": 49161666, - "s": "e0c1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2, - "modified": true - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "Attack", - "value": 145, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2299448611, - "ingameEquippedId": "49161666" - }, - { - "code": "eiu31n", - "ct": 1714357889, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 2302140953, - "l": true, - "level": 88, - "mainStatBaseValue": 0.12, - "mainStatId": "iu31_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "s": "ba6c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitChancePercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 2302140953, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1714372187, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2302877324, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ] - ], - "s": "25b2", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 32, - "rolls": 4 - } - ], - "ingameId": 2302877324, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1714372449, - "f": "set_acc", - "g": 5, - "id": 2302890195, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0.07 - ] - ], - "s": "f6eb", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2302890195, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1714372535, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2302894522, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.07, - "c", - "change2_max_hp_rate_1_2" - ] - ], - "p": 403476926, - "s": "9a31", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 28, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 26, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2302894522, - "ingameEquippedId": "403476926" - }, - { - "code": "ecw6a", - "ct": 1714372736, - "e": 73828, - "f": "set_speed", - "g": 4, - "id": 2302903744, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.04 - ] - ], - "s": "f38b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2302903744, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1714372736, - "e": 73863, - "f": "set_cri", - "g": 4, - "id": 2302903748, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.08 - ] - ], - "s": "a5d7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2302903748, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1714372767, - "f": "set_speed", - "g": 5, - "id": 2302905160, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp", - 165 - ], - [ - "max_hp_rate", - 0.04 - ] - ], - "p": 440334191, - "s": "a10b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Health", - "value": 165, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2302905160, - "ingameEquippedId": "440334191" - }, - { - "code": "ecw6a_u", - "ct": 1714372767, - "e": 84375, - "f": "set_acc", - "g": 4, - "id": 2302905165, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 184 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 559859822, - "s": "9502", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "Health", - "value": 240, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2302905165, - "ingameEquippedId": "559859822" - }, - { - "code": "ecw6a", - "ct": 1714372794, - "e": 82031, - "f": "set_acc", - "g": 5, - "id": 2302906497, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ] - ], - "s": "be91", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 36, - "rolls": 5 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2302906497, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1714372845, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 2302908784, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "p": 350226992, - "s": "ac27", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 28, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 2302908784, - "ingameEquippedId": "350226992" - }, - { - "code": "ecw6a_u", - "ct": 1714372977, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 2302915221, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 1, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "38c2", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 2302915221, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1714654886, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2313852169, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "def", - 30 - ], - [ - "max_hp", - 191 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp", - 166 - ], - [ - "max_hp", - 187 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp", - 196 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "def", - 9, - "u" - ], - [ - "max_hp", - 224, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 739641017, - "s": "ea97", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Defense", - "value": 39, - "rolls": 1 - }, - { - "type": "Health", - "value": 964, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2313852169, - "ingameEquippedId": "739641017" - }, - { - "code": "eal85b_u", - "ct": 1714654912, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 2313853560, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att", - 38 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp", - 193 - ], - [ - "max_hp", - 201 - ], - [ - "att", - 39 - ], - [ - "att", - 46 - ], - [ - "max_hp", - 200 - ], - [ - "max_hp", - 161 - ], - [ - "att", - 33, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp", - 224, - "u" - ] - ], - "p": 898971885, - "s": "bd02", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "Attack", - "value": 156, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Health", - "value": 979, - "rolls": 4 - } - ], - "ingameId": 2313853560, - "ingameEquippedId": "898971885" - }, - { - "code": "ecb6a", - "ct": 1714656508, - "e": 1982, - "f": "set_cri_dmg", - "g": 5, - "id": 2313936220, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "p": 28393107, - "s": "2ec5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2313936220, - "ingameEquippedId": "28393107" - }, - { - "code": "ecw6h", - "ct": 1714795035, - "e": 73828, - "f": "set_acc", - "g": 4, - "id": 2319231336, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "6835", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2319231336, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1714795035, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2319231341, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 166490, - "s": "78f9", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 26, - "rolls": 3 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 2319231341, - "ingameEquippedId": "166490" - }, - { - "code": "ecw6h_u", - "ct": 1714795252, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2319240618, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.05, - "c", - "change2_cri_2_1" - ] - ], - "s": "15d9", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2, - "modified": true - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2319240618, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu41a", - "ct": 1714803060, - "e": 93862, - "f": "set_counter", - "g": 5, - "id": 2319570044, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu41_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.07 - ] - ], - "s": "9091", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 2319570044, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1714869304, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 2321814545, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 3, - "c" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "1b53", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 25, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2321814545, - "ingameEquippedId": "undefined" - }, - { - "code": "eah23r", - "ct": 1715070139, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 2327785535, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah23_ring_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.09 - ], - [ - "att_rate", - 0.05 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 23, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2327785535, - "ingameEquippedId": "undefined" - }, - { - "code": "exc101401", - "ct": 1715132984, - "g": 5, - "id": 2329599513, - "mg": 1111, - "op": [ - [ - "acc", - 0.13 - ], - [ - "ek_c101401", - 1 - ] - ], - "s": "4567" - }, - { - "code": "exc101401", - "ct": 1715132991, - "g": 5, - "id": 2329599688, - "mg": 1111, - "op": [ - [ - "acc", - 0.15 - ], - [ - "ek_c101401", - 1 - ] - ], - "s": "ee39" - }, - { - "code": "exc101401", - "ct": 1715132995, - "g": 5, - "id": 2329599856, - "mg": 1111, - "op": [ - [ - "acc", - 0.14 - ], - [ - "ek_c101401", - 1 - ] - ], - "s": "f8e7" - }, - { - "code": "exc101401", - "ct": 1715133007, - "g": 5, - "id": 2329600327, - "mg": 1111, - "op": [ - [ - "acc", - 0.11 - ], - [ - "ek_c101401", - 2 - ] - ], - "s": "6cb0" - }, - { - "code": "exc101401", - "ct": 1715133011, - "g": 5, - "id": 2329600465, - "mg": 1111, - "op": [ - [ - "acc", - 0.15 - ], - [ - "ek_c101401", - 3 - ] - ], - "p": 440334191, - "s": "7461" - }, - { - "code": "ecs16n", - "ct": 1715325668, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 2335875526, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "cs16_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.09 - ] - ], - "p": 110853212, - "s": "23e3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2335875526, - "ingameEquippedId": "110853212" - }, - { - "code": "ecd6b", - "ct": 1715333083, - "e": 1982, - "f": "set_penetrate", - "g": 5, - "id": 2336073694, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_boot_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ] - ], - "s": "8fb7", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2336073694, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6w_u", - "ct": 1715349307, - "e": 93805, - "f": "set_penetrate", - "g": 5, - "id": 2336602419, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 736028830, - "s": "f6b2", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 33, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2336602419, - "ingameEquippedId": "736028830" - }, - { - "code": "ecw6a", - "ct": 1715351899, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2336706788, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ] - ], - "s": "fe32", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2336706788, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1715351924, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2336707733, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 0 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 0 - ], - [ - "speed", - 4, - "c" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "p": 306770592, - "s": "ffba", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 5, - "rolls": 2, - "modified": true - }, - { - "type": "EffectivenessPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 2336707733, - "ingameEquippedId": "306770592" - }, - { - "code": "ecw6r", - "ct": 1715396094, - "e": 9852, - "f": "set_speed", - "g": 5, - "id": 2338046039, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "def", - 28 - ], - [ - "acc", - 0.06 - ], - [ - "att_rate", - 0.04 - ], - [ - "def", - 29 - ] - ], - "s": "6216", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Defense", - "value": 57, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2338046039, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu52w", - "ct": 1715409594, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2338606438, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu52_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ] - ], - "p": 354206748, - "s": "1f9e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2338606438, - "ingameEquippedId": "354206748" - }, - { - "code": "eiu21h", - "ct": 1715413306, - "e": 3498, - "f": "set_res", - "g": 5, - "id": 2338748442, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu21_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "15fd", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2338748442, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu11b", - "ct": 1715416248, - "e": 35679, - "f": "set_def", - "g": 5, - "id": 2338856716, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu11_boot_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.03 - ] - ], - "s": "b8b0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DefenseSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "DefensePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2 - } - ], - "ingameId": 2338856716, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6r", - "ct": 1715435678, - "f": "set_penetrate", - "g": 5, - "id": 2339655257, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "acc", - 0.12 - ], - [ - "att", - 42 - ], - [ - "res", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "p": 440334191, - "s": "5278", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "EffectivenessPercent", - "value": 60 - }, - "substats": [ - { - "type": "Attack", - "value": 42, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2339655257, - "ingameEquippedId": "440334191" - }, - { - "code": "ecd6a", - "ct": 1715440165, - "e": 6996, - "f": "set_penetrate", - "g": 5, - "id": 2339877851, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.06 - ] - ], - "s": "9572", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2339877851, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n", - "ct": 1715613061, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2345668837, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ] - ], - "s": "c071", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 22, - "rolls": 4 - }, - { - "type": "Speed", - "value": 5, - "rolls": 2 - } - ], - "ingameId": 2345668837, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1715615453, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2345753123, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "fdfe", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Speed", - "value": 15, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2345753123, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1715697730, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2347798000, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "att", - 39 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "p": 892353109, - "s": "249b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Attack", - "value": 50, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 23, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 2347798000, - "ingameEquippedId": "892353109" - }, - { - "code": "eal85b_u", - "ct": 1715740101, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2348733488, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "p": 897188455, - "s": "7a14", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 2348733488, - "ingameEquippedId": "897188455" - }, - { - "code": "ecs16h", - "ct": 1715935840, - "e": 82143, - "f": "set_cri", - "g": 5, - "id": 2353346116, - "l": true, - "level": 78, - "mainStatBaseValue": 513, - "mainStatId": "cs16_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2565, - "mg": 1111, - "op": [ - [ - "max_hp", - 513 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.05 - ] - ], - "s": "3939", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2565 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 4 - } - ], - "ingameId": 2353346116, - "ingameEquippedId": "undefined" - }, - { - "code": "exc203501", - "ct": 1715936014, - "g": 5, - "id": 2353349957, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "ek_c203501", - 1 - ] - ], - "p": 604874070, - "s": "af06" - }, - { - "code": "exc203501", - "ct": 1715936017, - "g": 5, - "id": 2353350030, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.1 - ], - [ - "ek_c203501", - 3 - ] - ], - "s": "41e6" - }, - { - "code": "exc203501", - "ct": 1715936023, - "g": 5, - "id": 2353350162, - "l": true, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.11 - ], - [ - "ek_c203501", - 2 - ] - ], - "s": "5291" - }, - { - "code": "ecw6r", - "ct": 1716017682, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2355528955, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "def", - 32 - ], - [ - "res", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.04 - ] - ], - "s": "f079", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "Defense", - "value": 32, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 23, - "rolls": 4 - } - ], - "ingameId": 2355528955, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1716017699, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 2355529586, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "p": 225876663, - "s": "4302", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 27, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 25, - "rolls": 3 - } - ], - "ingameId": 2355529586, - "ingameEquippedId": "225876663" - }, - { - "code": "eih9n", - "ct": 1716102374, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2358228066, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 4 - ] - ], - "p": 350226992, - "s": "2207", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2358228066, - "ingameEquippedId": "350226992" - }, - { - "code": "eih6w", - "ct": 1716102377, - "e": 93861, - "f": "set_speed", - "g": 5, - "id": 2358228155, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "imh_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "p": 241191727, - "s": "86b5", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 2358228155, - "ingameEquippedId": "241191727" - }, - { - "code": "ecw6a", - "ct": 1716176034, - "e": 2973, - "f": "set_speed", - "g": 5, - "id": 2360180905, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp", - 186 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.04 - ] - ], - "p": 627243561, - "s": "8acc", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Health", - "value": 186, - "rolls": 1 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 2360180905, - "ingameEquippedId": "627243561" - }, - { - "code": "ecw6r", - "ct": 1716791646, - "f": "set_speed", - "g": 5, - "id": 2374695794, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp", - 194 - ] - ], - "p": 627243561, - "s": "9b0e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Health", - "value": 194, - "rolls": 1 - } - ], - "ingameId": 2374695794, - "ingameEquippedId": "627243561" - }, - { - "code": "ecw6n_u", - "ct": 1716823981, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2375949179, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "def", - 32 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.05 - ], - [ - "def", - 34 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ] - ], - "p": 559859822, - "s": "d8f4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Defense", - "value": 84, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 2375949179, - "ingameEquippedId": "559859822" - }, - { - "code": "ecw6w_u", - "ct": 1716963954, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 2379388704, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.1, - "c" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 583954927, - "s": "25b3", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2, - "modified": true - }, - { - "type": "Speed", - "value": 18, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2379388704, - "ingameEquippedId": "583954927" - }, - { - "code": "ecw6h", - "ct": 1716982540, - "e": 73922, - "f": "set_speed", - "g": 4, - "id": 2379804268, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "def", - 28 - ], - [ - "acc", - 0.07 - ] - ], - "s": "c39e", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "Defense", - "value": 28, - "rolls": 1 - } - ], - "ingameId": 2379804268, - "ingameEquippedId": "undefined" - }, - { - "code": "ela9b", - "ct": 1717033015, - "e": 93863, - "f": "set_acc", - "g": 5, - "id": 2381087442, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "la9_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "att_rate", - 0.06 - ] - ], - "p": 313109293, - "s": "bf1f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 20, - "rolls": 3 - } - ], - "ingameId": 2381087442, - "ingameEquippedId": "313109293" - }, - { - "code": "ela9n", - "ct": 1717033038, - "e": 93804, - "f": "set_torrent", - "g": 5, - "id": 2381088269, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "la9_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.07 - ] - ], - "p": 11185757, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - } - ], - "ingameId": 2381088269, - "ingameEquippedId": "11185757" - }, - { - "code": "ela9w", - "ct": 1717126810, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2384321147, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "la9_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ] - ], - "p": 897188455, - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 24, - "rolls": 6 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2384321147, - "ingameEquippedId": "897188455" - }, - { - "code": "eal85b_u", - "ct": 1717292946, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 2389222320, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.04 - ], - [ - "cri", - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_1" - ] - ], - "p": 110853212, - "s": "df4a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 19, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 27, - "rolls": 4 - } - ], - "ingameId": 2389222320, - "ingameEquippedId": "110853212" - }, - { - "code": "eot3r_u4", - "ct": 1717293099, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2389227867, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_ring_m4", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ] - ], - "s": "1ce9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 29, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2389227867, - "ingameEquippedId": "undefined" - }, - { - "code": "eot3n_u1", - "ct": 1717313918, - "e": 26118, - "f": "set_rage", - "g": 5, - "id": 2389962315, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_neck_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "s": "443a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 2, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 27, - "rolls": 3 - } - ], - "ingameId": 2389962315, - "ingameEquippedId": "undefined" - }, - { - "code": "ela9r", - "ct": 1717381132, - "e": 93862, - "f": "set_penetrate", - "g": 5, - "id": 2391749502, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la9_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ] - ], - "p": 736028830, - "s": "980b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2391749502, - "ingameEquippedId": "736028830" - }, - { - "code": "ela9a", - "ct": 1717465891, - "e": 93804, - "f": "set_acc", - "g": 5, - "id": 2393491274, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "la9_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.09 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.08 - ] - ], - "p": 21884461, - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 30, - "rolls": 4 - } - ], - "ingameId": 2393491274, - "ingameEquippedId": "21884461" - }, - { - "code": "ewb1a", - "ct": 1717580352, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2395265189, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "wb1_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "p": 793619248, - "s": "e096", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2395265189, - "ingameEquippedId": "793619248" - }, - { - "code": "ecw6w_u", - "ct": 1717645802, - "e": 93863, - "f": "set_speed", - "g": 5, - "id": 2397005545, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "p": 713583798, - "s": "9f03", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 18, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2397005545, - "ingameEquippedId": "713583798" - }, - { - "code": "ela9h", - "ct": 1717651578, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2397281783, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "la9_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_2" - ] - ], - "s": "8739", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 2397281783, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu32w", - "ct": 1717741955, - "e": 10727, - "f": "set_acc", - "g": 5, - "id": 2399461241, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu32_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "att_rate", - 0.06 - ] - ], - "s": "a351", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2399461241, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1717814960, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2401205762, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "p": 590699704, - "s": "bb94", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 18, - "rolls": 3 - } - ], - "ingameId": 2401205762, - "ingameEquippedId": "590699704" - }, - { - "code": "ecw6a_u", - "ct": 1717817895, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2401323560, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "p": 326831592, - "s": "257a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 2401323560, - "ingameEquippedId": "326831592" - }, - { - "code": "eiu21h", - "ct": 1717824156, - "e": 46173, - "f": "set_res", - "g": 5, - "id": 2401581262, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu21_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ] - ], - "s": "7828", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 12, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2401581262, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6a_u", - "ct": 1717833500, - "e": 93804, - "f": "set_torrent", - "g": 5, - "id": 2401942133, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "7d95", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2401942133, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1717835283, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2402010097, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "s": "e35e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 2402010097, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1717835294, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 2402010455, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "acc", - 0.06 - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "p": 494187001, - "s": "7b6c", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 30, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 2402010455, - "ingameEquippedId": "494187001" - }, - { - "code": "ecw6a", - "ct": 1717835315, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2402011272, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp", - 201 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 192 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "7ff6", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 2 - }, - { - "type": "Health", - "value": 393, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - } - ], - "ingameId": 2402011272, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n", - "ct": 1717835322, - "e": 1982, - "f": "set_speed", - "g": 5, - "id": 2402011498, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.08 - ] - ], - "s": "6109", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 2402011498, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1718024331, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2408627998, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ] - ], - "s": "2fc1", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 19, - "rolls": 5 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2408627998, - "ingameEquippedId": "undefined" - }, - { - "code": "eot3r_u1", - "ct": 1718371449, - "e": 20287, - "f": "set_rage", - "g": 5, - "id": 2416330492, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def", - 37 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.09 - ], - [ - "def", - 32 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def", - 33 - ] - ], - "p": 28393107, - "s": "d93a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Defense", - "value": 102, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2416330492, - "ingameEquippedId": "28393107" - }, - { - "code": "eot3r_u4", - "ct": 1718371474, - "e": 93861, - "f": "set_vampire", - "g": 5, - "id": 2416331183, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_ring_m4", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.08 - ] - ], - "s": "444d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2416331183, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1718371501, - "e": 82031, - "f": "set_cri", - "g": 5, - "id": 2416331971, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.04 - ] - ], - "s": "a87e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2416331971, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1718371626, - "e": 73828, - "f": "set_speed", - "g": 4, - "id": 2416335396, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "22c6", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2416335396, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1718371626, - "e": 73828, - "f": "set_acc", - "g": 4, - "id": 2416335401, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 161 - ], - [ - "max_hp", - 167 - ] - ], - "s": "c5ad", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 13, - "rolls": 4 - }, - { - "type": "Health", - "value": 328, - "rolls": 2 - } - ], - "ingameId": 2416335401, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n", - "ct": 1718510279, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2420182942, - "l": true, - "level": 85, - "mainStatBaseValue": 0.11, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.55, - "mg": 1111, - "op": [ - [ - "cri", - 0.11 - ], - [ - "def_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ] - ], - "s": "5e3b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitChancePercent", - "value": 55 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2420182942, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n_u", - "ct": 1718510288, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 2420183248, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "att", - 35 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "def", - 31 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "att", - 11, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "def", - 9, - "u" - ] - ], - "p": 713583798, - "s": "d60", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "Attack", - "value": 46, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 24, - "rolls": 6 - }, - { - "type": "Defense", - "value": 40, - "rolls": 1 - } - ], - "ingameId": 2420183248, - "ingameEquippedId": "713583798" - }, - { - "code": "ecw6r", - "ct": 1718587586, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2422195744, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ] - ], - "s": "dc48", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "Speed", - "value": 8, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2422195744, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6w_u", - "ct": 1718758772, - "e": 84469, - "f": "set_revenge", - "g": 4, - "id": 2425807121, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "a9ef", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "RevengeSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 18, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 2425807121, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r_u", - "ct": 1718810780, - "e": 93802, - "f": "set_speed", - "g": 5, - "id": 2426959799, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 769932771, - "s": "21da", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2426959799, - "ingameEquippedId": "769932771" - }, - { - "code": "ecw6w_u", - "ct": 1718811420, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 2426978551, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.04 - ], - [ - "acc", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 2, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 480028811, - "s": "ada9", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2426978551, - "ingameEquippedId": "480028811" - }, - { - "code": "ezl1_w", - "ct": 1718876359, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2430463987, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ezl1_weapon_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.09 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.05 - ] - ], - "p": 738614105, - "s": "f111", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 30, - "rolls": 4 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2430463987, - "ingameEquippedId": "738614105" - }, - { - "code": "exc107101", - "ct": 1718891872, - "g": 5, - "id": 2432162276, - "mg": 1111, - "op": [ - [ - "acc", - 0.16 - ], - [ - "ek_c107101", - 1 - ] - ], - "s": "565e" - }, - { - "code": "exc107101", - "ct": 1718891874, - "g": 5, - "id": 2432162593, - "mg": 1111, - "op": [ - [ - "acc", - 0.12 - ], - [ - "ek_c107101", - 1 - ] - ], - "s": "be75" - }, - { - "code": "exc107101", - "ct": 1718891877, - "g": 5, - "id": 2432162913, - "mg": 1111, - "op": [ - [ - "acc", - 0.11 - ], - [ - "ek_c107101", - 3 - ] - ], - "s": "253d" - }, - { - "code": "exc107101", - "ct": 1718891880, - "g": 5, - "id": 2432163317, - "mg": 1111, - "op": [ - [ - "acc", - 0.16 - ], - [ - "ek_c107101", - 2 - ] - ], - "s": "955a" - }, - { - "code": "exc109001", - "ct": 1718892174, - "g": 5, - "id": 2432197676, - "mg": 1111, - "op": [ - [ - "res", - 0.14 - ], - [ - "ek_c109001", - 2 - ] - ], - "s": "f1f" - }, - { - "code": "exc109001", - "ct": 1718892178, - "g": 5, - "id": 2432198038, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "ek_c109001", - 1 - ] - ], - "s": "67e3" - }, - { - "code": "exc109001", - "ct": 1718892180, - "g": 5, - "id": 2432198312, - "mg": 1111, - "op": [ - [ - "res", - 0.15 - ], - [ - "ek_c109001", - 1 - ] - ], - "p": 326831592, - "s": "c6b2" - }, - { - "code": "ecq6b", - "ct": 1718936983, - "e": 82086, - "f": "set_rage", - "g": 5, - "id": 2434660966, - "level": 85, - "mainStatBaseValue": 8, - "mainStatId": "cra6_boot_m", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.06 - ] - ], - "s": "9173", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 40 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 22, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2434660966, - "ingameEquippedId": "undefined" - }, - { - "code": "ezl1_h", - "ct": 1718957082, - "e": 93863, - "f": "set_cri_dmg", - "g": 5, - "id": 2436387238, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ezl1_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ] - ], - "s": "93e3", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 2436387238, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1718960067, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2436630810, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp", - 181 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "cri", - 0.06, - "c", - "change2_cri_2_2" - ] - ], - "p": 99507012, - "s": "d74c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2, - "modified": true - }, - { - "type": "AttackPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "Health", - "value": 237, - "rolls": 1 - } - ], - "ingameId": 2436630810, - "ingameEquippedId": "99507012" - }, - { - "code": "ezl1_r", - "ct": 1719022481, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2440984992, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ezl1_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ] - ], - "p": 613630545, - "s": "74c8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 2440984992, - "ingameEquippedId": "613630545" - }, - { - "code": "ecw6h_u", - "ct": 1719038304, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2442445949, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 0 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 0, - "u" - ], - [ - "speed", - 4, - "c", - "change2_speed_1_3" - ] - ], - "s": "e0de", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1, - "modified": true - } - ], - "ingameId": 2442445949, - "ingameEquippedId": "undefined" - }, - { - "code": "ezl1_b", - "ct": 1719049059, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2443370535, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ezl1_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.06 - ] - ], - "s": "ccee", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - } - ], - "ingameId": 2443370535, - "ingameEquippedId": "undefined" - }, - { - "code": "ezl1_a", - "ct": 1719049065, - "e": 93862, - "f": "set_cri_dmg", - "g": 5, - "id": 2443370994, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ezl1_armor_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ] - ], - "s": "68dd", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 31, - "rolls": 4 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2443370994, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6w_u", - "ct": 1719150364, - "e": 84375, - "f": "set_torrent", - "g": 4, - "id": 2450639997, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ] - ], - "p": 890790459, - "s": "355f", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 27, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - } - ], - "ingameId": 2450639997, - "ingameEquippedId": "890790459" - }, - { - "code": "ezl1_n", - "ct": 1719186343, - "e": 93863, - "f": "set_cri_dmg", - "g": 5, - "id": 2452477065, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ezl1_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ] - ], - "p": 613630545, - "s": "efe1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2452477065, - "ingameEquippedId": "613630545" - }, - { - "code": "ecd6w_u", - "ct": 1719193962, - "e": 93803, - "f": "set_penetrate", - "g": 5, - "id": 2452995627, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "96b9", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2452995627, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6h_u", - "ct": 1719199545, - "e": 93750, - "f": "set_rage", - "g": 5, - "id": 2453405847, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0 - ], - [ - "cri", - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.06, - "c" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 690904230, - "s": "8e33", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 31, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2, - "modified": true - } - ], - "ingameId": 2453405847, - "ingameEquippedId": "690904230" - }, - { - "code": "ecq6w_u", - "ct": 1719232739, - "e": 93862, - "f": "set_rage", - "g": 5, - "id": 2455851429, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.08, - "c", - "change2_att_rate_1_2" - ] - ], - "s": "6243", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 9, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 2 - } - ], - "ingameId": 2455851429, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6h_u", - "ct": 1719234897, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2456052972, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.04 - ], - [ - "acc", - 0.01, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "a217", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 28, - "rolls": 4 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2456052972, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6w_u", - "ct": 1719239271, - "e": 84469, - "f": "set_torrent", - "g": 4, - "id": 2456477299, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "s": "6885", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 17, - "rolls": 5 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2456477299, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6w_u", - "ct": 1719280987, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2458542739, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "c28b", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - } - ], - "ingameId": 2458542739, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1719372442, - "e": 84375, - "f": "set_acc", - "g": 4, - "id": 2462401078, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp", - 170 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp", - 182 - ], - [ - "max_hp", - 112, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "acc", - 0.07, - "c", - "change2_acc_1_2" - ] - ], - "s": "4343", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Health", - "value": 464, - "rolls": 2 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2462401078, - "ingameEquippedId": "undefined" - }, - { - "code": "ewb1n", - "ct": 1719373040, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2462429274, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "wb1_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "att", - 53 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ] - ], - "p": 494187001, - "s": "72b5", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Attack", - "value": 53, - "rolls": 1 - } - ], - "ingameId": 2462429274, - "ingameEquippedId": "494187001" - }, - { - "code": "ecd6a_u", - "ct": 1719545658, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2469310601, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_2" - ] - ], - "s": "e4ef", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1, - "modified": true - } - ], - "ingameId": 2469310601, - "ingameEquippedId": "undefined" - }, - { - "code": "eah23a", - "ct": 1719553415, - "e": 93862, - "f": "set_counter", - "g": 5, - "id": 2469796401, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah23_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "p": 96079743, - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 21, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2469796401, - "ingameEquippedId": "96079743" - }, - { - "code": "eiu11h", - "ct": 1719565819, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2470498110, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu11_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ] - ], - "p": 795195383, - "s": "d9e8", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - } - ], - "ingameId": 2470498110, - "ingameEquippedId": "795195383" - }, - { - "code": "eiu51b", - "ct": 1719567555, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 2470583605, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "iu51_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.07 - ] - ], - "p": 90857803, - "s": "7648", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 27, - "rolls": 4 - } - ], - "ingameId": 2470583605, - "ingameEquippedId": "90857803" - }, - { - "code": "ecw6h_u", - "ct": 1719752713, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2480610051, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.08, - "c" - ], - [ - "speed", - 1, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "p": 31856726, - "s": "f4c8", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 25, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1, - "modified": true - } - ], - "ingameId": 2480610051, - "ingameEquippedId": "31856726" - }, - { - "code": "ecb6a", - "ct": 1719902979, - "e": 73828, - "f": "set_vampire", - "g": 4, - "id": 2485637611, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 2 - ] - ], - "s": "a136", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "Speed", - "value": 5, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2485637611, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu32h", - "ct": 1719935096, - "f": "set_cri", - "g": 5, - "id": 2486622720, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu32_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "e072", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2486622720, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1720061020, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 2489697243, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "s": "e4b7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 2489697243, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1720061268, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2489711284, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 713583798, - "s": "562f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2489711284, - "ingameEquippedId": "713583798" - }, - { - "code": "ecw6n", - "ct": 1720227089, - "e": 73923, - "f": "set_speed", - "g": 4, - "id": 2496081670, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.04 - ] - ], - "s": "1c2f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2496081670, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1720272643, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2497717407, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 2, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.06, - "c", - "change2_max_hp_rate_1_1" - ] - ], - "s": "8082", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 24, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1, - "modified": true - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2497717407, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1720273081, - "e": 93861, - "f": "set_speed", - "g": 5, - "id": 2497736090, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0 - ], - [ - "cri_dmg", - 0 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.11, - "c", - "change2_cri_dmg_3_1" - ] - ], - "p": 115835449, - "s": "9c58", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 3, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 2497736090, - "ingameEquippedId": "115835449" - }, - { - "code": "eah20n", - "ct": 1720502478, - "e": 93863, - "f": "set_acc", - "g": 5, - "id": 2506099821, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah20_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "acc", - 0.06 - ] - ], - "p": 403476926, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 2506099821, - "ingameEquippedId": "403476926" - }, - { - "code": "eah24w", - "ct": 1720767971, - "e": 93860, - "f": "set_cri", - "g": 5, - "id": 2512093832, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah24_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "s": "3cad", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2512093832, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6h_u", - "ct": 1721292681, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 2523943597, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def", - 33 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def", - 9, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.06, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "s": "1b3f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Defense", - "value": 42, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 33, - "rolls": 5 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2523943597, - "ingameEquippedId": "undefined" - }, - { - "code": "eah24h", - "ct": 1721306197, - "e": 93861, - "f": "set_cri", - "g": 5, - "id": 2524849777, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah24_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "att_rate", - 0.07, - "c", - "change2_att_rate_2_1" - ] - ], - "p": 480028811, - "s": "b4c0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 7, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 2524849777, - "ingameEquippedId": "480028811" - }, - { - "code": "eal85n_u", - "ct": 1721353543, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 2526689173, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 0 - ], - [ - "res", - 0.08 - ], - [ - "max_hp", - 187 - ], - [ - "res", - 0.04 - ], - [ - "max_hp", - 159 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp", - 201 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 0, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp", - 168, - "u" - ], - [ - "speed", - 3, - "c", - "change2_speed_1_2" - ] - ], - "p": 636577158, - "s": "bf49", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Health", - "value": 715, - "rolls": 3 - } - ], - "ingameId": 2526689173, - "ingameEquippedId": "636577158" - }, - { - "code": "eah20w", - "ct": 1721451814, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2531573716, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah20_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.09 - ], - [ - "acc", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.09 - ] - ], - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 2531573716, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1721653192, - "e": 84375, - "f": "set_acc", - "g": 4, - "id": 2542210000, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.07, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "p": 225876663, - "s": "de0f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 37, - "rolls": 5 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2542210000, - "ingameEquippedId": "225876663" - }, - { - "code": "ecw6a_u", - "ct": 1721653344, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2542225851, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "a47e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2542225851, - "ingameEquippedId": "undefined" - }, - { - "code": "eah24a", - "ct": 1721696924, - "e": 93860, - "f": "set_cri", - "g": 5, - "id": 2544307147, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah24_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ] - ], - "p": 115835449, - "s": "aa0a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2544307147, - "ingameEquippedId": "115835449" - }, - { - "code": "ecw6r_u", - "ct": 1721721230, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2545118660, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0 - ], - [ - "max_hp", - 166 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0 - ], - [ - "def_rate", - 0.14, - "c" - ], - [ - "speed", - 2, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 110838566, - "s": "3c3e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 14, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 18, - "rolls": 3, - "modified": true - }, - { - "type": "Health", - "value": 222, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2545118660, - "ingameEquippedId": "110838566" - }, - { - "code": "ecw6a_u", - "ct": 1721722484, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2545154009, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ] - ], - "p": 829105288, - "s": "8336", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 2545154009, - "ingameEquippedId": "829105288" - }, - { - "code": "ecw6a_u", - "ct": 1721722510, - "e": 84375, - "f": "set_cri", - "g": 4, - "id": 2545154611, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.03, - "c", - "change2_cri_1_1" - ] - ], - "s": "7f0a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 2545154611, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b", - "ct": 1721724441, - "e": 82085, - "f": "set_speed", - "g": 5, - "id": 2545205227, - "l": true, - "level": 85, - "mainStatBaseValue": 8, - "mainStatId": "al85_boot_m", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "def", - 30 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.04 - ] - ], - "p": 659243748, - "s": "1bfa", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 40 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 22, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Defense", - "value": 30, - "rolls": 1 - } - ], - "ingameId": 2545205227, - "ingameEquippedId": "659243748" - }, - { - "code": "eot3r_u1", - "ct": 1721749061, - "e": 93861, - "f": "set_att", - "g": 5, - "id": 2546038921, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ] - ], - "p": 140659207, - "s": "5b88", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 30, - "rolls": 4 - } - ], - "ingameId": 2546038921, - "ingameEquippedId": "140659207" - }, - { - "code": "eot3r_u4", - "ct": 1721749094, - "f": "set_revenge", - "g": 5, - "id": 2546040131, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_ring_m4", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.05 - ] - ], - "s": "8d34", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "RevengeSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2546040131, - "ingameEquippedId": "undefined" - }, - { - "code": "eot3n_u3", - "ct": 1721749108, - "e": 7695, - "f": "set_att", - "g": 5, - "id": 2546040595, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ot3u_neck_m3", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "att", - 43 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ] - ], - "s": "77fe", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "Speed", - "value": 5, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Attack", - "value": 43, - "rolls": 1 - } - ], - "ingameId": 2546040595, - "ingameEquippedId": "undefined" - }, - { - "code": "exc601101", - "ct": 1721962529, - "g": 5, - "id": 2551914842, - "l": true, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "ek_c601101", - 3 - ] - ], - "p": 360551102, - "s": "7462" - }, - { - "code": "ess14n", - "ct": 1721985072, - "e": 82144, - "f": "set_cri", - "g": 5, - "id": 2552544383, - "l": true, - "level": 78, - "mainStatBaseValue": 0.13, - "mainStatId": "ss14_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ] - ], - "s": "9258", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 2552544383, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu12w", - "ct": 1722088742, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2555333537, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu12_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.08 - ] - ], - "p": 96079743, - "s": "c4b0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - } - ], - "ingameId": 2555333537, - "ingameEquippedId": "96079743" - }, - { - "code": "eal85b_u", - "ct": 1722227834, - "e": 93863, - "f": "set_res", - "g": 5, - "id": 2558797681, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att", - 37 - ], - [ - "res", - 0 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0 - ], - [ - "att", - 42 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "att", - 22, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "res", - 0.1, - "c", - "change2_res_3_1" - ] - ], - "p": 713631381, - "s": "c15a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "Attack", - "value": 101, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 3, - "modified": true - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 2558797681, - "ingameEquippedId": "713631381" - }, - { - "code": "ecw6n_u", - "ct": 1722349812, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 2561932090, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_2_1" - ] - ], - "s": "583b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 2561932090, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n", - "ct": 1722349848, - "e": 6704, - "f": "set_speed", - "g": 5, - "id": 2561933357, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "def_rate", - 0.07 - ], - [ - "att", - 41 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.07 - ] - ], - "s": "6a5d", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Attack", - "value": 41, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 2561933357, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1722406686, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 2563269116, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ] - ], - "s": "4939", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - } - ], - "ingameId": 2563269116, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9r", - "ct": 1722577894, - "e": 93804, - "f": "set_res", - "g": 5, - "id": 2567721286, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "imh_ring_m11", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.05 - ] - ], - "p": 31856726, - "s": "7df0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 26, - "rolls": 4 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 2567721286, - "ingameEquippedId": "31856726" - }, - { - "code": "eih6w", - "ct": 1722577901, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2567721609, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "imh_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "cri_dmg", - 0 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_2" - ] - ], - "p": 669363338, - "s": "8590", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1, - "modified": true - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 18, - "rolls": 4 - } - ], - "ingameId": 2567721609, - "ingameEquippedId": "669363338" - }, - { - "code": "eah24b", - "ct": 1722581009, - "e": 93861, - "f": "set_cri", - "g": 5, - "id": 2567885380, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah24_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.09 - ], - [ - "cri", - 0.05 - ] - ], - "s": "2596", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2567885380, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w", - "ct": 1722643907, - "e": 73828, - "f": "set_cri", - "g": 4, - "id": 2570293611, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.08 - ] - ], - "s": "e531", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 13, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2570293611, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1722659748, - "e": 93805, - "f": "set_acc", - "g": 5, - "id": 2571078711, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 590699704, - "s": "88b3", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 2571078711, - "ingameEquippedId": "590699704" - }, - { - "code": "ecw6r_u", - "ct": 1722690036, - "e": 93862, - "f": "set_cri", - "g": 5, - "id": 2572775896, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "att", - 40 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "att", - 38 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "att", - 22, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "f349", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "Attack", - "value": 100, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2572775896, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1722818820, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 2578315782, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "bce9", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 21, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 2578315782, - "ingameEquippedId": "undefined" - }, - { - "code": "exc114401", - "ct": 1722843452, - "g": 5, - "id": 2579892759, - "mg": 1111, - "op": [ - [ - "acc", - 0.15 - ], - [ - "ek_c114401", - 2 - ] - ], - "p": 620426700, - "s": "d307" - }, - { - "code": "exc114401", - "ct": 1722843455, - "g": 5, - "id": 2579892935, - "mg": 1111, - "op": [ - [ - "acc", - 0.15 - ], - [ - "ek_c114401", - 1 - ] - ], - "s": "8787" - }, - { - "code": "exc114401", - "ct": 1722843458, - "g": 5, - "id": 2579893108, - "mg": 1111, - "op": [ - [ - "acc", - 0.1 - ], - [ - "ek_c114401", - 3 - ] - ], - "s": "8f03" - }, - { - "code": "eal85r_u", - "ct": 1722843929, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2579922070, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ] - ], - "p": 829105288, - "s": "b79", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - } - ], - "ingameId": 2579922070, - "ingameEquippedId": "829105288" - }, - { - "code": "eal85n_u", - "ct": 1722844022, - "e": 93803, - "f": "set_speed", - "g": 5, - "id": 2579927769, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp", - 189 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 4, - "c", - "change2_speed_1_3" - ] - ], - "p": 829105288, - "s": "6344", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 4, - "rolls": 1, - "modified": true - }, - { - "type": "DefensePercent", - "value": 34, - "rolls": 4 - }, - { - "type": "Health", - "value": 245, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 2579927769, - "ingameEquippedId": "829105288" - }, - { - "code": "eal85b_u", - "ct": 1722844552, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2579962083, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "att_rate", - 0.08, - "c", - "change2_att_rate_2_1" - ] - ], - "p": 777666204, - "s": "5b4d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 11, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 2579962083, - "ingameEquippedId": "777666204" - }, - { - "code": "eal85b_u", - "ct": 1722845028, - "e": 93805, - "f": "set_res", - "g": 5, - "id": 2579992439, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0 - ], - [ - "res", - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "res", - 0.11, - "c", - "change2_res_2_2" - ] - ], - "p": 48988520, - "s": "f7a4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 27, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2, - "modified": true - } - ], - "ingameId": 2579992439, - "ingameEquippedId": "48988520" - }, - { - "code": "eiu12b", - "ct": 1722929538, - "e": 93750, - "f": "set_shield", - "g": 5, - "id": 2583468205, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "iu12_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.06 - ] - ], - "s": "4bc2", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ProtectionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 31, - "rolls": 4 - } - ], - "ingameId": 2583468205, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1723011712, - "e": 93861, - "f": "set_cri", - "g": 5, - "id": 2585297243, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "s": "90b3", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 2585297243, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6b_u", - "ct": 1723081251, - "e": 84470, - "f": "set_immune", - "g": 4, - "id": 2586884783, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.05, - "c", - "change2_cri_dmg_1_1" - ] - ], - "s": "ab5c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Heroic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2586884783, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n", - "ct": 1723081376, - "e": 73828, - "f": "set_speed", - "g": 4, - "id": 2586889573, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.04 - ] - ], - "p": 4647526, - "s": "c8b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2586889573, - "ingameEquippedId": "4647526" - }, - { - "code": "ecq6a_u", - "ct": 1723081562, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2586896646, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp", - 178 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "p": 798777729, - "s": "f4bc", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 29, - "rolls": 4 - }, - { - "type": "Health", - "value": 234, - "rolls": 1 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 2586896646, - "ingameEquippedId": "798777729" - }, - { - "code": "ecw6n", - "ct": 1723083271, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2586962259, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "p": 326831592, - "s": "9d5a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 2586962259, - "ingameEquippedId": "326831592" - }, - { - "code": "eah24r", - "ct": 1723100901, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 2587779548, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah24_ring_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.08 - ] - ], - "s": "2006", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2587779548, - "ingameEquippedId": "undefined" - }, - { - "code": "eah21h", - "ct": 1723106139, - "e": 93802, - "f": "set_cri_dmg", - "g": 5, - "id": 2587958401, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah21_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "speed", - 5 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ] - ], - "p": 784315107, - "s": "0", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1, - "modified": true - } - ], - "ingameId": 2587958401, - "ingameEquippedId": "784315107" - }, - { - "code": "eah24n", - "ct": 1723213899, - "e": 93861, - "f": "set_cri", - "g": 5, - "id": 2591378030, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ah24_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 5 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.05, - "c", - "change2_att_rate_1_1" - ] - ], - "p": 96079748, - "s": "8b5b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 5, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 2591378030, - "ingameEquippedId": "96079748" - }, - { - "code": "ecq6a_u", - "ct": 1723725342, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2605318044, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp", - 187 - ], - [ - "max_hp_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 171 - ], - [ - "max_hp", - 177 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp", - 166 - ], - [ - "speed", - 1, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp", - 224, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.05, - "c", - "change2_max_hp_rate_1_1" - ] - ], - "s": "932f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Health", - "value": 925, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1, - "modified": true - } - ], - "ingameId": 2605318044, - "ingameEquippedId": "undefined" - }, - { - "code": "exc514901", - "ct": 1723798779, - "g": 5, - "id": 2607176526, - "l": true, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "ek_c514901", - 3 - ] - ], - "p": 326707479, - "s": "53e8" - }, - { - "code": "exc514901", - "ct": 1723798784, - "g": 5, - "id": 2607176664, - "l": true, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.14 - ], - [ - "ek_c514901", - 1 - ] - ], - "s": "d9d9" - }, - { - "code": "ecw6a", - "ct": 1723963404, - "e": 73828, - "f": "set_speed", - "g": 4, - "id": 2612661692, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 3 - ] - ], - "s": "3b04", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 23, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2612661692, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1723972747, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 2613190111, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "s": "b90e", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 2613190111, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6h_u", - "ct": 1724030071, - "e": 93750, - "f": "set_rage", - "g": 5, - "id": 2615160698, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.07, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 28393107, - "s": "aa77", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 35, - "rolls": 5 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2615160698, - "ingameEquippedId": "28393107" - }, - { - "code": "ecw6w_u", - "ct": 1724219835, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2618702426, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 559859822, - "s": "15fc", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2618702426, - "ingameEquippedId": "559859822" - }, - { - "code": "ecw6a_u", - "ct": 1724219865, - "e": 84470, - "f": "set_speed", - "g": 4, - "id": 2618702984, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 166 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "s": "f394", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 18, - "rolls": 5 - }, - { - "type": "Health", - "value": 222, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2618702984, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r_u", - "ct": 1724219888, - "e": 93803, - "f": "set_speed", - "g": 5, - "id": 2618703315, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.07, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ] - ], - "s": "b104", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 34, - "rolls": 5 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 2618703315, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1724221408, - "e": 84470, - "f": "set_speed", - "g": 4, - "id": 2618727007, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "p": 96079748, - "s": "e4b7", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 19, - "rolls": 2 - } - ], - "ingameId": 2618727007, - "ingameEquippedId": "96079748" - }, - { - "code": "ecd6a", - "ct": 1724290138, - "f": "set_penetrate", - "g": 5, - "id": 2619906285, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.05 - ] - ], - "s": "e69c", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2619906285, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n", - "ct": 1724291185, - "e": 2973, - "f": "set_speed", - "g": 5, - "id": 2619935254, - "l": true, - "level": 85, - "mainStatBaseValue": 0.13, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "max_hp", - 185 - ], - [ - "acc", - 0.07 - ] - ], - "s": "544c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Health", - "value": 185, - "rolls": 1 - } - ], - "ingameId": 2619935254, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1724291488, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2619943639, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "acc", - 0.07, - "c", - "change2_acc_1_2" - ] - ], - "p": 225876663, - "s": "8f37", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1, - "modified": true - } - ], - "ingameId": 2619943639, - "ingameEquippedId": "225876663" - }, - { - "code": "eal85b_u", - "ct": 1724415131, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2624623095, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_1" - ] - ], - "p": 434015426, - "s": "f74a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 33, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 2624623095, - "ingameEquippedId": "434015426" - }, - { - "code": "eal85b_u", - "ct": 1724418596, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2624757745, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "att", - 41 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "att", - 43 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "att", - 22, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "p": 494187001, - "s": "a736", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Attack", - "value": 106, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 24, - "rolls": 3 - } - ], - "ingameId": 2624757745, - "ingameEquippedId": "494187001" - }, - { - "code": "ecw6a_u", - "ct": 1724418796, - "e": 84375, - "f": "set_cri", - "g": 4, - "id": 2624766450, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "p": 96079748, - "s": "fb11", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "Speed", - "value": 15, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2624766450, - "ingameEquippedId": "96079748" - }, - { - "code": "eal85r_u", - "ct": 1724419767, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2624806455, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 0 - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 5, - "c", - "change2_speed_3_2" - ] - ], - "p": 669363338, - "s": "dd4b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 7, - "rolls": 3, - "modified": true - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 22, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2624806455, - "ingameEquippedId": "669363338" - }, - { - "code": "ecg6a_u", - "ct": 1724634647, - "e": 93804, - "f": "set_max_hp", - "g": 5, - "id": 2632932257, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp", - 180 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp", - 198 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "s": "e5a0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Health", - "value": 490, - "rolls": 2 - } - ], - "ingameId": 2632932257, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu51w", - "ct": 1724678510, - "f": "set_rage", - "g": 5, - "id": 2633919631, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu51_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ] - ], - "s": "9dfe", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "RageSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2633919631, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r_u", - "ct": 1724678657, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2633923246, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "acc", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 195 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 171 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 163 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp", - 168, - "u" - ] - ], - "s": "5bb1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectivenessPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "Health", - "value": 697, - "rolls": 3 - } - ], - "ingameId": 2633923246, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r_u", - "ct": 1724678676, - "e": 84468, - "f": "set_speed", - "g": 4, - "id": 2633923676, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 156 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp", - 56, - "u" - ] - ], - "p": 566472035, - "s": "e1af", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "Health", - "value": 212, - "rolls": 1 - } - ], - "ingameId": 2633923676, - "ingameEquippedId": "566472035" - }, - { - "code": "ecw6h", - "ct": 1724678708, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2633924624, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 2 - ] - ], - "p": 742543115, - "s": "8c0b", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 10, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2633924624, - "ingameEquippedId": "742543115" - }, - { - "code": "eih7a", - "ct": 1724679037, - "e": 93862, - "f": "set_immune", - "g": 5, - "id": 2633932344, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "imh_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ] - ], - "s": "f519", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 2633932344, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n_u", - "ct": 1724679701, - "e": 84410, - "f": "set_cri", - "g": 4, - "id": 2633949204, - "l": true, - "level": 90, - "mainStatBaseValue": 0.12, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "cri", - 0.12, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "s": "a331", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitChancePercent", - "value": 60 - }, - "substats": [ - { - "type": "Speed", - "value": 20, - "rolls": 5 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2633949204, - "ingameEquippedId": "undefined" - }, - { - "code": "eot3n_u4", - "ct": 1724681007, - "e": 93803, - "f": "set_vampire", - "g": 5, - "id": 2633982774, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ot3u_neck_m4", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0 - ], - [ - "res", - 0.09 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0 - ], - [ - "def_rate", - 0.08, - "c", - "change2_def_rate_2_1" - ] - ], - "s": "a9c3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 2, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 2633982774, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1724726609, - "e": 93863, - "f": "set_speed", - "g": 5, - "id": 2634795450, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "acc", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "p": 4647526, - "s": "cc4e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 30, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 2634795450, - "ingameEquippedId": "4647526" - }, - { - "code": "ecw6n_u", - "ct": 1724727095, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2634807446, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 0 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "max_hp", - 177, - "c", - "change2_max_hp_1_1" - ] - ], - "p": 620426700, - "s": "9c62", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Health", - "value": 233, - "rolls": 1, - "modified": true - } - ], - "ingameId": 2634807446, - "ingameEquippedId": "620426700" - }, - { - "code": "eal85b_u", - "ct": 1724728260, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2634834095, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "def", - 29 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp", - 0 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp", - 0 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "def", - 9, - "u" - ], - [ - "acc", - 0.07, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp", - 112, - "u" - ], - [ - "max_hp", - 323, - "c", - "change2_max_hp_2_2" - ] - ], - "p": 403476926, - "s": "43e9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "Defense", - "value": 38, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 37, - "rolls": 5 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Health", - "value": 435, - "rolls": 2, - "modified": true - } - ], - "ingameId": 2634834095, - "ingameEquippedId": "403476926" - }, - { - "code": "eiu32n", - "ct": 1724730510, - "e": 93862, - "f": "set_torrent", - "g": 5, - "id": 2634885294, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu32_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.03 - ] - ], - "s": "d140", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2634885294, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85r_u", - "ct": 1724736483, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2635023678, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ] - ], - "s": "780c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - } - ], - "ingameId": 2635023678, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85r_u", - "ct": 1724737524, - "e": 93863, - "f": "set_speed", - "g": 5, - "id": 2635045827, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 6844892, - "s": "b380", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 2635045827, - "ingameEquippedId": "6844892" - }, - { - "code": "eiu21a", - "ct": 1724749883, - "e": 12359, - "f": "set_vampire", - "g": 5, - "id": 2635285328, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu21_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.05 - ] - ], - "s": "fb88", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2635285328, - "ingameEquippedId": "undefined" - }, - { - "code": "eih6w", - "ct": 1724749927, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2635286170, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "imh_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.05 - ] - ], - "p": 445022861, - "s": "f0ec", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 2635286170, - "ingameEquippedId": "445022861" - }, - { - "code": "eah17w", - "ct": 1724812999, - "e": 93861, - "f": "set_max_hp", - "g": 5, - "id": 2636470290, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah17_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ] - ], - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2636470290, - "ingameEquippedId": "undefined" - }, - { - "code": "exc110301", - "ct": 1724815720, - "g": 5, - "id": 2636530703, - "l": true, - "mg": 1111, - "op": [ - [ - "cri", - 0.07 - ], - [ - "ek_c110301", - 2 - ] - ], - "s": "4495" - }, - { - "code": "exc110301", - "ct": 1724815725, - "g": 5, - "id": 2636530788, - "l": true, - "mg": 1111, - "op": [ - [ - "cri", - 0.1 - ], - [ - "ek_c110301", - 3 - ] - ], - "s": "5cbb" - }, - { - "code": "exc110301", - "ct": 1724815729, - "g": 5, - "id": 2636530872, - "l": true, - "mg": 1111, - "op": [ - [ - "cri", - 0.11 - ], - [ - "ek_c110301", - 2 - ] - ], - "p": 704271358, - "s": "924" - }, - { - "code": "ecq6a_u", - "ct": 1724836561, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2636942538, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "max_hp", - 202 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "s": "60a9", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Health", - "value": 258, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 21, - "rolls": 4 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - } - ], - "ingameId": 2636942538, - "ingameEquippedId": "undefined" - }, - { - "code": "exc110301", - "ct": 1724851819, - "g": 5, - "id": 2637292181, - "l": true, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "ek_c110301", - 1 - ] - ], - "s": "b881" - }, - { - "code": "eiu42h", - "ct": 1725005436, - "e": 7695, - "f": "set_coop", - "g": 5, - "id": 2640767308, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu42_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.09 - ] - ], - "s": "4932", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "UnitySet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2640767308, - "ingameEquippedId": "undefined" - }, - { - "code": "exc201101", - "ct": 1725351993, - "g": 5, - "id": 2649103949, - "mg": 1111, - "op": [ - [ - "cri", - 0.1 - ], - [ - "ek_c201101", - 2 - ] - ], - "s": "698f" - }, - { - "code": "exc201101", - "ct": 1725351997, - "g": 5, - "id": 2649104055, - "mg": 1111, - "op": [ - [ - "cri", - 0.1 - ], - [ - "ek_c201101", - 2 - ] - ], - "s": "a8e9" - }, - { - "code": "exc201101", - "ct": 1725352007, - "g": 5, - "id": 2649104340, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "ek_c201101", - 3 - ] - ], - "s": "e4aa" - }, - { - "code": "exc201101", - "ct": 1725352143, - "g": 5, - "id": 2649107724, - "mg": 1111, - "op": [ - [ - "cri", - 0.11 - ], - [ - "ek_c201101", - 3 - ] - ], - "s": "bd86" - }, - { - "code": "exc201101", - "ct": 1725352148, - "g": 5, - "id": 2649107842, - "mg": 1111, - "op": [ - [ - "cri", - 0.08 - ], - [ - "ek_c201101", - 1 - ] - ], - "s": "7f14" - }, - { - "code": "exc201101", - "ct": 1725352151, - "g": 5, - "id": 2649107916, - "mg": 1111, - "op": [ - [ - "cri", - 0.09 - ], - [ - "ek_c201101", - 2 - ] - ], - "s": "5b30" - }, - { - "code": "exc201101", - "ct": 1725352154, - "g": 5, - "id": 2649108011, - "mg": 1111, - "op": [ - [ - "cri", - 0.09 - ], - [ - "ek_c201101", - 2 - ] - ], - "s": "2d07" - }, - { - "code": "exc201101", - "ct": 1725352157, - "g": 5, - "id": 2649108099, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "ek_c201101", - 2 - ] - ], - "s": "9ee3" - }, - { - "code": "exc201101", - "ct": 1725352159, - "g": 5, - "id": 2649108171, - "l": true, - "mg": 1111, - "op": [ - [ - "cri", - 0.09 - ], - [ - "ek_c201101", - 1 - ] - ], - "s": "85be" - }, - { - "code": "exc201101", - "ct": 1725352164, - "g": 5, - "id": 2649108343, - "mg": 1111, - "op": [ - [ - "cri", - 0.07 - ], - [ - "ek_c201101", - 2 - ] - ], - "s": "9624" - }, - { - "code": "exc201101", - "ct": 1725352169, - "g": 5, - "id": 2649108506, - "mg": 1111, - "op": [ - [ - "cri", - 0.09 - ], - [ - "ek_c201101", - 3 - ] - ], - "s": "532b" - }, - { - "code": "exc201101", - "ct": 1725352172, - "g": 5, - "id": 2649108554, - "mg": 1111, - "op": [ - [ - "cri", - 0.1 - ], - [ - "ek_c201101", - 3 - ] - ], - "s": "89ed" - }, - { - "code": "ela10n", - "ct": 1725439613, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2651059268, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "la10_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.09 - ] - ], - "p": 736028830, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 37, - "rolls": 5 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2651059268, - "ingameEquippedId": "736028830" - }, - { - "code": "ela10b", - "ct": 1725507245, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2652931540, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "la10_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ] - ], - "p": 306770592, - "s": "a67e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2652931540, - "ingameEquippedId": "306770592" - }, - { - "code": "ecw6n_u", - "ct": 1725603875, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2656306221, - "l": true, - "level": 90, - "mainStatBaseValue": 0.12, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "cri", - 0.12, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "def", - 31 - ], - [ - "def", - 29 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "def", - 18, - "u" - ] - ], - "s": "7906", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitChancePercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Defense", - "value": 78, - "rolls": 2 - } - ], - "ingameId": 2656306221, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6w_u", - "ct": 1725605008, - "e": 93805, - "f": "set_penetrate", - "g": 5, - "id": 2656357198, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "p": 568417281, - "s": "e5ea", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 3 - } - ], - "ingameId": 2656357198, - "ingameEquippedId": "568417281" - }, - { - "code": "ela10a", - "ct": 1725636483, - "e": 93862, - "f": "set_cri_dmg", - "g": 5, - "id": 2657825562, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "la10_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 18, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2657825562, - "ingameEquippedId": "undefined" - }, - { - "code": "ela10w", - "ct": 1725695323, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2659693589, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "la10_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ] - ], - "p": 28398305, - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 24, - "rolls": 3 - } - ], - "ingameId": 2659693589, - "ingameEquippedId": "28398305" - }, - { - "code": "ela10r", - "ct": 1725848392, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2666109978, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la10_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ] - ], - "p": 640588979, - "s": "fc3e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 25, - "rolls": 4 - } - ], - "ingameId": 2666109978, - "ingameEquippedId": "640588979" - }, - { - "code": "esh2_w", - "ct": 1726127600, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2675663243, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "esh2_weapon_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.05 - ] - ], - "p": 434015426, - "s": "c897", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 15, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2675663243, - "ingameEquippedId": "434015426" - }, - { - "code": "esh2_h", - "ct": 1726127614, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2675665113, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "esh2_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.05 - ] - ], - "p": 461351155, - "s": "60f5", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 15, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2675665113, - "ingameEquippedId": "461351155" - }, - { - "code": "ecq6a_u", - "ct": 1726129494, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2675911892, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "426e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - } - ], - "ingameId": 2675911892, - "ingameEquippedId": "undefined" - }, - { - "code": "ela10h", - "ct": 1726146915, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2677739007, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "la10_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "s": "cdc8", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2677739007, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6a", - "ct": 1726184072, - "f": "set_torrent", - "g": 5, - "id": 2679949564, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp", - 162 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "4750", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Health", - "value": 162, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2679949564, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r_u", - "ct": 1726194389, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2680882753, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp", - 198 - ], - [ - "res", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "max_hp", - 199 - ], - [ - "max_hp", - 202 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "max_hp", - 168, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "p": 490684210, - "s": "bb82", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Health", - "value": 767, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 2680882753, - "ingameEquippedId": "490684210" - }, - { - "code": "ecd6b_u", - "ct": 1726194514, - "e": 93862, - "f": "set_penetrate", - "g": 5, - "id": 2680893341, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp", - 175 - ], - [ - "att_rate", - 0 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp", - 178 - ], - [ - "max_hp", - 179 - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp", - 168, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.07, - "c", - "change2_att_rate_2_1" - ] - ], - "p": 591089796, - "s": "d017", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Health", - "value": 700, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 10, - "rolls": 2, - "modified": true - } - ], - "ingameId": 2680893341, - "ingameEquippedId": "591089796" - }, - { - "code": "ecb6h_u", - "ct": 1726194873, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2680923640, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "res", - 0.08, - "c" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "s": "90a4", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1, - "modified": true - }, - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 2680923640, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1726196318, - "e": 93803, - "f": "set_speed", - "g": 5, - "id": 2681045515, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 568417281, - "s": "c218", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 26, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2681045515, - "ingameEquippedId": "568417281" - }, - { - "code": "ecs17h", - "ct": 1726214399, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2682312400, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "cs17_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ] - ], - "p": 279573776, - "s": "4008", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2682312400, - "ingameEquippedId": "279573776" - }, - { - "code": "ecd6w_u", - "ct": 1726283282, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2686636878, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "res", - 0.07, - "u" - ] - ], - "s": "de89", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 39, - "rolls": 5 - } - ], - "ingameId": 2686636878, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1726313462, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2688489404, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "def_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "p": 323638178, - "s": "f2e6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2688489404, - "ingameEquippedId": "323638178" - }, - { - "code": "ecw6r_u", - "ct": 1726313474, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2688490204, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "att", - 38 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "att", - 43 - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "att", - 22, - "u" - ] - ], - "p": 326831592, - "s": "c95b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "Attack", - "value": 103, - "rolls": 2 - } - ], - "ingameId": 2688490204, - "ingameEquippedId": "326831592" - }, - { - "code": "ecw6a", - "ct": 1726313506, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2688491984, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp", - 195 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp", - 169 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp", - 158 - ], - [ - "acc", - 0.05 - ] - ], - "s": "32c5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 3 - }, - { - "type": "Health", - "value": 522, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2688491984, - "ingameEquippedId": "undefined" - }, - { - "code": "ess15r", - "ct": 1726314517, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2688553281, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "ss15_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.05 - ] - ], - "s": "67c1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 26, - "rolls": 5 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 2688553281, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6b_u", - "ct": 1726319020, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2688850767, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.08, - "c", - "change2_max_hp_rate_1_2" - ] - ], - "p": 566472035, - "s": "a1d8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 32, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2688850767, - "ingameEquippedId": "566472035" - }, - { - "code": "edd6b", - "ct": 1726329177, - "f": "set_torrent", - "g": 5, - "id": 2689550756, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "edw6_boot_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ] - ], - "s": "6b31", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2689550756, - "ingameEquippedId": "undefined" - }, - { - "code": "esh2_a", - "ct": 1726367875, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2692206689, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "esh2_armor_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "p": 704271358, - "s": "6257", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2692206689, - "ingameEquippedId": "704271358" - }, - { - "code": "ecw6n", - "ct": 1726378990, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2693476479, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.03 - ] - ], - "s": "3843", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 26, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 2 - } - ], - "ingameId": 2693476479, - "ingameEquippedId": "undefined" - }, - { - "code": "edb6h", - "ct": 1726386511, - "e": 82086, - "f": "set_res", - "g": 5, - "id": 2694238022, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "edw6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ] - ], - "s": "98bf", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 4 - } - ], - "ingameId": 2694238022, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6h_u", - "ct": 1726389383, - "e": 93803, - "f": "set_res", - "g": 5, - "id": 2694514807, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "5daf", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 2694514807, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a", - "ct": 1726390271, - "e": 82085, - "f": "set_res", - "g": 5, - "id": 2694599816, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp", - 186 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp", - 201 - ], - [ - "max_hp", - 176 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "s": "adac", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Health", - "value": 563, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2694599816, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6h_u", - "ct": 1726391583, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2694723564, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "att", - 45 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att", - 41 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att", - 22, - "u" - ] - ], - "s": "6cf", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 28, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "Attack", - "value": 108, - "rolls": 2 - } - ], - "ingameId": 2694723564, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6n", - "ct": 1726393242, - "e": 3964, - "f": "set_penetrate", - "g": 5, - "id": 2694880757, - "l": true, - "level": 85, - "mainStatBaseValue": 0.11, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.55, - "mg": 1111, - "op": [ - [ - "cri", - 0.11 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "aa3c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "CriticalHitChancePercent", - "value": 55 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1 - } - ], - "ingameId": 2694880757, - "ingameEquippedId": "undefined" - }, - { - "code": "esh2_b", - "ct": 1726456289, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2699991803, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "esh2_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.08 - ] - ], - "p": 738614105, - "s": "a7b3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2699991803, - "ingameEquippedId": "738614105" - }, - { - "code": "ecw6w", - "ct": 1726480262, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2702530260, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "att_rate", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.05 - ], - [ - "res", - 0.06 - ] - ], - "s": "bbbc", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 10, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - } - ], - "ingameId": 2702530260, - "ingameEquippedId": "undefined" - }, - { - "code": "esh2_r", - "ct": 1726709847, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2718024954, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "esh2_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "p": 738614105, - "s": "850", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2718024954, - "ingameEquippedId": "738614105" - }, - { - "code": "ecw6w_u", - "ct": 1726710104, - "e": 84469, - "f": "set_speed", - "g": 4, - "id": 2718044032, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "p": 649028156, - "s": "9d4d", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2718044032, - "ingameEquippedId": "649028156" - }, - { - "code": "esh2_n", - "ct": 1726710107, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2718044295, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "esh2_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ] - ], - "s": "3b5", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 4 - } - ], - "ingameId": 2718044295, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a", - "ct": 1726710492, - "e": 73828, - "f": "set_res", - "g": 4, - "id": 2718072924, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.05 - ] - ], - "s": "dda", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2718072924, - "ingameEquippedId": "undefined" - }, - { - "code": "edw6b_u", - "ct": 1726714321, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2718350089, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "65de", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 2718350089, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1726716294, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2718495589, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_2" - ] - ], - "s": "b180", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 20, - "rolls": 4 - } - ], - "ingameId": 2718495589, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1726718102, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2718616445, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ] - ], - "s": "25c6", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 27, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 2718616445, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6h_u", - "ct": 1726718102, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2718616448, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "att_rate", - 0.07, - "c", - "change2_att_rate_1_2" - ] - ], - "p": 11185757, - "s": "2f4b", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 2718616448, - "ingameEquippedId": "11185757" - }, - { - "code": "eiu41w", - "ct": 1726731113, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2719411286, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu41_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.09 - ] - ], - "p": 559859824, - "s": "a293", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 27, - "rolls": 4 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2719411286, - "ingameEquippedId": "559859824" - }, - { - "code": "eiu32h", - "ct": 1726736225, - "f": "set_cri", - "g": 5, - "id": 2719666637, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu32_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "1e45", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2719666637, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6h_u", - "ct": 1726736489, - "e": 93862, - "f": "set_immune", - "g": 5, - "id": 2719679101, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "s": "8891", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 27, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 2719679101, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h", - "ct": 1726737959, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2719749549, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "79a9", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2719749549, - "ingameEquippedId": "undefined" - }, - { - "code": "edd6a", - "ct": 1726795423, - "e": 6704, - "f": "set_torrent", - "g": 5, - "id": 2722631365, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "edw6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.04 - ] - ], - "s": "f796", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2 - } - ], - "ingameId": 2722631365, - "ingameEquippedId": "undefined" - }, - { - "code": "esh2_w", - "ct": 1727019785, - "e": 93803, - "f": "set_penetrate", - "g": 5, - "id": 2740001755, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "esh2_weapon_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.09 - ], - [ - "att_rate", - 0.06 - ] - ], - "p": 704271358, - "s": "47cc", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2740001755, - "ingameEquippedId": "704271358" - }, - { - "code": "ecw6a_u", - "ct": 1727053282, - "e": 93803, - "f": "set_speed", - "g": 5, - "id": 2742107825, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "acc", - 0.07, - "u" - ] - ], - "s": "61b7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 36, - "rolls": 5 - } - ], - "ingameId": 2742107825, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1727056905, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2742433564, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 4, - "u" - ] - ], - "p": 713583798, - "s": "b3f8", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 19, - "rolls": 5 - } - ], - "ingameId": 2742433564, - "ingameEquippedId": "713583798" - }, - { - "code": "ecd6w", - "ct": 1727061158, - "e": 73828, - "f": "set_torrent", - "g": 4, - "id": 2742813770, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.08 - ] - ], - "s": "dd1e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2742813770, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6h", - "ct": 1727061399, - "f": "set_immune", - "g": 5, - "id": 2742835320, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "att", - 41 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.05 - ] - ], - "s": "120f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "Attack", - "value": 41, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2742835320, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6n_u", - "ct": 1727062000, - "e": 84411, - "f": "set_immune", - "g": 4, - "id": 2742885924, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "att", - 38 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "def", - 27 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "def", - 9, - "u" - ] - ], - "s": "71a8", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Attack", - "value": 49, - "rolls": 1 - }, - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "Defense", - "value": 36, - "rolls": 1 - } - ], - "ingameId": 2742885924, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6a_u", - "ct": 1727064990, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2743133933, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "p": 525461035, - "s": "d0c1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - } - ], - "ingameId": 2743133933, - "ingameEquippedId": "525461035" - }, - { - "code": "exc205001", - "ct": 1727065175, - "g": 5, - "id": 2743149764, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.11 - ], - [ - "ek_c205001", - 1 - ] - ], - "p": 99507012, - "s": "2adc" - }, - { - "code": "esh2_h", - "ct": 1727135902, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2747790086, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "esh2_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ] - ], - "s": "c762", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2747790086, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6r_u", - "ct": 1727234411, - "e": 84375, - "f": "set_immune", - "g": 4, - "id": 2753718178, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 713583798, - "s": "5b61", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Heroic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 18, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2753718178, - "ingameEquippedId": "713583798" - }, - { - "code": "ecd6w_u", - "ct": 1727328848, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2757717606, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "417e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 2757717606, - "ingameEquippedId": "undefined" - }, - { - "code": "esh2_a", - "ct": 1727354610, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2759299905, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "esh2_armor_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "s": "19cb", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2759299905, - "ingameEquippedId": "undefined" - }, - { - "code": "edw6h_u", - "ct": 1727449335, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2763713599, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "p": 829105288, - "s": "5003", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 2763713599, - "ingameEquippedId": "829105288" - }, - { - "code": "esh2_b", - "ct": 1727484946, - "e": 93861, - "f": "set_penetrate", - "g": 5, - "id": 2765283125, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "esh2_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.06 - ] - ], - "s": "2b01", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 2765283125, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w_u", - "ct": 1727490726, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2765718636, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ] - ], - "p": 784315107, - "s": "4f9e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 28, - "rolls": 4 - } - ], - "ingameId": 2765718636, - "ingameEquippedId": "784315107" - }, - { - "code": "ecw6a_u", - "ct": 1727514575, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 2767325455, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp", - 0 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp", - 0 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "max_hp", - 112, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "max_hp", - 323, - "c", - "change2_max_hp_2_2" - ] - ], - "p": 566472035, - "s": "7e2a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Health", - "value": 435, - "rolls": 2, - "modified": true - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 33, - "rolls": 4 - } - ], - "ingameId": 2767325455, - "ingameEquippedId": "566472035" - }, - { - "code": "eiu12a", - "ct": 1727580903, - "f": "set_scar", - "g": 5, - "id": 2770828016, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu12_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "e32a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2770828016, - "ingameEquippedId": "undefined" - }, - { - "code": "esh2_r", - "ct": 1727701394, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2776372648, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "esh2_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "p": 704271358, - "s": "8a98", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2776372648, - "ingameEquippedId": "704271358" - }, - { - "code": "eiu51r", - "ct": 1727704201, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2776521515, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu51_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "acc", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ] - ], - "p": 412803674, - "s": "6d13", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - } - ], - "ingameId": 2776521515, - "ingameEquippedId": "412803674" - }, - { - "code": "edd6n", - "ct": 1727705256, - "e": 8161, - "f": "set_torrent", - "g": 5, - "id": 2776578064, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "edw6_neck_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ] - ], - "s": "e98f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2776578064, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6h", - "ct": 1727705422, - "e": 17723, - "f": "set_penetrate", - "g": 5, - "id": 2776586425, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "def_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ] - ], - "s": "629c", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 2776586425, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9n", - "ct": 1727749318, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2779416145, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "8a38", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 29, - "rolls": 4 - } - ], - "ingameId": 2779416145, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1727755249, - "f": "set_speed", - "g": 5, - "id": 2780143769, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.04 - ] - ], - "s": "4e0d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2780143769, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1727765164, - "e": 84469, - "f": "set_cri", - "g": 4, - "id": 2781271794, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 583954927, - "s": "c0d2", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 22, - "rolls": 5 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2781271794, - "ingameEquippedId": "583954927" - }, - { - "code": "ecw6n", - "ct": 1727839580, - "e": 7229, - "f": "set_speed", - "g": 5, - "id": 2787291270, - "level": 85, - "mainStatBaseValue": 0.13, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "def", - 34 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "def", - 32 - ] - ], - "p": 313109293, - "s": "524a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "Defense", - "value": 66, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 10, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2787291270, - "ingameEquippedId": "313109293" - }, - { - "code": "edq6a_u", - "ct": 1727846797, - "e": 93861, - "f": "set_immune", - "g": 5, - "id": 2787922297, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "fc64", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 26, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2787922297, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6w_u", - "ct": 1727847366, - "e": 93804, - "f": "set_immune", - "g": 5, - "id": 2787971093, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "93ef", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2787971093, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6n_u", - "ct": 1727847764, - "e": 84375, - "f": "set_immune", - "g": 4, - "id": 2788003768, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "s": "eb0e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 16, - "rolls": 5 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2788003768, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1727848096, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2788030981, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "p": 769932771, - "s": "2b08", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 29, - "rolls": 4 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - } - ], - "ingameId": 2788030981, - "ingameEquippedId": "769932771" - }, - { - "code": "ecw6w", - "ct": 1727848846, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2788092014, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 180 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp", - 200 - ] - ], - "s": "b701", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "Health", - "value": 380, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - } - ], - "ingameId": 2788092014, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6h_u", - "ct": 1727849475, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2788143526, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_1_1" - ] - ], - "p": 738614105, - "s": "f661", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 19, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "HealthPercent", - "value": 28, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - } - ], - "ingameId": 2788143526, - "ingameEquippedId": "738614105" - }, - { - "code": "esh2_n", - "ct": 1727850630, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2788238042, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "esh2_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "p": 704271358, - "s": "e2cb", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2788238042, - "ingameEquippedId": "704271358" - }, - { - "code": "ecd6n_u", - "ct": 1727868519, - "e": 93862, - "f": "set_penetrate", - "g": 5, - "id": 2789534797, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp", - 189 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp", - 181 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp", - 169 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "max_hp", - 168, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 784315107, - "s": "b536", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Health", - "value": 707, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2789534797, - "ingameEquippedId": "784315107" - }, - { - "code": "ecq6a", - "ct": 1727873979, - "e": 82086, - "f": "set_immune", - "g": 5, - "id": 2789937479, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "s": "b93", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - } - ], - "ingameId": 2789937479, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n_u", - "ct": 1727875446, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2790054639, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_neck_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp", - 151 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 56, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "p": 649028156, - "s": "4cd6", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Health", - "value": 207, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 17, - "rolls": 5 - }, - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2790054639, - "ingameEquippedId": "649028156" - }, - { - "code": "ecq6w_u", - "ct": 1727875720, - "e": 93805, - "f": "set_immune", - "g": 5, - "id": 2790077347, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 690904230, - "s": "25b0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2790077347, - "ingameEquippedId": "690904230" - }, - { - "code": "ecw6w_u", - "ct": 1728032289, - "e": 93863, - "f": "set_acc", - "g": 5, - "id": 2800092852, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "93fd", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 26, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - } - ], - "ingameId": 2800092852, - "ingameEquippedId": "undefined" - }, - { - "code": "esh2_w", - "ct": 1728044263, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2800777188, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "esh2_weapon_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "p": 892353109, - "s": "bfb7", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 30, - "rolls": 4 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2800777188, - "ingameEquippedId": "892353109" - }, - { - "code": "esh2_h", - "ct": 1728045162, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2800834495, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "esh2_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "p": 412803674, - "s": "19d8", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 25, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2800834495, - "ingameEquippedId": "412803674" - }, - { - "code": "eah21b", - "ct": 1728216109, - "e": 93862, - "f": "set_cri_dmg", - "g": 5, - "id": 2808918406, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah21_boot_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ] - ], - "p": 640588979, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 2808918406, - "ingameEquippedId": "640588979" - }, - { - "code": "edq6a_u", - "ct": 1728218342, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2809025952, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "s": "6011", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 27, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 2809025952, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1728281646, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 2811860719, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 6885517, - "s": "5256", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 27, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 2811860719, - "ingameEquippedId": "6885517" - }, - { - "code": "esh2_a", - "ct": 1728430729, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2818037837, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "esh2_armor_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 4 - ] - ], - "p": 354206748, - "s": "2c6b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2818037837, - "ingameEquippedId": "354206748" - }, - { - "code": "ecg6r_u", - "ct": 1728437115, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2818365284, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "p": 326928979, - "s": "9667", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 2818365284, - "ingameEquippedId": "326928979" - }, - { - "code": "esh2_b", - "ct": 1728516165, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2821437906, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "esh2_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ] - ], - "p": 781837305, - "s": "c034", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2821437906, - "ingameEquippedId": "781837305" - }, - { - "code": "ecd6h_u", - "ct": 1728565154, - "e": 93862, - "f": "set_penetrate", - "g": 5, - "id": 2824899877, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "4bfa", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 2824899877, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6n", - "ct": 1728565775, - "e": 82031, - "f": "set_torrent", - "g": 5, - "id": 2824952545, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.06 - ] - ], - "s": "4598", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 24, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 2824952545, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6a_u", - "ct": 1728565890, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2824962390, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "2cb5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 2824962390, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6a_u", - "ct": 1728566307, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2824998894, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.07, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.08, - "c", - "change2_max_hp_rate_1_2" - ] - ], - "p": 893757497, - "s": "79dd", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 38, - "rolls": 5 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2824998894, - "ingameEquippedId": "893757497" - }, - { - "code": "edg6n_u", - "ct": 1728609377, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2827188730, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "acc", - 0.05, - "u" - ] - ], - "s": "359e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 32, - "rolls": 4 - } - ], - "ingameId": 2827188730, - "ingameEquippedId": "undefined" - }, - { - "code": "ecl24r", - "ct": 1728609529, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2827197935, - "l": true, - "level": 0, - "mg": 1111, - "name": "Unknown", - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 1 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "p": 795195383, - "s": "7f65", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 0 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 2827197935, - "ingameEquippedId": "795195383" - }, - { - "code": "ecg6r_u", - "ct": 1728610221, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2827241316, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp", - 193 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp", - 195 - ], - [ - "acc", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "p": 894623419, - "s": "e6a3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Health", - "value": 500, - "rolls": 2 - } - ], - "ingameId": 2827241316, - "ingameEquippedId": "894623419" - }, - { - "code": "edw6r_u", - "ct": 1728610816, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 2827277223, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 306770592, - "s": "51df", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 27, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 2827277223, - "ingameEquippedId": "306770592" - }, - { - "code": "exc110001", - "ct": 1728624141, - "g": 5, - "id": 2828056207, - "l": true, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "ek_c110001", - 2 - ] - ], - "p": 784315107, - "s": "736" - }, - { - "code": "ecw6a_u", - "ct": 1728635548, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2828581943, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 6844892, - "s": "3524", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 26, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 2 - } - ], - "ingameId": 2828581943, - "ingameEquippedId": "6844892" - }, - { - "code": "esh2_r", - "ct": 1728637605, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2828680058, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "esh2_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ] - ], - "p": 781837305, - "s": "30ec", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 25, - "rolls": 4 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2828680058, - "ingameEquippedId": "781837305" - }, - { - "code": "esh2_n", - "ct": 1728637606, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2828680059, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "esh2_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ] - ], - "p": 326928979, - "s": "5466", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 25, - "rolls": 4 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 2828680059, - "ingameEquippedId": "326928979" - }, - { - "code": "ecw6a_u", - "ct": 1728703904, - "e": 84411, - "f": "set_speed", - "g": 4, - "id": 2832195210, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "p": 897188455, - "s": "4f03", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 21, - "rolls": 5 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2832195210, - "ingameEquippedId": "897188455" - }, - { - "code": "ecg6r_u", - "ct": 1728738185, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2834678494, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "p": 830235768, - "s": "710a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 2834678494, - "ingameEquippedId": "830235768" - }, - { - "code": "ecd6w", - "ct": 1728738295, - "e": 12476, - "f": "set_penetrate", - "g": 5, - "id": 2834687413, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ] - ], - "s": "61a1", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 6, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2834687413, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6n_u", - "ct": 1728790459, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2837773180, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "p": 354206748, - "s": "5e77", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2837773180, - "ingameEquippedId": "354206748" - }, - { - "code": "edd6h", - "ct": 1728792784, - "f": "set_penetrate", - "g": 5, - "id": 2837962220, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "edw6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.08 - ] - ], - "s": "ee19", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2837962220, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a", - "ct": 1728794401, - "e": 56142, - "f": "set_max_hp", - "g": 5, - "id": 2838096063, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp", - 182 - ], - [ - "max_hp", - 199 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp", - 168 - ], - [ - "speed", - 4 - ] - ], - "s": "aea4", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 12, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Health", - "value": 549, - "rolls": 3 - } - ], - "ingameId": 2838096063, - "ingameEquippedId": "undefined" - }, - { - "code": "edq6a_u", - "ct": 1728800631, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2838573453, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "e057", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 26, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 19, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2838573453, - "ingameEquippedId": "undefined" - }, - { - "code": "esh2_w", - "ct": 1729003675, - "e": 93861, - "f": "set_speed", - "g": 5, - "id": 2847469456, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "esh2_weapon_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 3 - ] - ], - "s": "2df0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 2847469456, - "ingameEquippedId": "undefined" - }, - { - "code": "edw6h_u", - "ct": 1729065540, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2849715538, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "s": "ccbf", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2849715538, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6w_u", - "ct": 1729066577, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2849753468, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "8db9", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 2849753468, - "ingameEquippedId": "undefined" - }, - { - "code": "esh2_h", - "ct": 1729081917, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2850363854, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "esh2_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ] - ], - "p": 793619248, - "s": "9522", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2850363854, - "ingameEquippedId": "793619248" - }, - { - "code": "eal85b_u", - "ct": 1729085889, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 2850566307, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "d5f4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 2850566307, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1729178994, - "f": "set_acc", - "g": 5, - "id": 2854743652, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_ring_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "p": 207190343, - "s": "2044", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2854743652, - "ingameEquippedId": "207190343" - }, - { - "code": "ecs13w", - "ct": 1729249784, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2857373510, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "cs13_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ] - ], - "p": 490684210, - "s": "438f", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 2857373510, - "ingameEquippedId": "490684210" - }, - { - "code": "eal85r_u", - "ct": 1729252222, - "e": 93803, - "f": "set_cri_dmg", - "g": 5, - "id": 2857485116, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri", - 0.06, - "c", - "change2_cri_2_2" - ] - ], - "s": "2aa0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 25, - "rolls": 3 - } - ], - "ingameId": 2857485116, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1729253068, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2857525900, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0 - ], - [ - "cri", - 0 - ], - [ - "cri", - 0 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri", - 0.09, - "c", - "change2_cri_4_1" - ] - ], - "p": 784315107, - "s": "189b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 4, - "modified": true - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2857525900, - "ingameEquippedId": "784315107" - }, - { - "code": "ecq6a_u", - "ct": 1729259791, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2857870806, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "s": "5ef8", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 14, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2857870806, - "ingameEquippedId": "undefined" - }, - { - "code": "esh2_a", - "ct": 1729267806, - "e": 93861, - "f": "set_speed", - "g": 5, - "id": 2858331716, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "esh2_armor_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.09 - ] - ], - "s": "d552", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 22, - "rolls": 4 - } - ], - "ingameId": 2858331716, - "ingameEquippedId": "undefined" - }, - { - "code": "esh2_b", - "ct": 1729267806, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2858331717, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "esh2_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.07 - ] - ], - "p": 350226992, - "s": "eea9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2858331717, - "ingameEquippedId": "350226992" - }, - { - "code": "edq6r_u", - "ct": 1729314695, - "e": 93862, - "f": "set_immune", - "g": 5, - "id": 2860741627, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ] - ], - "s": "711d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 17, - "rolls": 4 - } - ], - "ingameId": 2860741627, - "ingameEquippedId": "undefined" - }, - { - "code": "ezl2_b", - "ct": 1729325449, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 2861546987, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ezl2_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 1 - ], - [ - "att_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ] - ], - "p": 596366779, - "s": "38b3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 24, - "rolls": 3 - } - ], - "ingameId": 2861546987, - "ingameEquippedId": "596366779" - }, - { - "code": "ecq6a_u", - "ct": 1729401683, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2866159055, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 738614105, - "s": "66f1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 5, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 2866159055, - "ingameEquippedId": "738614105" - }, - { - "code": "ezl2_n", - "ct": 1729414176, - "e": 93804, - "f": "set_torrent", - "g": 5, - "id": 2867089835, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ezl2_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.07 - ] - ], - "p": 890790459, - "s": "a7d7", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 2867089835, - "ingameEquippedId": "890790459" - }, - { - "code": "edg6w_u", - "ct": 1729512730, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2872134014, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 769932771, - "s": "d47d", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 2872134014, - "ingameEquippedId": "769932771" - }, - { - "code": "esh2_r", - "ct": 1729612059, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2876701657, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "esh2_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ] - ], - "p": 583954927, - "s": "67e3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2876701657, - "ingameEquippedId": "583954927" - }, - { - "code": "esh2_n", - "ct": 1729687213, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 2879432772, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "esh2_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ] - ], - "s": "d227", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 31, - "rolls": 4 - } - ], - "ingameId": 2879432772, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6n_u", - "ct": 1729688054, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2879477753, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "def", - 32 - ], - [ - "def", - 34 - ], - [ - "def", - 30 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "def", - 27, - "u" - ] - ], - "s": "5944", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Defense", - "value": 123, - "rolls": 3 - } - ], - "ingameId": 2879477753, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1729765849, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 2882078797, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "p": 636577158, - "s": "ec24", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 2882078797, - "ingameEquippedId": "636577158" - }, - { - "code": "edd6a_u", - "ct": 1729833710, - "e": 93862, - "f": "set_penetrate", - "g": 5, - "id": 2884841146, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "p": 591089796, - "s": "17a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2884841146, - "ingameEquippedId": "591089796" - }, - { - "code": "ecw6h_u", - "ct": 1729836070, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2884937115, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att_rate", - 0.07, - "c", - "change2_att_rate_1_1" - ] - ], - "s": "6240", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - } - ], - "ingameId": 2884937115, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6w", - "ct": 1729836292, - "e": 73923, - "f": "set_immune", - "g": 4, - "id": 2884944836, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.07 - ] - ], - "s": "f6a9", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2884944836, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6w_u", - "ct": 1729923972, - "e": 93863, - "f": "set_penetrate", - "g": 5, - "id": 2888555024, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ] - ], - "s": "8650", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - }, - { - "type": "AttackPercent", - "value": 35, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2888555024, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6h_u", - "ct": 1729924706, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2888592342, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "def_rate", - 0.08, - "c", - "change2_def_rate_1_2" - ] - ], - "p": 354206748, - "s": "f8c7", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 31, - "rolls": 4 - } - ], - "ingameId": 2888592342, - "ingameEquippedId": "354206748" - }, - { - "code": "ecw6a_u", - "ct": 1729924928, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2888604282, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "def_rate", - 0.06, - "c", - "change2_def_rate_1_1" - ] - ], - "s": "cb2e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - } - ], - "ingameId": 2888604282, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6r_u", - "ct": 1729925999, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2888657346, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_ring_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ] - ], - "p": 897188455, - "s": "aa8a", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 19, - "rolls": 5 - } - ], - "ingameId": 2888657346, - "ingameEquippedId": "897188455" - }, - { - "code": "edw6b_u", - "ct": 1729927171, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2888717109, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "s": "542f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 2888717109, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1729957631, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2890193131, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp", - 163 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp", - 168 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp", - 171 - ], - [ - "max_hp", - 168, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "s": "3d00", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Health", - "value": 670, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 2890193131, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1729999859, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2891750814, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.05, - "u" - ] - ], - "s": "78f4", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 26, - "rolls": 5 - } - ], - "ingameId": 2891750814, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6h_u", - "ct": 1730000169, - "e": 93862, - "f": "set_penetrate", - "g": 5, - "id": 2891769837, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "s": "9d99", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 28, - "rolls": 4 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2891769837, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu31n", - "ct": 1730021478, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 2892903535, - "l": true, - "level": 88, - "mainStatBaseValue": 0.12, - "mainStatId": "iu31_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "s": "f405", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitChancePercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 24, - "rolls": 4 - } - ], - "ingameId": 2892903535, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6b_u", - "ct": 1730025656, - "e": 93861, - "f": "set_max_hp", - "g": 5, - "id": 2893083603, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.1, - "c", - "change2_max_hp_rate_2_2" - ] - ], - "p": 354206748, - "s": "2015", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 2893083603, - "ingameEquippedId": "354206748" - }, - { - "code": "ecd6r_u", - "ct": 1730025773, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2893088949, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "acc", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ] - ], - "s": "8e07", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectivenessPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 31, - "rolls": 4 - } - ], - "ingameId": 2893088949, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6a_u", - "ct": 1730031544, - "e": 93803, - "f": "set_penetrate", - "g": 5, - "id": 2893366288, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 461351155, - "s": "d0f5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 27, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2893366288, - "ingameEquippedId": "461351155" - }, - { - "code": "ecw6a", - "ct": 1730031544, - "e": 73865, - "f": "set_speed", - "g": 4, - "id": 2893366289, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "acc", - 0.06 - ] - ], - "p": 313109293, - "s": "395f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 2893366289, - "ingameEquippedId": "313109293" - }, - { - "code": "ecd6w_u", - "ct": 1730032347, - "e": 93805, - "f": "set_penetrate", - "g": 5, - "id": 2893408942, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp", - 189 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ] - ], - "p": 568689715, - "s": "ad53", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "Health", - "value": 245, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 30, - "rolls": 4 - } - ], - "ingameId": 2893408942, - "ingameEquippedId": "568689715" - }, - { - "code": "ecb6a_u", - "ct": 1730102072, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 2896095837, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "s": "e3f7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2896095837, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6r", - "ct": 1730113762, - "e": 82031, - "f": "set_penetrate", - "g": 5, - "id": 2896559962, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "res", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "res", - 0.12 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 165 - ], - [ - "att", - 43 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "att", - 37 - ], - [ - "att", - 44 - ] - ], - "s": "5cd5", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 60 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "Health", - "value": 165, - "rolls": 1 - }, - { - "type": "Attack", - "value": 124, - "rolls": 3 - } - ], - "ingameId": 2896559962, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n", - "ct": 1730218022, - "e": 73828, - "f": "set_cri", - "g": 4, - "id": 2900880233, - "l": true, - "level": 85, - "mainStatBaseValue": 0.13, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ] - ], - "s": "1ee6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 18, - "rolls": 4 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2900880233, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6w", - "ct": 1730252978, - "e": 22970, - "f": "set_penetrate", - "g": 5, - "id": 2901841663, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ] - ], - "s": "ed4f", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 16, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 2901841663, - "ingameEquippedId": "undefined" - }, - { - "code": "edd6b", - "ct": 1730342595, - "f": "set_penetrate", - "g": 5, - "id": 2905127600, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "edw6_boot_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ] - ], - "s": "5203", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2905127600, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h", - "ct": 1730343007, - "f": "set_speed", - "g": 5, - "id": 2905144991, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "res", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "p": 568417281, - "s": "230b", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2905144991, - "ingameEquippedId": "568417281" - }, - { - "code": "eih9n", - "ct": 1730376412, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2908902062, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ] - ], - "p": 99507012, - "s": "162b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 2908902062, - "ingameEquippedId": "99507012" - }, - { - "code": "ecw6h_u", - "ct": 1730376955, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2908946579, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "s": "154f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 30, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 2908946579, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1730377070, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2908956268, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.04, - "u" - ] - ], - "s": "f18e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 20, - "rolls": 4 - } - ], - "ingameId": 2908956268, - "ingameEquippedId": "undefined" - }, - { - "code": "exc502401", - "ct": 1730384229, - "g": 5, - "id": 2909543438, - "l": true, - "mg": 1111, - "op": [ - [ - "acc", - 0.14 - ], - [ - "ek_c502401", - 3 - ] - ], - "s": "4f20" - }, - { - "code": "eal85b", - "ct": 1730387997, - "e": 82031, - "f": "set_penetrate", - "g": 5, - "id": 2909860807, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "al85_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "acc", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "att", - 39 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.07 - ] - ], - "p": 96079743, - "s": "e977", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 26, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 3 - }, - { - "type": "Attack", - "value": 39, - "rolls": 1 - } - ], - "ingameId": 2909860807, - "ingameEquippedId": "96079743" - }, - { - "code": "ecb6r_u", - "ct": 1730388342, - "e": 84375, - "f": "set_res", - "g": 4, - "id": 2909888627, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "acc", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 180 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp", - 176 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp", - 112, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "c028", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Heroic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectivenessPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "Health", - "value": 468, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 2909888627, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85r_u", - "ct": 1730388550, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 2909905157, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "def_rate", - 0.1, - "c", - "change2_def_rate_2_2" - ] - ], - "p": 784315107, - "s": "466d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 13, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - } - ], - "ingameId": 2909905157, - "ingameEquippedId": "784315107" - }, - { - "code": "exc502401", - "ct": 1730437251, - "g": 5, - "id": 2911975864, - "l": true, - "mg": 1111, - "op": [ - [ - "acc", - 0.16 - ], - [ - "ek_c502401", - 3 - ] - ], - "s": "1936" - }, - { - "code": "exc502401", - "ct": 1730437297, - "g": 5, - "id": 2911978551, - "l": true, - "mg": 1111, - "op": [ - [ - "acc", - 0.16 - ], - [ - "ek_c502401", - 3 - ] - ], - "s": "84b6" - }, - { - "code": "exc502401", - "ct": 1730437303, - "g": 5, - "id": 2911978870, - "mg": 1111, - "op": [ - [ - "acc", - 0.08 - ], - [ - "ek_c502401", - 3 - ] - ], - "s": "405f" - }, - { - "code": "exc502401", - "ct": 1730437307, - "g": 5, - "id": 2911979051, - "l": true, - "mg": 1111, - "op": [ - [ - "acc", - 0.15 - ], - [ - "ek_c502401", - 2 - ] - ], - "p": 518782830, - "s": "bffb" - }, - { - "code": "ess16w", - "ct": 1730442254, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2912237093, - "l": true, - "level": 78, - "mainStatBaseValue": 95, - "mainStatId": "ss16_weap_m", - "mainStatType": "att", - "mainStatValue": 475, - "mg": 1111, - "op": [ - [ - "att", - 95 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "s": "4587", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 475 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 2912237093, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6a_u", - "ct": 1730618060, - "e": 93803, - "f": "set_penetrate", - "g": 5, - "id": 2919857177, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp", - 195 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ] - ], - "p": 306859366, - "s": "583d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Health", - "value": 251, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 15, - "rolls": 4 - } - ], - "ingameId": 2919857177, - "ingameEquippedId": "306859366" - }, - { - "code": "ecg6r_u", - "ct": 1730619261, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 2919913866, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "c04a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 33, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 27, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2919913866, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6w_u", - "ct": 1730639478, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 2920804333, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "684d", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 26, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 2920804333, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1730641513, - "e": 93863, - "f": "set_speed", - "g": 5, - "id": 2920906372, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ] - ], - "p": 226377978, - "s": "967a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 31, - "rolls": 4 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 2920906372, - "ingameEquippedId": "226377978" - }, - { - "code": "edd6h_u", - "ct": 1730646849, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2921171740, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "63c5", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 33, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - } - ], - "ingameId": 2921171740, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a", - "ct": 1730647322, - "e": 82084, - "f": "set_max_hp", - "g": 5, - "id": 2921193986, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.03 - ] - ], - "s": "9379", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 2921193986, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6h_u", - "ct": 1730725563, - "e": 93803, - "f": "set_immune", - "g": 5, - "id": 2923922512, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "844e", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 2923922512, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6a_u", - "ct": 1730725768, - "e": 93862, - "f": "set_immune", - "g": 5, - "id": 2923932580, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.05, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "s": "3701", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 34, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 2923932580, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6a_u", - "ct": 1730860316, - "e": 93804, - "f": "set_immune", - "g": 5, - "id": 2928905503, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.04 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "s": "cbd1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 26, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 2928905503, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6h_u", - "ct": 1730860974, - "e": 84375, - "f": "set_max_hp", - "g": 4, - "id": 2928939270, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "3371", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 2928939270, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1730902335, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2930825312, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ] - ], - "s": "5eff", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 2930825312, - "ingameEquippedId": "undefined" - }, - { - "code": "exc110401", - "ct": 1730963555, - "g": 5, - "id": 2932250786, - "l": true, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.1 - ], - [ - "ek_c110401", - 3 - ] - ], - "s": "768" - }, - { - "code": "ecw6h_u", - "ct": 1731564633, - "e": 84375, - "f": "set_acc", - "g": 4, - "id": 2952219767, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "def", - 32 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "def", - 9, - "u" - ] - ], - "p": 649028156, - "s": "c078", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 21, - "rolls": 5 - }, - { - "type": "Defense", - "value": 41, - "rolls": 1 - } - ], - "ingameId": 2952219767, - "ingameEquippedId": "649028156" - }, - { - "code": "eah25w", - "ct": 1731567964, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2952380458, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah25_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "p": 636577158, - "s": "dae3", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 2952380458, - "ingameEquippedId": "636577158" - }, - { - "code": "eah25h", - "ct": 1731743367, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2959319273, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah25_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "a42a", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2959319273, - "ingameEquippedId": "undefined" - }, - { - "code": "eah25a", - "ct": 1732283728, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2976075051, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah25_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.08 - ] - ], - "s": "9cec", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2976075051, - "ingameEquippedId": "undefined" - }, - { - "code": "eah25b", - "ct": 1732698166, - "e": 93862, - "f": "set_res", - "g": 5, - "id": 2987909286, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah25_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.07 - ] - ], - "s": "9e88", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 2987909286, - "ingameEquippedId": "undefined" - }, - { - "code": "eah25r", - "ct": 1732859569, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 2992021256, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah25_ring_m1", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.09 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ] - ], - "s": "fa20", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 30, - "rolls": 4 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2992021256, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu12b", - "ct": 1732884545, - "f": "set_shield", - "g": 5, - "id": 2992817612, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "iu12_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ] - ], - "s": "e4dd", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ProtectionSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 2992817612, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9n", - "ct": 1732950790, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 2994929770, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.06 - ] - ], - "p": 795195383, - "s": "5237", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 19, - "rolls": 4 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 2994929770, - "ingameEquippedId": "795195383" - }, - { - "code": "ecw6h", - "ct": 1733031623, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 2997684519, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "p": 313109293, - "s": "b5e7", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 2 - } - ], - "ingameId": 2997684519, - "ingameEquippedId": "313109293" - }, - { - "code": "ecw6w_u", - "ct": 1733034826, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 2997826071, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "p": 323638178, - "s": "3657", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 2997826071, - "ingameEquippedId": "323638178" - }, - { - "code": "eah25n", - "ct": 1733202530, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 3003626806, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah25_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.05 - ] - ], - "p": 28398305, - "s": "cb19", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 3003626806, - "ingameEquippedId": "28398305" - }, - { - "code": "exc116101", - "ct": 1733452917, - "g": 5, - "id": 3009759097, - "mg": 1111, - "op": [ - [ - "cri", - 0.1 - ], - [ - "ek_c116101", - 1 - ] - ], - "s": "d286" - }, - { - "code": "exc116101", - "ct": 1733452922, - "g": 5, - "id": 3009759245, - "mg": 1111, - "op": [ - [ - "cri", - 0.06 - ], - [ - "ek_c116101", - 2 - ] - ], - "p": 690904230, - "s": "c25e" - }, - { - "code": "ecw6w", - "ct": 1733453611, - "f": "set_speed", - "g": 5, - "id": 3009780724, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "att_rate", - 0.06 - ], - [ - "acc", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "p": 313109293, - "s": "cf58", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3009780724, - "ingameEquippedId": "313109293" - }, - { - "code": "ecq6a_u", - "ct": 1733453670, - "e": 84375, - "f": "set_immune", - "g": 4, - "id": 3009782638, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "s": "1be3", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 17, - "rolls": 5 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3009782638, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1733454311, - "f": "set_speed", - "g": 5, - "id": 3009803071, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "def", - 35 - ] - ], - "p": 568417281, - "s": "89a3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Defense", - "value": 35, - "rolls": 1 - } - ], - "ingameId": 3009803071, - "ingameEquippedId": "568417281" - }, - { - "code": "ecg6n_u", - "ct": 1733454790, - "e": 84375, - "f": "set_max_hp", - "g": 4, - "id": 3009817004, - "l": true, - "level": 90, - "mainStatBaseValue": 0.12, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "cri", - 0.12, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "18e2", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitChancePercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 18, - "rolls": 5 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 3009817004, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6w_u", - "ct": 1733455486, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3009837190, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 829105288, - "s": "8daa", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 25, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 3009837190, - "ingameEquippedId": "829105288" - }, - { - "code": "edg6w_u", - "ct": 1733464746, - "e": 93862, - "f": "set_max_hp", - "g": 5, - "id": 3010108417, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 781837305, - "s": "fb3b", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 29, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 2 - } - ], - "ingameId": 3010108417, - "ingameEquippedId": "781837305" - }, - { - "code": "ecd6a_u", - "ct": 1733645493, - "e": 93805, - "f": "set_torrent", - "g": 5, - "id": 3014591877, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.06, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ] - ], - "p": 494187001, - "s": "33c5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 34, - "rolls": 5 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - } - ], - "ingameId": 3014591877, - "ingameEquippedId": "494187001" - }, - { - "code": "ecw6a", - "ct": 1733647059, - "e": 82086, - "f": "set_speed", - "g": 5, - "id": 3014632987, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "7398", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 3014632987, - "ingameEquippedId": "undefined" - }, - { - "code": "edg6r_u", - "ct": 1733655484, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3014865229, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "p": 354206748, - "s": "efef", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 3014865229, - "ingameEquippedId": "354206748" - }, - { - "code": "exc105001", - "ct": 1733708062, - "g": 5, - "id": 3016053302, - "mg": 1111, - "op": [ - [ - "acc", - 0.15 - ], - [ - "ek_c105001", - 2 - ] - ], - "p": 323638178, - "s": "c18" - }, - { - "code": "exc104701", - "ct": 1733709134, - "g": 5, - "id": 3016083581, - "mg": 1111, - "op": [ - [ - "cri", - 0.07 - ], - [ - "ek_c104701", - 2 - ] - ], - "p": 96079743, - "s": "f066" - }, - { - "code": "eal85b_u", - "ct": 1733722137, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3016467392, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp", - 192 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "acc", - 0.05, - "u" - ] - ], - "s": "5fa1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Health", - "value": 248, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 27, - "rolls": 4 - } - ], - "ingameId": 3016467392, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1733722153, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 3016467781, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "s": "6bcd", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 3016467781, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6a_u", - "ct": 1733722816, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 3016485045, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ] - ], - "p": 781837305, - "s": "4ab1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 29, - "rolls": 4 - } - ], - "ingameId": 3016485045, - "ingameEquippedId": "781837305" - }, - { - "code": "edq6h_u", - "ct": 1733793249, - "e": 93803, - "f": "set_immune", - "g": 5, - "id": 3018034125, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "p": 798777729, - "s": "3649", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 26, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 25, - "rolls": 3 - } - ], - "ingameId": 3018034125, - "ingameEquippedId": "798777729" - }, - { - "code": "ela11n", - "ct": 1733799304, - "e": 93750, - "f": "set_def", - "g": 5, - "id": 3018188598, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la11_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 3 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "DefenseSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 34, - "rolls": 4 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 3018188598, - "ingameEquippedId": "undefined" - }, - { - "code": "edw6r", - "ct": 1733885736, - "f": "set_speed", - "g": 5, - "id": 3020008154, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "edw6_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.05 - ] - ], - "s": "dd13", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 3020008154, - "ingameEquippedId": "undefined" - }, - { - "code": "ela11b", - "ct": 1733985253, - "e": 93750, - "f": "set_def", - "g": 5, - "id": 3022748232, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la11_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.09 - ] - ], - "p": 604874070, - "s": "87ba", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DefenseSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 25, - "rolls": 3 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 3022748232, - "ingameEquippedId": "604874070" - }, - { - "code": "ela11w", - "ct": 1733986660, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3022819464, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "la11_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.09 - ] - ], - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 3022819464, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a_u", - "ct": 1734064408, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3025572911, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "c28b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 17, - "rolls": 5 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3025572911, - "ingameEquippedId": "undefined" - }, - { - "code": "ela11r", - "ct": 1734354105, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3034403750, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la11_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ] - ], - "p": 799495489, - "s": "a5db", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 3034403750, - "ingameEquippedId": "799495489" - }, - { - "code": "ela11a", - "ct": 1734354119, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3034404358, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "la11_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ] - ], - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 3034404358, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6w_u", - "ct": 1734413300, - "e": 93862, - "f": "set_max_hp", - "g": 5, - "id": 3036014604, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "p": 604874070, - "s": "8309", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - } - ], - "ingameId": 3036014604, - "ingameEquippedId": "604874070" - }, - { - "code": "edw6b_u", - "ct": 1734504623, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3038579662, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0 - ], - [ - "max_hp_rate", - 0 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.14, - "c", - "change2_max_hp_rate_3_1" - ] - ], - "p": 620426700, - "s": "2ca6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 3, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 3038579662, - "ingameEquippedId": "620426700" - }, - { - "code": "ecd6n", - "ct": 1734505606, - "f": "set_torrent", - "g": 5, - "id": 3038608646, - "level": 85, - "mainStatBaseValue": 0.11, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.55, - "mg": 1111, - "op": [ - [ - "cri", - 0.11 - ], - [ - "res", - 0.07 - ], - [ - "att", - 35 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ] - ], - "s": "59af", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "CriticalHitChancePercent", - "value": 55 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Attack", - "value": 35, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3038608646, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a_u", - "ct": 1734506997, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3038648278, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ] - ], - "s": "cd59", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - } - ], - "ingameId": 3038648278, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6w_u", - "ct": 1734507251, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3038655513, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "s": "2329", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 3038655513, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1734525497, - "e": 93921, - "f": "set_speed", - "g": 5, - "id": 3039251103, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "p": 596366779, - "s": "924d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - } - ], - "ingameId": 3039251103, - "ingameEquippedId": "596366779" - }, - { - "code": "ela11h", - "ct": 1734656339, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3041542218, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "la11_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.09 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "p": 799495489, - "s": "4842", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 32, - "rolls": 4 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 3041542218, - "ingameEquippedId": "799495489" - }, - { - "code": "ecw6h", - "ct": 1734699359, - "e": 28217, - "f": "set_speed", - "g": 5, - "id": 3042345319, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ] - ], - "p": 207190343, - "s": "d01", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 3042345319, - "ingameEquippedId": "207190343" - }, - { - "code": "ecw6w_u", - "ct": 1734699687, - "e": 93863, - "f": "set_speed", - "g": 5, - "id": 3042353591, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.04, - "u" - ], - [ - "res", - 0.04, - "u" - ] - ], - "s": "7d28", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 26, - "rolls": 3 - } - ], - "ingameId": 3042353591, - "ingameEquippedId": "undefined" - }, - { - "code": "edg6n", - "ct": 1734759052, - "f": "set_max_hp", - "g": 5, - "id": 3043275465, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "edw6_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "517f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3043275465, - "ingameEquippedId": "undefined" - }, - { - "code": "ecq6w_u", - "ct": 1734760016, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 3043296212, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ] - ], - "s": "aa6c", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 3043296212, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a_u", - "ct": 1734760381, - "e": 93862, - "f": "set_max_hp", - "g": 5, - "id": 3043303519, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "s": "8b32", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - } - ], - "ingameId": 3043303519, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6w_u", - "ct": 1734770403, - "e": 84375, - "f": "set_max_hp", - "g": 4, - "id": 3043504095, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "63b4", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3043504095, - "ingameEquippedId": "undefined" - }, - { - "code": "exc100701", - "ct": 1735223066, - "g": 5, - "id": 3054113254, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "ek_c100701", - 1 - ] - ], - "s": "584b" - }, - { - "code": "exc100701", - "ct": 1735223079, - "g": 5, - "id": 3054113679, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "ek_c100701", - 3 - ] - ], - "s": "75c9" - }, - { - "code": "exc100701", - "ct": 1735223097, - "g": 5, - "id": 3054114234, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.14 - ], - [ - "ek_c100701", - 2 - ] - ], - "p": 793619248, - "s": "9ecf" - }, - { - "code": "eiu52h", - "ct": 1735371018, - "e": 93861, - "f": "set_cri_dmg", - "g": 5, - "id": 3057509140, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu52_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "p": 6911147, - "s": "55b6", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 28, - "rolls": 5 - } - ], - "ingameId": 3057509140, - "ingameEquippedId": "6911147" - }, - { - "code": "eiu11a", - "ct": 1735634820, - "e": 93803, - "f": "set_max_hp", - "g": 5, - "id": 3064171046, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu11_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.09 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.08 - ] - ], - "s": "4f8d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 17, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 3064171046, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9n", - "ct": 1735634891, - "e": 93802, - "f": "set_penetrate", - "g": 5, - "id": 3064172375, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ] - ], - "p": 669363338, - "s": "b093", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 26, - "rolls": 3 - } - ], - "ingameId": 3064172375, - "ingameEquippedId": "669363338" - }, - { - "code": "ecw6b_u", - "ct": 1736067498, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3073835153, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "319c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 3073835153, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1736082229, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 3074234480, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "a443", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 32, - "rolls": 5 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3074234480, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1736129971, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3075130467, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "5a8d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 29, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 3075130467, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w", - "ct": 1736595889, - "e": 40460, - "f": "set_speed", - "g": 5, - "id": 3090308165, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.04 - ] - ], - "p": 207190343, - "s": "a97e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 12, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - } - ], - "ingameId": 3090308165, - "ingameEquippedId": "207190343" - }, - { - "code": "ecw6n", - "ct": 1736596826, - "f": "set_speed", - "g": 5, - "id": 3090352829, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_neck_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.05 - ] - ], - "p": 207190343, - "s": "7b4b", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 3090352829, - "ingameEquippedId": "207190343" - }, - { - "code": "ecw6r_u", - "ct": 1736779219, - "e": 93863, - "f": "set_acc", - "g": 5, - "id": 3097347334, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "9b79", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 31, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 3097347334, - "ingameEquippedId": "undefined" - }, - { - "code": "ecs18n", - "ct": 1736951477, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 3102946982, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "cs18_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ] - ], - "p": 445022861, - "s": "5548", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 3102946982, - "ingameEquippedId": "445022861" - }, - { - "code": "ecw6w_u", - "ct": 1737468152, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3113926876, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ] - ], - "s": "5d69", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 21, - "rolls": 5 - } - ], - "ingameId": 3113926876, - "ingameEquippedId": "undefined" - }, - { - "code": "exc103801", - "ct": 1737725262, - "g": 5, - "id": 3121804145, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "ek_c103801", - 1 - ] - ], - "s": "7eb3" - }, - { - "code": "exc103801", - "ct": 1737725268, - "g": 5, - "id": 3121804448, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "ek_c103801", - 2 - ] - ], - "p": 795195383, - "s": "9b5a" - }, - { - "code": "exc103801", - "ct": 1737725366, - "g": 5, - "id": 3121808911, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.09 - ], - [ - "ek_c103801", - 3 - ] - ], - "s": "f0fa" - }, - { - "code": "eiu31r", - "ct": 1737887007, - "e": 93862, - "f": "set_scar", - "g": 5, - "id": 3125874171, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu31_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "s": "cab7", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - } - ], - "ingameId": 3125874171, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu41a", - "ct": 1738304926, - "f": "set_counter", - "g": 5, - "id": 3138332158, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "iu41_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ] - ], - "p": 717223364, - "s": "e26f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3138332158, - "ingameEquippedId": "717223364" - }, - { - "code": "eiu12w", - "ct": 1738309540, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3138489428, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "iu12_weap_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ] - ], - "s": "94d5", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - } - ], - "ingameId": 3138489428, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1738487563, - "e": 84375, - "f": "set_cri", - "g": 4, - "id": 3143494229, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "att", - 44 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "b332", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Speed", - "value": 18, - "rolls": 5 - }, - { - "type": "Attack", - "value": 55, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3143494229, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1738488130, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3143507304, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "s": "4400", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 3143507304, - "ingameEquippedId": "undefined" - }, - { - "code": "ess13n", - "ct": 1738489811, - "e": 82144, - "f": "set_speed", - "g": 5, - "id": 3143543526, - "l": true, - "level": 78, - "mainStatBaseValue": 0.13, - "mainStatId": "ss13_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ] - ], - "p": 596366779, - "s": "a7cc", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 4 - } - ], - "ingameId": 3143543526, - "ingameEquippedId": "596366779" - }, - { - "code": "ecw6w_u", - "ct": 1738588296, - "e": 93804, - "f": "set_speed", - "g": 5, - "id": 3145709811, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.07, - "c", - "change2_cri_dmg_2_1" - ] - ], - "p": 596366779, - "s": "c938", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 9, - "rolls": 2, - "modified": true - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 34, - "rolls": 4 - } - ], - "ingameId": 3145709811, - "ingameEquippedId": "596366779" - }, - { - "code": "ecs14n", - "ct": 1738595169, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3145909262, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "cs14_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.09 - ] - ], - "p": 110838566, - "s": "aa30", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 38, - "rolls": 5 - } - ], - "ingameId": 3145909262, - "ingameEquippedId": "110838566" - }, - { - "code": "eah26w", - "ct": 1738749296, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3148997935, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah26_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.09 - ], - [ - "att_rate", - 0.08 - ] - ], - "p": 742543115, - "s": "12bf", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 3148997935, - "ingameEquippedId": "742543115" - }, - { - "code": "ecw6w_u", - "ct": 1738749541, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 3149002851, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.05, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ] - ], - "s": "3736", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 32, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 26, - "rolls": 3 - } - ], - "ingameId": 3149002851, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1738750478, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 3149023177, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "att", - 43 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att", - 38 - ], - [ - "att", - 37 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att", - 39 - ], - [ - "att", - 34 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "att", - 55, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "3e15", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "Attack", - "value": 246, - "rolls": 5 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3149023177, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85r_u", - "ct": 1738750758, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 3149029539, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "s": "70c0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 3149029539, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1738846919, - "e": 93805, - "f": "set_cri", - "g": 5, - "id": 3152011446, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "p": 613630545, - "s": "fd21", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Speed", - "value": 8, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 23, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3152011446, - "ingameEquippedId": "613630545" - }, - { - "code": "ecd6n_u", - "ct": 1738996873, - "e": 84470, - "f": "set_penetrate", - "g": 4, - "id": 3156124168, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_neck_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp", - 163 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 56, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "fc05", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Health", - "value": 219, - "rolls": 1 - }, - { - "type": "Speed", - "value": 20, - "rolls": 5 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 3156124168, - "ingameEquippedId": "undefined" - }, - { - "code": "eah26h", - "ct": 1739025892, - "e": 93862, - "f": "set_penetrate", - "g": 5, - "id": 3157611187, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah26_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.05 - ] - ], - "p": 704271358, - "s": "3ad2", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 3157611187, - "ingameEquippedId": "704271358" - }, - { - "code": "ecg6h_u", - "ct": 1739027653, - "e": 84411, - "f": "set_max_hp", - "g": 4, - "id": 3157711127, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "att", - 32 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 1 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "s": "e12f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Speed", - "value": 21, - "rolls": 5 - }, - { - "type": "Attack", - "value": 43, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 3157711127, - "ingameEquippedId": "undefined" - }, - { - "code": "ewb1h", - "ct": 1739081066, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 3159488393, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "wb1_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ] - ], - "p": 596366779, - "s": "3eb9", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3159488393, - "ingameEquippedId": "596366779" - }, - { - "code": "ecg6a_u", - "ct": 1739081914, - "e": 84375, - "f": "set_max_hp", - "g": 4, - "id": 3159532319, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "d7d0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 19, - "rolls": 5 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3159532319, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6a_u", - "ct": 1739085716, - "e": 93862, - "f": "set_penetrate", - "g": 5, - "id": 3159728901, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ] - ], - "s": "1e2d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 25, - "rolls": 4 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 3159728901, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6h_u", - "ct": 1739452905, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3168939629, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.08, - "c", - "change2_cri_dmg_2_1" - ] - ], - "s": "8172", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 10, - "rolls": 2, - "modified": true - }, - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 3168939629, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1739457970, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3169174652, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.08 - ] - ], - "s": "b1a5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 32, - "rolls": 4 - } - ], - "ingameId": 3169174652, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r_u", - "ct": 1739706315, - "e": 84471, - "f": "set_speed", - "g": 4, - "id": 3175654151, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_ring_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "def", - 29 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "def", - 9, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 649028156, - "s": "1b74", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Defense", - "value": 38, - "rolls": 1 - }, - { - "type": "Speed", - "value": 18, - "rolls": 5 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3175654151, - "ingameEquippedId": "649028156" - }, - { - "code": "eah26a", - "ct": 1739706589, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3175666068, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah26_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "p": 490684210, - "s": "a09b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 27, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3175666068, - "ingameEquippedId": "490684210" - }, - { - "code": "ecw6w_u", - "ct": 1739707104, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3175688179, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 190 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.05, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp", - 56, - "u" - ] - ], - "p": 898971885, - "s": "4f5f", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 33, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "Health", - "value": 246, - "rolls": 1 - } - ], - "ingameId": 3175688179, - "ingameEquippedId": "898971885" - }, - { - "code": "exc114201", - "ct": 1739795245, - "g": 5, - "id": 3177688081, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "ek_c114201", - 3 - ] - ], - "p": 669363338, - "s": "eab8" - }, - { - "code": "ecw6n_u", - "ct": 1739944879, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3180299346, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp", - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 56, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp", - 170, - "c", - "change2_max_hp_1_1" - ] - ], - "p": 739641017, - "s": "1aa3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "Health", - "value": 226, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 21, - "rolls": 5 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 3180299346, - "ingameEquippedId": "739641017" - }, - { - "code": "eah26b", - "ct": 1740143390, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3184327459, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah26_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ] - ], - "p": 669363338, - "s": "8d57", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 3184327459, - "ingameEquippedId": "669363338" - }, - { - "code": "eah26r", - "ct": 1740221813, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3186369253, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah26_ring_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.08 - ] - ], - "p": 847822619, - "s": "dd0e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 3186369253, - "ingameEquippedId": "847822619" - }, - { - "code": "ecb6w_u", - "ct": 1740274029, - "e": 93862, - "f": "set_cri_dmg", - "g": 5, - "id": 3187637280, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 461351155, - "s": "8f41", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 3187637280, - "ingameEquippedId": "461351155" - }, - { - "code": "ecg6h_u", - "ct": 1740274953, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3187659883, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 781837305, - "s": "45ed", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 28, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 3187659883, - "ingameEquippedId": "781837305" - }, - { - "code": "ecb6h_u", - "ct": 1740276347, - "e": 93804, - "f": "set_cri_dmg", - "g": 5, - "id": 3187694618, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "a0dc", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 3187694618, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6h_u", - "ct": 1740282191, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3187874031, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.04, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "3f69", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 20, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 3187874031, - "ingameEquippedId": "undefined" - }, - { - "code": "ewb1n", - "ct": 1740635250, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3195549081, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "wb1_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "speed", - 5 - ], - [ - "def_rate", - 0.09 - ], - [ - "def", - 40 - ], - [ - "max_hp", - 229 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ] - ], - "p": 218403497, - "s": "f660", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 25, - "rolls": 3 - }, - { - "type": "Defense", - "value": 40, - "rolls": 1 - }, - { - "type": "Health", - "value": 229, - "rolls": 1 - } - ], - "ingameId": 3195549081, - "ingameEquippedId": "218403497" - }, - { - "code": "eal85r_u", - "ct": 1740639600, - "e": 93804, - "f": "set_cri_dmg", - "g": 5, - "id": 3195779873, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ] - ], - "p": 461351155, - "s": "6d8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - } - ], - "ingameId": 3195779873, - "ingameEquippedId": "461351155" - }, - { - "code": "eah26n", - "ct": 1740708259, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3197659888, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ah26_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 5 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ] - ], - "p": 717223364, - "s": "16a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 3197659888, - "ingameEquippedId": "717223364" - }, - { - "code": "ecw6w_u", - "ct": 1740710069, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 3197717735, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 226377978, - "s": "24a6", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 3197717735, - "ingameEquippedId": "226377978" - }, - { - "code": "eiu11b", - "ct": 1740754046, - "e": 93750, - "f": "set_def", - "g": 5, - "id": 3199240802, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu11_boot_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "res", - 0 - ], - [ - "res", - 0.11, - "c", - "change2_res_2_2" - ] - ], - "s": "938", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DefenseSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 11, - "rolls": 2, - "modified": true - } - ], - "ingameId": 3199240802, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a_u", - "ct": 1740829681, - "e": 93805, - "f": "set_max_hp", - "g": 5, - "id": 3201796554, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "res", - 0.05, - "u" - ] - ], - "s": "408a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 26, - "rolls": 4 - } - ], - "ingameId": 3201796554, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6b_u", - "ct": 1740880935, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3203293846, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "42e1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 3203293846, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h", - "ct": 1741015149, - "e": 1865, - "f": "set_acc", - "g": 4, - "id": 3207574523, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "3149", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3207574523, - "ingameEquippedId": "undefined" - }, - { - "code": "ela12w", - "ct": 1742386877, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 3237390039, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "la12_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 3237390039, - "ingameEquippedId": "undefined" - }, - { - "code": "ela12b", - "ct": 1742540715, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 3239610284, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la12_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ] - ], - "p": 559859824, - "s": "fbb2", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 3239610284, - "ingameEquippedId": "559859824" - }, - { - "code": "ela12a", - "ct": 1742544154, - "e": 93803, - "f": "set_counter", - "g": 5, - "id": 3239657261, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "la12_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 20, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3239657261, - "ingameEquippedId": "undefined" - }, - { - "code": "ela12n", - "ct": 1742544157, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 3239657322, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la12_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.09 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.07 - ] - ], - "p": 781837305, - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 28, - "rolls": 4 - } - ], - "ingameId": 3239657322, - "ingameEquippedId": "781837305" - }, - { - "code": "ela12r", - "ct": 1742707661, - "e": 93750, - "f": "set_counter", - "g": 5, - "id": 3242125320, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "la12_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "p": 559859824, - "s": "4fb8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 3242125320, - "ingameEquippedId": "559859824" - }, - { - "code": "ecs19a", - "ct": 1742906483, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 3245041888, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "cs19_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.08 - ], - [ - "def_rate", - 0.09 - ], - [ - "cri_dmg", - 0.08 - ] - ], - "p": 640588979, - "s": "3146", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 3245041888, - "ingameEquippedId": "640588979" - }, - { - "code": "ela12h", - "ct": 1743136320, - "e": 93862, - "f": "set_immune", - "g": 5, - "id": 3249190635, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "la12_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 3 - ] - ], - "s": "ba73", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 3249190635, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9n", - "ct": 1743410389, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3257150932, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ] - ], - "p": 847822619, - "s": "a72f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 15, - "rolls": 4 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 3257150932, - "ingameEquippedId": "847822619" - }, - { - "code": "eih6w", - "ct": 1743410398, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3257151092, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "imh_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "8e99", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 3257151092, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu21r", - "ct": 1743410407, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3257151282, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "iu21_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.09 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ] - ], - "p": 892353109, - "s": "f430", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 3257151282, - "ingameEquippedId": "892353109" - }, - { - "code": "eih9r", - "ct": 1743410569, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 3257155015, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "imh_ring_m11", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "318b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 3257155015, - "ingameEquippedId": "undefined" - }, - { - "code": "exc115001", - "ct": 1744372854, - "g": 5, - "id": 3278551185, - "mg": 1111, - "op": [ - [ - "acc", - 0.13 - ], - [ - "ek_c115001", - 3 - ] - ], - "s": "dba4" - }, - { - "code": "exc115001", - "ct": 1744372861, - "g": 5, - "id": 3278551462, - "mg": 1111, - "op": [ - [ - "acc", - 0.12 - ], - [ - "ek_c115001", - 3 - ] - ], - "s": "5353" - }, - { - "code": "exc115001", - "ct": 1744372864, - "g": 5, - "id": 3278551560, - "mg": 1111, - "op": [ - [ - "acc", - 0.12 - ], - [ - "ek_c115001", - 2 - ] - ], - "s": "98e4" - }, - { - "code": "exc115001", - "ct": 1744372867, - "g": 5, - "id": 3278551690, - "mg": 1111, - "op": [ - [ - "acc", - 0.13 - ], - [ - "ek_c115001", - 1 - ] - ], - "p": 461351155, - "s": "23b4" - }, - { - "code": "ecw6b_u", - "ct": 1744436055, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3280222776, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "att", - 44 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att", - 11, - "u" - ] - ], - "s": "5673", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 29, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Attack", - "value": 55, - "rolls": 1 - } - ], - "ingameId": 3280222776, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6h_u", - "ct": 1744447701, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3280658690, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "431c", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3280658690, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a_u", - "ct": 1744453039, - "e": 93805, - "f": "set_max_hp", - "g": 5, - "id": 3280838468, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "c9b5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 17, - "rolls": 5 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3280838468, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6w_u", - "ct": 1744453982, - "e": 84375, - "f": "set_penetrate", - "g": 4, - "id": 3280870641, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0 - ], - [ - "speed", - 2 - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.08, - "c", - "change2_att_rate_1_2" - ] - ], - "s": "2f4e", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 23, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1, - "modified": true - } - ], - "ingameId": 3280870641, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1744454440, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3280887042, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 898971885, - "s": "8d0b", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 25, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 3280887042, - "ingameEquippedId": "898971885" - }, - { - "code": "edd6r_u", - "ct": 1744454954, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3280905233, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "eaf4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 38, - "rolls": 5 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 3280905233, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1744461566, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3281151044, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp", - 163 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp", - 174 - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "s": "e34", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Health", - "value": 449, - "rolls": 2 - } - ], - "ingameId": 3281151044, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1744463749, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3281237276, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "50e7", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - } - ], - "ingameId": 3281237276, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6a", - "ct": 1744470774, - "f": "set_penetrate", - "g": 5, - "id": 3281508679, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.05 - ] - ], - "s": "67ff", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 3281508679, - "ingameEquippedId": "undefined" - }, - { - "code": "edw6w_u", - "ct": 1744511327, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3282207730, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 1 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "8b32", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 3282207730, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1744541636, - "e": 93863, - "f": "set_speed", - "g": 5, - "id": 3283232947, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "res", - 0.04, - "u" - ] - ], - "s": "4a2c", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 28, - "rolls": 3 - } - ], - "ingameId": 3283232947, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a_u", - "ct": 1744544387, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3283323107, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "max_hp", - 203, - "c", - "change2_max_hp_1_2" - ] - ], - "p": 604874070, - "s": "828f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "Health", - "value": 259, - "rolls": 1, - "modified": true - }, - { - "type": "DefensePercent", - "value": 31, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 3283323107, - "ingameEquippedId": "604874070" - }, - { - "code": "ecw6w_u", - "ct": 1744546644, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3283401096, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 0 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.07, - "u" - ], - [ - "speed", - 4, - "c", - "change2_speed_2_1" - ] - ], - "s": "4b0d", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 5, - "rolls": 2, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 38, - "rolls": 5 - } - ], - "ingameId": 3283401096, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1744721458, - "e": 93863, - "f": "set_speed", - "g": 5, - "id": 3287564368, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "1001", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 32, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 3287564368, - "ingameEquippedId": "undefined" - }, - { - "code": "exc110401", - "ct": 1744811849, - "g": 5, - "id": 3289762134, - "l": true, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.14 - ], - [ - "ek_c110401", - 3 - ] - ], - "p": 769932771, - "s": "c8a2" - }, - { - "code": "eal85n_u", - "ct": 1744979588, - "e": 93863, - "f": "set_counter", - "g": 5, - "id": 3293734850, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 1 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp", - 185 - ], - [ - "res", - 0.08 - ], - [ - "max_hp", - 185 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "p": 559859824, - "s": "83a8", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "CounterSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 30, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Health", - "value": 482, - "rolls": 2 - } - ], - "ingameId": 3293734850, - "ingameEquippedId": "559859824" - }, - { - "code": "ecg6r_u", - "ct": 1745042963, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3295211854, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "f9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 3295211854, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6n_u", - "ct": 1745043879, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3295239257, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "max_hp", - 190 - ], - [ - "def_rate", - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp", - 185 - ], - [ - "max_hp", - 200 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp", - 168, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "def_rate", - 0.07, - "c", - "change2_def_rate_1_1" - ] - ], - "p": 769932771, - "s": "5ac4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "Health", - "value": 743, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1, - "modified": true - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - } - ], - "ingameId": 3295239257, - "ingameEquippedId": "769932771" - }, - { - "code": "ecw6a_u", - "ct": 1745078235, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3296274104, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.07, - "u" - ] - ], - "p": 769932771, - "s": "be4", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 35, - "rolls": 5 - } - ], - "ingameId": 3296274104, - "ingameEquippedId": "769932771" - }, - { - "code": "ecw6r_u", - "ct": 1745140029, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3297681678, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "res", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "res", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ] - ], - "s": "9bad", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - } - ], - "ingameId": 3297681678, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a_u", - "ct": 1745143160, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3297773595, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 1 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "s": "4acb", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 22, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 3297773595, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6n_u", - "ct": 1745159196, - "e": 84375, - "f": "set_cri_dmg", - "g": 4, - "id": 3298286939, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "def", - 32 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def", - 9, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 6911147, - "s": "82d1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "Defense", - "value": 41, - "rolls": 1 - }, - { - "type": "Speed", - "value": 17, - "rolls": 5 - }, - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 3298286939, - "ingameEquippedId": "6911147" - }, - { - "code": "ecb6a", - "ct": 1745161315, - "e": 73828, - "f": "set_cri_dmg", - "g": 4, - "id": 3298359449, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "p": 6911147, - "s": "c759", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3298359449, - "ingameEquippedId": "6911147" - }, - { - "code": "ecg6n_u", - "ct": 1745162005, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3298381574, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "att", - 44 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 898971885, - "s": "1471", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "Speed", - "value": 18, - "rolls": 5 - }, - { - "type": "Attack", - "value": 55, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3298381574, - "ingameEquippedId": "898971885" - }, - { - "code": "ecw6w_u", - "ct": 1745162233, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3298389288, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp", - 191 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ], - [ - "max_hp", - 176 - ], - [ - "max_hp", - 112, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "62f5", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Health", - "value": 479, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 27, - "rolls": 3 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3298389288, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a_u", - "ct": 1745162920, - "e": 93863, - "f": "set_max_hp", - "g": 5, - "id": 3298412804, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp", - 190 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp", - 170 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp", - 112, - "u" - ], - [ - "acc", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "p": 326928979, - "s": "835e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Health", - "value": 472, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 35, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 3298412804, - "ingameEquippedId": "326928979" - }, - { - "code": "ecs15w", - "ct": 1745217248, - "e": 82086, - "f": "set_speed", - "g": 5, - "id": 3299352579, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "cs15_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.06 - ] - ], - "s": "c5c1", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 25, - "rolls": 4 - } - ], - "ingameId": 3299352579, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6w", - "ct": 1745561500, - "e": 73828, - "f": "set_penetrate", - "g": 4, - "id": 3307472020, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.04 - ], - [ - "att_rate", - 0.05 - ] - ], - "s": "d36f", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 3307472020, - "ingameEquippedId": "undefined" - }, - { - "code": "edw6n", - "ct": 1745564587, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3307573915, - "l": true, - "level": 85, - "mainStatBaseValue": 0.13, - "mainStatId": "edw6_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "5bc3", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 3307573915, - "ingameEquippedId": "undefined" - }, - { - "code": "edd6r", - "ct": 1745571988, - "e": 82031, - "f": "set_penetrate", - "g": 5, - "id": 3307802759, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "edw6_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ] - ], - "s": "e918", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3307802759, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1745585656, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3308249556, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "s": "def4", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 32, - "rolls": 4 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3308249556, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6r_u", - "ct": 1745587954, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3308343543, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "d38b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 27, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 3308343543, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6a_u", - "ct": 1745662795, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3310481179, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "p": 899521626, - "s": "be27", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3310481179, - "ingameEquippedId": "899521626" - }, - { - "code": "ecw6a_u", - "ct": 1745665326, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3310549559, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp", - 165 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp", - 56, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "s": "5147", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "Health", - "value": 221, - "rolls": 1 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 29, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3310549559, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1745756410, - "e": 84375, - "f": "set_cri_dmg", - "g": 4, - "id": 3312815132, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "p": 11185757, - "s": "882e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 3312815132, - "ingameEquippedId": "11185757" - }, - { - "code": "ecw6w_u", - "ct": 1745757844, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 3312859225, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "f5df", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3312859225, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1745757844, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3312859226, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ] - ], - "s": "272f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - } - ], - "ingameId": 3312859226, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1745757844, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 3312859227, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "516f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 3312859227, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1745757844, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3312859228, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ] - ], - "p": 6844892, - "s": "92c0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 24, - "rolls": 4 - } - ], - "ingameId": 3312859228, - "ingameEquippedId": "6844892" - }, - { - "code": "ecw6n", - "ct": 1745757844, - "e": 3964, - "f": "set_acc", - "g": 5, - "id": 3312859229, - "l": true, - "level": 85, - "mainStatBaseValue": 0.13, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.05 - ] - ], - "s": "3805", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 3312859229, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r_u", - "ct": 1745757844, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 3312859230, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "acc", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "att_rate", - 0.07, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "s": "4b9a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectivenessPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 38, - "rolls": 5 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 3312859230, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1745761131, - "e": 93805, - "f": "set_speed", - "g": 5, - "id": 3312964038, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ] - ], - "s": "52ff", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 25, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 3312964038, - "ingameEquippedId": "undefined" - }, - { - "code": "exc302601", - "ct": 1745833628, - "g": 5, - "id": 3322796588, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.1 - ], - [ - "ek_c302601", - 3 - ] - ], - "p": 11185757, - "s": "26e3" - }, - { - "code": "elre1b", - "ct": 1745851926, - "f": "set_att", - "g": 5, - "id": 3328057157, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "lre1_boot_m1", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "e834", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3328057157, - "ingameEquippedId": "undefined" - }, - { - "code": "elre3b", - "ct": 1745851981, - "e": 82031, - "f": "set_res", - "g": 5, - "id": 3328073541, - "level": 78, - "mainStatBaseValue": 8, - "mainStatId": "lre3_boot_m1", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "3fbf", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 40 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 3328073541, - "ingameEquippedId": "undefined" - }, - { - "code": "elre3w", - "ct": 1745851994, - "e": 82086, - "f": "set_immune", - "g": 5, - "id": 3328077706, - "l": true, - "level": 78, - "mainStatBaseValue": 95, - "mainStatId": "lre3_weap_m1", - "mainStatType": "att", - "mainStatValue": 475, - "mg": 1111, - "op": [ - [ - "att", - 95 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.06 - ] - ], - "s": "b6df", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 475 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3328077706, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9n", - "ct": 1745852040, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3328091599, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ] - ], - "p": 899521626, - "s": "139a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 26, - "rolls": 3 - } - ], - "ingameId": 3328091599, - "ingameEquippedId": "899521626" - }, - { - "code": "eih6w", - "ct": 1745852043, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3328092852, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "imh_wepo_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.06 - ] - ], - "s": "bcaa", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 3328092852, - "ingameEquippedId": "undefined" - }, - { - "code": "eah27w", - "ct": 1745927173, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3344763264, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ah27_weap_m1", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ] - ], - "p": 799495489, - "s": "c804", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 3344763264, - "ingameEquippedId": "799495489" - }, - { - "code": "eal85r_u", - "ct": 1746073203, - "e": 93863, - "f": "set_torrent", - "g": 5, - "id": 3377491678, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 1 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att", - 41 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "att", - 35 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "att", - 22, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.05, - "u" - ] - ], - "p": 890790459, - "s": "737b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Attack", - "value": 98, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 26, - "rolls": 5 - } - ], - "ingameId": 3377491678, - "ingameEquippedId": "890790459" - }, - { - "code": "eal85b_u", - "ct": 1746077387, - "e": 93922, - "f": "set_torrent", - "g": 5, - "id": 3378596409, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 1 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "att", - 0 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "att", - 42, - "c", - "change2_att_1_2" - ] - ], - "p": 890790459, - "s": "4e31", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "Attack", - "value": 53, - "rolls": 1, - "modified": true - } - ], - "ingameId": 3378596409, - "ingameEquippedId": "890790459" - }, - { - "code": "ecb6h_u", - "ct": 1746110649, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3387407453, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 736028830, - "s": "e910", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 27, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3387407453, - "ingameEquippedId": "736028830" - }, - { - "code": "ecb6a_u", - "ct": 1746110649, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3387407474, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "b1b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3387407474, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6b", - "ct": 1746110649, - "e": 82031, - "f": "set_cri_dmg", - "g": 5, - "id": 3387407494, - "l": true, - "level": 85, - "mainStatBaseValue": 8, - "mainStatId": "cra6_boot_m", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "acc", - 0.06 - ] - ], - "s": "83b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 40 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 15, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 3387407494, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1746110649, - "e": 82031, - "f": "set_acc", - "g": 5, - "id": 3387407548, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.06 - ] - ], - "s": "ee00", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 3387407548, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w", - "ct": 1746110759, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3387439076, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "eb0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 5, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 3387439076, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1746110759, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3387439108, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 1 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "p": 669363338, - "s": "65e3", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 14, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 3387439108, - "ingameEquippedId": "669363338" - }, - { - "code": "ecb6h", - "ct": 1746182630, - "e": 82031, - "f": "set_res", - "g": 5, - "id": 3401950817, - "l": true, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ] - ], - "s": "2647", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3401950817, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a", - "ct": 1746203010, - "e": 82031, - "f": "set_vampire", - "g": 5, - "id": 3407019852, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "res", - 0.07 - ], - [ - "max_hp", - 197 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "res", - 0.04 - ] - ], - "s": "30a2", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 4 - }, - { - "type": "Health", - "value": 197, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 3407019852, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6h_u", - "ct": 1746206728, - "e": 84375, - "f": "set_res", - "g": 4, - "id": 3407759413, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.08, - "c", - "change2_def_rate_1_2" - ] - ], - "s": "9c21", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 9, - "rolls": 1, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 33, - "rolls": 4 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 3407759413, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w_u", - "ct": 1746207412, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3407878415, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 1 - ], - [ - "max_hp", - 174 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp", - 172 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp", - 112, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "s": "e79c", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Health", - "value": 458, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 3407878415, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1746209930, - "e": 93863, - "f": "set_cri_dmg", - "g": 5, - "id": 3408283947, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "b7c2", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 3408283947, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1746211791, - "e": 93863, - "f": "set_cri_dmg", - "g": 5, - "id": 3408554116, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.07, - "u" - ] - ], - "s": "7ad5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 40, - "rolls": 5 - } - ], - "ingameId": 3408554116, - "ingameEquippedId": "undefined" - }, - { - "code": "eah27h", - "ct": 1746243310, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3413244272, - "l": true, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "ah27_helm_m1", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.06 - ] - ], - "s": "4d58", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 22, - "rolls": 4 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 3413244272, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1746266052, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3418588636, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ] - ], - "s": "9ee1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 3418588636, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6h_u", - "ct": 1746368215, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 3438671468, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "def_rate", - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.09, - "c", - "change2_def_rate_2_1" - ] - ], - "s": "4133", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 30, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 12, - "rolls": 2, - "modified": true - } - ], - "ingameId": 3438671468, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1746429058, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3445500372, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 1 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "p": 899011010, - "s": "3f7f", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 26, - "rolls": 3 - } - ], - "ingameId": 3445500372, - "ingameEquippedId": "899011010" - }, - { - "code": "ecw6h_u", - "ct": 1746429060, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3445500628, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "p": 892353109, - "s": "c6ef", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 24, - "rolls": 3 - } - ], - "ingameId": 3445500628, - "ingameEquippedId": "892353109" - }, - { - "code": "ecw6a_u", - "ct": 1746429064, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3445501118, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "s": "1bd5", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 33, - "rolls": 4 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 3445501118, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1746429068, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3445501481, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.05, - "u" - ] - ], - "s": "7395", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 33, - "rolls": 4 - } - ], - "ingameId": 3445501481, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n_u", - "ct": 1746429072, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 3445501933, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "p": 892353109, - "s": "842f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 24, - "rolls": 3 - } - ], - "ingameId": 3445501933, - "ingameEquippedId": "892353109" - }, - { - "code": "ecw6r_u", - "ct": 1746429075, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3445502296, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.04 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "p": 739641017, - "s": "9dd9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 27, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 3445502296, - "ingameEquippedId": "739641017" - }, - { - "code": "eah27a", - "ct": 1746498498, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3450048620, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah27_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 5 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ] - ], - "s": "e7a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3450048620, - "ingameEquippedId": "undefined" - }, - { - "code": "eep_a", - "ct": 1746680176, - "e": 93750, - "f": "set_def", - "g": 5, - "id": 3457782032, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ep_armor_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ] - ], - "s": "884", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DefenseSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3457782032, - "ingameEquippedId": "undefined" - }, - { - "code": "eep_w", - "ct": 1746680231, - "e": 93750, - "f": "set_def", - "g": 5, - "id": 3457788577, - "l": true, - "level": 88, - "mainStatBaseValue": 103, - "mainStatId": "ep_weapon_m", - "mainStatType": "att", - "mainStatValue": 515, - "mg": 1111, - "op": [ - [ - "att", - 103 - ], - [ - "speed", - 3 - ], - [ - "res", - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.09, - "c", - "change2_res_2_1" - ] - ], - "s": "b395", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DefenseSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 515 - }, - "substats": [ - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 27, - "rolls": 4 - } - ], - "ingameId": 3457788577, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1746681615, - "e": 93750, - "f": "set_def", - "g": 5, - "id": 3457958611, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0.06 - ], - [ - "def", - 0 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "def", - 0 - ], - [ - "res", - 0.06 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "def", - 61, - "c", - "change2_def_2_2" - ] - ], - "s": "9517", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DefenseSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 29, - "rolls": 4 - }, - { - "type": "Defense", - "value": 79, - "rolls": 2, - "modified": true - } - ], - "ingameId": 3457958611, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6n_u", - "ct": 1746771226, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3462816900, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp", - 164 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp", - 174 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp", - 197 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "max_hp", - 168, - "u" - ] - ], - "p": 830235768, - "s": "7184", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Health", - "value": 703, - "rolls": 3 - } - ], - "ingameId": 3462816900, - "ingameEquippedId": "830235768" - }, - { - "code": "ecw6a", - "ct": 1746862329, - "f": "set_acc", - "g": 5, - "id": 3466725563, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "a878", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3466725563, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1746862332, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 3466725667, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 613630545, - "s": "1fdc", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 3466725667, - "ingameEquippedId": "613630545" - }, - { - "code": "ecb6w", - "ct": 1746971310, - "f": "set_cri_dmg", - "g": 4, - "id": 3471477600, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "acc", - 0.06 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp", - 169 - ] - ], - "p": 28393107, - "s": "59ac", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Health", - "value": 169, - "rolls": 1 - } - ], - "ingameId": 3471477600, - "ingameEquippedId": "28393107" - }, - { - "code": "ecd6w_u", - "ct": 1747005863, - "e": 93922, - "f": "set_torrent", - "g": 5, - "id": 3472662654, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "c44a", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 3472662654, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6a", - "ct": 1747005866, - "e": 82031, - "f": "set_torrent", - "g": 5, - "id": 3472662776, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60, - null, - null, - 2 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ] - ], - "s": "737a", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 31, - "rolls": 5 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3472662776, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6r_u", - "ct": 1747005873, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 3472663055, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 3 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.06, - "u" - ] - ], - "s": "6b6d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 36, - "rolls": 5 - } - ], - "ingameId": 3472663055, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6h_u", - "ct": 1747005878, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 3472663283, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "86e1", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 3472663283, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6b_u", - "ct": 1747005885, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 3472663530, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "3ae1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 3472663530, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6n_u", - "ct": 1747005891, - "e": 93750, - "f": "set_torrent", - "g": 5, - "id": 3472663787, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "att", - 0 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "att", - 45, - "c", - "change2_att_1_2" - ] - ], - "s": "9258", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "TorrentSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Attack", - "value": 56, - "rolls": 1, - "modified": true - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 3472663787, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6n", - "ct": 1747006450, - "f": "set_cri_dmg", - "g": 4, - "id": 3472685973, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "def", - 28 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.04 - ] - ], - "p": 28393107, - "s": "66b9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "Defense", - "value": 28, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 3472685973, - "ingameEquippedId": "28393107" - }, - { - "code": "ecb6w_u", - "ct": 1747006762, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3472699406, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 640588979, - "s": "77be", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 3472699406, - "ingameEquippedId": "640588979" - }, - { - "code": "ecb6h_u", - "ct": 1747006762, - "e": 93922, - "f": "set_cri_dmg", - "g": 5, - "id": 3472699407, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 640588979, - "s": "7105", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 33, - "rolls": 4 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 3472699407, - "ingameEquippedId": "640588979" - }, - { - "code": "ecb6a_u", - "ct": 1747006762, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3472699408, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 158971995, - "s": "78a6", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 3472699408, - "ingameEquippedId": "158971995" - }, - { - "code": "ecb6b_u", - "ct": 1747006762, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3472699410, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "p": 899521626, - "s": "94d9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 30, - "rolls": 4 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3472699410, - "ingameEquippedId": "899521626" - }, - { - "code": "ecd6n_u", - "ct": 1747006762, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3472699411, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "efef", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 3472699411, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6r_u", - "ct": 1747006762, - "e": 93922, - "f": "set_penetrate", - "g": 5, - "id": 3472699412, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "e2d2", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 20, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3472699412, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6b_u", - "ct": 1747050957, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 3475507981, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "s": "2f55", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 3475507981, - "ingameEquippedId": "undefined" - }, - { - "code": "eah27b", - "ct": 1747206216, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3481551120, - "l": true, - "level": 88, - "mainStatBaseValue": 9, - "mainStatId": "ah27_boot_m1", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ] - ], - "s": "1747", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 21, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3481551120, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1747206905, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 3481574936, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.1, - "c", - "change2_max_hp_rate_2_2" - ] - ], - "s": "241c", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 29, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 13, - "rolls": 2, - "modified": true - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 3481574936, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w", - "ct": 1747310699, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3486112364, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "e667", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 3486112364, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1747310699, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3486112365, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "c47d", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 3486112365, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1747310699, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3486112366, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 5 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ] - ], - "s": "4269", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 18, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3486112366, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1747310699, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3486112367, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ] - ], - "s": "7b45", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 26, - "rolls": 4 - } - ], - "ingameId": 3486112367, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1747310699, - "e": 1982, - "f": "set_cri", - "g": 5, - "id": 3486112369, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "s": "7e6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 3, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 3486112369, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9n", - "ct": 1747314451, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3486339758, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "58a2", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 3486339758, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85n_u", - "ct": 1747315336, - "e": 93922, - "f": "set_vampire", - "g": 5, - "id": 3486400547, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "max_hp", - 172 - ], - [ - "def_rate", - 0.05 - ], - [ - "res", - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.04 - ], - [ - "res", - 0 - ], - [ - "res", - 0 - ], - [ - "max_hp", - 56, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "res", - 0.13, - "c", - "change2_res_3_2" - ] - ], - "p": 48988520, - "s": "d24a", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "Health", - "value": 228, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 3, - "modified": true - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - } - ], - "ingameId": 3486400547, - "ingameEquippedId": "48988520" - }, - { - "code": "eal85r_u", - "ct": 1747315664, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 3486421961, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0 - ], - [ - "res", - 0.08 - ], - [ - "def", - 30 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def", - 34 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.06, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "cri", - 0.04, - "c", - "change2_cri_1_2" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "p": 48988520, - "s": "9f4c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 32, - "rolls": 5 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Defense", - "value": 82, - "rolls": 2 - } - ], - "ingameId": 3486421961, - "ingameEquippedId": "48988520" - }, - { - "code": "ecb6b", - "ct": 1747453257, - "f": "set_cri_dmg", - "g": 4, - "id": 3491022327, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_boot_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "att_rate", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 2 - ] - ], - "p": 28393107, - "s": "c170", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Heroic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1 - } - ], - "ingameId": 3491022327, - "ingameEquippedId": "28393107" - }, - { - "code": "ecb6w_u", - "ct": 1747454139, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3491059817, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 613630545, - "s": "2dfa", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 3491059817, - "ingameEquippedId": "613630545" - }, - { - "code": "ecb6h_u", - "ct": 1747454139, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3491059818, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "p": 899521626, - "s": "ad9b", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 3491059818, - "ingameEquippedId": "899521626" - }, - { - "code": "ecb6a_u", - "ct": 1747454139, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3491059819, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "7c56", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 3491059819, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6b_u", - "ct": 1747454139, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3491059820, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 461351155, - "s": "91ba", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 3491059820, - "ingameEquippedId": "461351155" - }, - { - "code": "ecd6n", - "ct": 1747454232, - "e": 82031, - "f": "set_penetrate", - "g": 5, - "id": 3491063757, - "l": true, - "level": 85, - "mainStatBaseValue": 0.13, - "mainStatId": "cra6_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.13 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ] - ], - "s": "ee21", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 3491063757, - "ingameEquippedId": "undefined" - }, - { - "code": "ecd6r", - "ct": 1747454232, - "e": 82031, - "f": "set_penetrate", - "g": 5, - "id": 3491063759, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "s": "790f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 19, - "rolls": 3 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 3491063759, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6w", - "ct": 1747454557, - "e": 82031, - "f": "set_max_hp", - "g": 5, - "id": 3491078292, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "6bc3", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 18, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 3491078292, - "ingameEquippedId": "undefined" - }, - { - "code": "eah27r", - "ct": 1747456372, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3491160591, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah27_ring_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 4 - ] - ], - "s": "32a9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3491160591, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6w_u", - "ct": 1747554163, - "e": 93750, - "f": "set_shield", - "g": 5, - "id": 3494753443, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp", - 173 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.04 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "max_hp", - 56, - "u" - ], - [ - "speed", - 4, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ] - ], - "s": "e8bd", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ProtectionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Health", - "value": 229, - "rolls": 1 - }, - { - "type": "Speed", - "value": 19, - "rolls": 5 - }, - { - "type": "EffectResistancePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 3494753443, - "ingameEquippedId": "undefined" - }, - { - "code": "eah27n", - "ct": 1747708176, - "e": 93750, - "f": "set_scar", - "g": 5, - "id": 3499881314, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "ah27_neck_m1", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 5 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.04 - ] - ], - "p": 799495489, - "s": "4b4d", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "InjurySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 13, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 3499881314, - "ingameEquippedId": "799495489" - }, - { - "code": "ecg6w_u", - "ct": 1747809887, - "e": 93750, - "f": "set_def", - "g": 5, - "id": 3502378186, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ] - ], - "s": "10e1", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DefenseSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 3502378186, - "ingameEquippedId": "undefined" - }, - { - "code": "exc107001", - "ct": 1747812556, - "g": 5, - "id": 3502436710, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "ek_c107001", - 2 - ] - ], - "s": "97c5" - }, - { - "code": "exc107001", - "ct": 1747812559, - "g": 5, - "id": 3502436807, - "mg": 1111, - "op": [ - [ - "speed", - 9 - ], - [ - "ek_c107001", - 1 - ] - ], - "s": "97da" - }, - { - "code": "exc107001", - "ct": 1747812563, - "g": 5, - "id": 3502436866, - "l": true, - "mg": 1111, - "op": [ - [ - "speed", - 10 - ], - [ - "ek_c107001", - 3 - ] - ], - "p": 110838566, - "s": "9be" - }, - { - "code": "ecw6w_u", - "ct": 1747917476, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3504245936, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "s": "df6a", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 22, - "rolls": 3 - } - ], - "ingameId": 3504245936, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1747917476, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3504245937, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.05, - "u" - ] - ], - "s": "5e42", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 31, - "rolls": 4 - } - ], - "ingameId": 3504245937, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1747922421, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3504369449, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "2b6b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 25, - "rolls": 3 - }, - { - "type": "Speed", - "value": 15, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3504369449, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1747926052, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3504471563, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 445022861, - "s": "1c2f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 32, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3504471563, - "ingameEquippedId": "445022861" - }, - { - "code": "ecw6h_u", - "ct": 1747965870, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3505134903, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "s": "8a00", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 3505134903, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1747965870, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3505134904, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "acc", - 0.05, - "u" - ] - ], - "s": "a5d7", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 32, - "rolls": 4 - } - ], - "ingameId": 3505134904, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b", - "ct": 1747968071, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3505191594, - "l": true, - "level": 85, - "mainStatBaseValue": 8, - "mainStatId": "cra6_boot_m", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.08 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "acc", - 0.06 - ] - ], - "s": "b922", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 40 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 22, - "rolls": 4 - } - ], - "ingameId": 3505191594, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1747982391, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3505550848, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "att_rate", - 0.05, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "p": 894623419, - "s": "3e9f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 28, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3505550848, - "ingameEquippedId": "894623419" - }, - { - "code": "ecw6n_u", - "ct": 1747982646, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 3505556329, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "acc", - 0.04, - "u" - ] - ], - "s": "e18e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 24, - "rolls": 3 - } - ], - "ingameId": 3505556329, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a_u", - "ct": 1747983155, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3505567656, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "acc", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ] - ], - "p": 892353109, - "s": "1ff3", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 27, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 3505567656, - "ingameEquippedId": "892353109" - }, - { - "code": "ecg6w_u", - "ct": 1747983317, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3505572333, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ] - ], - "p": 620426700, - "s": "48b6", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 25, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - } - ], - "ingameId": 3505572333, - "ingameEquippedId": "620426700" - }, - { - "code": "ecw6w_u", - "ct": 1747983477, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3505576702, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "s": "724a", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 3505576702, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w", - "ct": 1747983477, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3505576713, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.05 - ], - [ - "max_hp", - 197 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 191 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp", - 172 - ] - ], - "s": "529", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Health", - "value": 560, - "rolls": 3 - }, - { - "type": "Speed", - "value": 8, - "rolls": 3 - } - ], - "ingameId": 3505576713, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6h_u", - "ct": 1747983643, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3505580549, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "d755", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 21, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 27, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 3505580549, - "ingameEquippedId": "undefined" - }, - { - "code": "exc104601", - "ct": 1747987542, - "g": 5, - "id": 3505665059, - "l": true, - "mg": 1111, - "op": [ - [ - "acc", - 0.12 - ], - [ - "ek_c104601", - 2 - ] - ], - "p": 583954927, - "s": "f99a" - }, - { - "code": "exc201101", - "ct": 1747994982, - "g": 5, - "id": 3505824879, - "l": true, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "ek_c201101", - 1 - ] - ], - "p": 738614105, - "s": "44cf" - }, - { - "code": "exc504601", - "ct": 1748001314, - "g": 5, - "id": 3505986243, - "mg": 1111, - "op": [ - [ - "acc", - 0.13 - ], - [ - "ek_c504601", - 1 - ] - ], - "s": "afe9" - }, - { - "code": "exc504601", - "ct": 1748001317, - "g": 5, - "id": 3505986338, - "mg": 1111, - "op": [ - [ - "acc", - 0.14 - ], - [ - "ek_c504601", - 3 - ] - ], - "s": "991b" - }, - { - "code": "exc504601", - "ct": 1748001320, - "g": 5, - "id": 3505986406, - "mg": 1111, - "op": [ - [ - "acc", - 0.15 - ], - [ - "ek_c504601", - 3 - ] - ], - "s": "812" - }, - { - "code": "exc504601", - "ct": 1748001322, - "g": 5, - "id": 3505986507, - "mg": 1111, - "op": [ - [ - "acc", - 0.1 - ], - [ - "ek_c504601", - 1 - ] - ], - "s": "a693" - }, - { - "code": "exc504601", - "ct": 1748001325, - "g": 5, - "id": 3505986566, - "l": true, - "mg": 1111, - "op": [ - [ - "acc", - 0.12 - ], - [ - "ek_c504601", - 2 - ] - ], - "p": 899011010, - "s": "1127" - }, - { - "code": "eal85b_u", - "ct": 1748003717, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3506053536, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "att", - 0 - ], - [ - "def_rate", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "att", - 0 - ], - [ - "acc", - 0.04 - ], - [ - "att", - 0 - ], - [ - "att", - 0 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "att", - 44, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "att", - 108, - "c", - "change2_att_4_2" - ] - ], - "p": 518782830, - "s": "5f7c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1 - }, - { - "type": "Attack", - "value": 152, - "rolls": 4, - "modified": true - }, - { - "type": "DefensePercent", - "value": 18, - "rolls": 2 - } - ], - "ingameId": 3506053536, - "ingameEquippedId": "518782830" - }, - { - "code": "ecw6a", - "ct": 1748014445, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3506395442, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0.04 - ] - ], - "s": "8c6", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - } - ], - "ingameId": 3506395442, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1748014566, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 3506399453, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "s": "8bd3", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 4, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 3506399453, - "ingameEquippedId": "undefined" - }, - { - "code": "eah17a", - "ct": 1748047234, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3506998849, - "l": true, - "level": 88, - "mainStatBaseValue": 62, - "mainStatId": "ah17_armo_m1", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.08 - ] - ], - "p": 799495489, - "s": "0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 27, - "rolls": 4 - } - ], - "ingameId": 3506998849, - "ingameEquippedId": "799495489" - }, - { - "code": "eah17n", - "ct": 1748047237, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3506998906, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "ah17_neck_m1", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.09 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "s": "0", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 23, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 17, - "rolls": 3 - } - ], - "ingameId": 3506998906, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n", - "ct": 1748069792, - "e": 82031, - "f": "set_acc", - "g": 5, - "id": 3507648310, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "9151", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 11, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3507648310, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1748069980, - "e": 82031, - "f": "set_acc", - "g": 5, - "id": 3507653700, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.07 - ] - ], - "s": "77b6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 22, - "rolls": 3 - }, - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 3507653700, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r_u", - "ct": 1748220968, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 3511268444, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "def_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "b4d7", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Speed", - "value": 17, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3511268444, - "ingameEquippedId": "undefined" - }, - { - "code": "esc01w", - "ct": 1748316905, - "f": "set_shield", - "g": 5, - "id": 3513589473, - "l": true, - "level": 78, - "mainStatBaseValue": 95, - "mainStatId": "sc01_weap_m", - "mainStatType": "att", - "mainStatValue": 475, - "mg": 1111, - "op": [ - [ - "att", - 95, - null, - "q01_1", - null - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ] - ], - "s": "fd21", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ProtectionSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Attack", - "value": 475 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 3513589473, - "ingameEquippedId": "undefined" - }, - { - "code": "esc01h", - "ct": 1748316908, - "f": "set_shield", - "g": 5, - "id": 3513589549, - "l": true, - "level": 78, - "mainStatBaseValue": 513, - "mainStatId": "sc01_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2565, - "mg": 1111, - "op": [ - [ - "max_hp", - 513, - null, - "q01_2", - null - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ] - ], - "s": "3f18", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ProtectionSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Health", - "value": 2565 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 3513589549, - "ingameEquippedId": "undefined" - }, - { - "code": "esc01a", - "ct": 1748316912, - "f": "set_shield", - "g": 5, - "id": 3513589622, - "l": true, - "level": 78, - "mainStatBaseValue": 57, - "mainStatId": "sc01_armo_m", - "mainStatType": "def", - "mainStatValue": 285, - "mg": 1111, - "op": [ - [ - "def", - 57, - null, - "q01_3", - null - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ] - ], - "s": "260f", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "ProtectionSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Defense", - "value": 285 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 3513589622, - "ingameEquippedId": "undefined" - }, - { - "code": "esc01b", - "ct": 1748316915, - "f": "set_shield", - "g": 5, - "id": 3513589712, - "l": true, - "level": 78, - "mainStatBaseValue": 8, - "mainStatId": "sc01_boot_m", - "mainStatType": "speed", - "mainStatValue": 40, - "mg": 1111, - "op": [ - [ - "speed", - 8, - null, - "q01_6", - null - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ] - ], - "s": "14c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ProtectionSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Speed", - "value": 40 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3513589712, - "ingameEquippedId": "undefined" - }, - { - "code": "esc01r", - "ct": 1748324968, - "f": "set_immune", - "g": 5, - "id": 3513761604, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "sc01_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12, - null, - "q01_5", - null - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ] - ], - "s": "71e9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 3513761604, - "ingameEquippedId": "undefined" - }, - { - "code": "esc01n", - "ct": 1748324972, - "f": "set_immune", - "g": 5, - "id": 3513761658, - "l": true, - "level": 78, - "mainStatBaseValue": 0.12, - "mainStatId": "sc01_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12, - null, - "q01_4", - null - ], - [ - "def_rate", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 4 - ] - ], - "s": "6663", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - } - ], - "ingameId": 3513761658, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu51h", - "ct": 1748336869, - "f": "set_shield", - "g": 5, - "id": 3513963799, - "level": 88, - "mainStatBaseValue": 553, - "mainStatId": "iu51_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2765, - "mg": 1111, - "op": [ - [ - "max_hp", - 553 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ] - ], - "s": "2301", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "ProtectionSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Health", - "value": 2765 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3513963799, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9n", - "ct": 1748336947, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3513965232, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "6c60", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 27, - "rolls": 4 - } - ], - "ingameId": 3513965232, - "ingameEquippedId": "undefined" - }, - { - "code": "exc507101", - "ct": 1748609728, - "g": 5, - "id": 3518279812, - "l": true, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.14 - ], - [ - "ek_c507101", - 2 - ] - ], - "p": 613630545, - "s": "bf56" - }, - { - "code": "eal85b_u", - "ct": 1748609965, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3518283342, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "def_rate", - 0 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "def_rate", - 0.07, - "c", - "change2_def_rate_1_1" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "p": 636577158, - "s": "43a6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 21, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 8, - "rolls": 1, - "modified": true - } - ], - "ingameId": 3518283342, - "ingameEquippedId": "636577158" - }, - { - "code": "exc210101", - "ct": 1748843518, - "g": 5, - "id": 3523304582, - "l": true, - "mg": 1111, - "op": [ - [ - "speed", - 6 - ], - [ - "ek_c210101", - 1 - ] - ], - "p": 777666204, - "s": "5ead" - }, - { - "code": "ecg6a_u", - "ct": 1749028688, - "e": 93750, - "f": "set_def", - "g": 5, - "id": 3525798717, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp", - 184 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp", - 159 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "s": "b6db", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DefenseSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 34, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "Health", - "value": 455, - "rolls": 2 - } - ], - "ingameId": 3525798717, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a", - "ct": 1749028688, - "e": 82031, - "f": "set_def", - "g": 5, - "id": 3525798724, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp", - 193 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp", - 168 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 2 - ] - ], - "s": "1652", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DefenseSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 20, - "rolls": 3 - }, - { - "type": "Health", - "value": 361, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 3525798724, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a_u", - "ct": 1749028915, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3525801562, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp", - 177 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ] - ], - "s": "624b", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Health", - "value": 233, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 18, - "rolls": 4 - } - ], - "ingameId": 3525801562, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a_u", - "ct": 1749028915, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3525801564, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp", - 173 - ], - [ - "def_rate", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "max_hp", - 200 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.03, - "u" - ], - [ - "def_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "s": "7f21", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Health", - "value": 485, - "rolls": 2 - } - ], - "ingameId": 3525801564, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a_u", - "ct": 1749028915, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3525801566, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ] - ], - "s": "41db", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - } - ], - "ingameId": 3525801566, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1749108228, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3526717498, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "att_rate", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "max_hp", - 196 - ], - [ - "max_hp", - 193 - ], - [ - "max_hp", - 172 - ], - [ - "def_rate", - 0.08 - ], - [ - "att_rate", - 0.05 - ], - [ - "max_hp", - 173 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp", - 224, - "u" - ] - ], - "s": "39bd", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "Health", - "value": 958, - "rolls": 4 - } - ], - "ingameId": 3526717498, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6h_u", - "ct": 1749180103, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 3527626492, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "s": "52f8", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 19, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 11, - "rolls": 2 - } - ], - "ingameId": 3527626492, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1749182548, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3527650132, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "def", - 29 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def", - 34 - ], - [ - "cri", - 0.03 - ], - [ - "def", - 28 - ], - [ - "res", - 0.07 - ], - [ - "cri", - 0.02, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "def", - 27, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 326928979, - "s": "df54", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "Defense", - "value": 118, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 3527650132, - "ingameEquippedId": "326928979" - }, - { - "code": "ecg6a", - "ct": 1749188938, - "e": 82031, - "f": "set_max_hp", - "g": 5, - "id": 3527718118, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.08 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ] - ], - "s": "3b32", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 19, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 3527718118, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6h_u", - "ct": 1749189527, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 3527723850, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.03 - ], - [ - "def_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "res", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ] - ], - "p": 48988520, - "s": "606e", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 25, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 3527723850, - "ingameEquippedId": "48988520" - }, - { - "code": "ecg6a_u", - "ct": 1749190576, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3527732752, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.03, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.08, - "c", - "change2_def_rate_1_2" - ] - ], - "s": "dab2", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1, - "modified": true - }, - { - "type": "HealthPercent", - "value": 30, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 3527732752, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6w_u", - "ct": 1749191514, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3527739581, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 1 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ] - ], - "s": "7fa5", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - }, - { - "type": "Speed", - "value": 2, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 16, - "rolls": 3 - }, - { - "type": "CriticalHitDamagePercent", - "value": 26, - "rolls": 4 - } - ], - "ingameId": 3527739581, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6w", - "ct": 1749191544, - "e": 17723, - "f": "set_att", - "g": 5, - "id": 3527739859, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ] - ], - "s": "4aa4", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 19, - "rolls": 3 - } - ], - "ingameId": 3527739859, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6w_u", - "ct": 1749191552, - "e": 93750, - "f": "set_att", - "g": 5, - "id": 3527739947, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 2, - "u" - ] - ], - "s": "9413", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "AttackSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 3 - } - ], - "ingameId": 3527739947, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1749192293, - "e": 93804, - "f": "set_cri", - "g": 5, - "id": 3527746479, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.01, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "res", - 0.07, - "u" - ] - ], - "s": "4011", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 36, - "rolls": 5 - } - ], - "ingameId": 3527746479, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1749192307, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3527746617, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp", - 182 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "def_rate", - 0.05 - ], - [ - "max_hp", - 185 - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp", - 112, - "u" - ] - ], - "s": "adf0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 26, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Health", - "value": 479, - "rolls": 2 - } - ], - "ingameId": 3527746617, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6h_u", - "ct": 1749192726, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3527750510, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "acc", - 0.01, - "u" - ] - ], - "s": "3f9f", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 28, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 3527750510, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1749192915, - "e": 93862, - "f": "set_speed", - "g": 5, - "id": 3527751946, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "def_rate", - 0 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "def_rate", - 0.08, - "c", - "change2_def_rate_1_2" - ] - ], - "s": "397e", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 9, - "rolls": 1, - "modified": true - }, - { - "type": "HealthPercent", - "value": 29, - "rolls": 4 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3527751946, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1749200057, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 3527818197, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "def_rate", - 0 - ], - [ - "res", - 0.08 - ], - [ - "def", - 33 - ], - [ - "max_hp", - 181 - ], - [ - "res", - 0.05 - ], - [ - "def", - 29 - ], - [ - "max_hp", - 185 - ], - [ - "res", - 0.04 - ], - [ - "max_hp", - 189 - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "def", - 18, - "u" - ], - [ - "max_hp", - 168, - "u" - ], - [ - "def_rate", - 0.05, - "c", - "change2_def_rate_1_1" - ] - ], - "p": 28398305, - "s": "684e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 6, - "rolls": 1, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Defense", - "value": 80, - "rolls": 2 - }, - { - "type": "Health", - "value": 723, - "rolls": 3 - } - ], - "ingameId": 3527818197, - "ingameEquippedId": "28398305" - }, - { - "code": "ecw6a_u", - "ct": 1749622557, - "e": 84375, - "f": "set_speed", - "g": 4, - "id": 3533657970, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ] - ], - "s": "bc50", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 37, - "rolls": 4 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3533657970, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a_u", - "ct": 1749869869, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3537254483, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "a7c1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 2 - } - ], - "ingameId": 3537254483, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1749905616, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3537857610, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.04 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.03 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "f311", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 3537857610, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1749906312, - "e": 84375, - "f": "set_cri", - "g": 4, - "id": 3537869979, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "res", - 0.03, - "u" - ] - ], - "s": "4434", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 3537869979, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1750076867, - "e": 93750, - "f": "set_immune", - "g": 5, - "id": 3540252422, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "def_rate", - 0.06 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.08 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 2 - ], - [ - "cri_dmg", - 0.02, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ] - ], - "s": "68e6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "ImmunitySet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 13, - "rolls": 4 - } - ], - "ingameId": 3540252422, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6h_u", - "ct": 1750221347, - "e": 93750, - "f": "set_max_hp", - "g": 5, - "id": 3541894381, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.04 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.05, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.08, - "c", - "change2_max_hp_rate_1_2" - ] - ], - "s": "b22b", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "HealthSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 29, - "rolls": 4 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 19, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 9, - "rolls": 1, - "modified": true - } - ], - "ingameId": 3541894381, - "ingameEquippedId": "undefined" - }, - { - "code": "eih6r", - "ct": 1750249893, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 3542185787, - "l": true, - "level": 88, - "mainStatBaseValue": 0.13, - "mainStatId": "imh_ring_m3", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "res", - 0.09 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.08 - ], - [ - "res", - 0.09 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.06 - ] - ], - "s": "7a32", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 13, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 7, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 14, - "rolls": 2 - } - ], - "ingameId": 3542185787, - "ingameEquippedId": "undefined" - }, - { - "code": "eiu51n", - "ct": 1750253896, - "e": 21687, - "f": "set_revenge", - "g": 5, - "id": 3542239370, - "l": true, - "level": 88, - "mainStatBaseValue": 0.12, - "mainStatId": "iu51_neck_m", - "mainStatType": "cri", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "cri", - 0.12 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 5 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "speed", - 3 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ] - ], - "s": "f6ab", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "RevengeSet", - "name": "Unknown", - "enhance": 9, - "main": { - "type": "CriticalHitChancePercent", - "value": 60 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 14, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3542239370, - "ingameEquippedId": "undefined" - }, - { - "code": "eih9n", - "ct": 1750256287, - "e": 93750, - "f": "set_penetrate", - "g": 5, - "id": 3542276314, - "l": true, - "level": 88, - "mainStatBaseValue": 0.14, - "mainStatId": "imh_neck_m11", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "cri", - 0.06 - ], - [ - "speed", - 5 - ], - [ - "att_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ] - ], - "s": "4d9c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "PenetrationSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 20, - "rolls": 4 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 3542276314, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85b_u", - "ct": 1750258682, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3542315094, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "max_hp", - 159 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0 - ], - [ - "max_hp", - 174 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri", - 0 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp", - 112, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ], - [ - "cri", - 0.07, - "c", - "change2_cri_3_1" - ] - ], - "p": 795195383, - "s": "3c6", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 3, - "modified": true - }, - { - "type": "Health", - "value": 445, - "rolls": 2 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 17, - "rolls": 3 - } - ], - "ingameId": 3542315094, - "ingameEquippedId": "795195383" - }, - { - "code": "ecw6a_u", - "ct": 1750321865, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 3543895042, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "acc", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "def_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.04, - "u" - ], - [ - "def_rate", - 0.01, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "d2b0", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 19, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 28, - "rolls": 4 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 3543895042, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w_u", - "ct": 1750372686, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3545863341, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "att_rate", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ], - [ - "att_rate", - 0.03, - "u" - ], - [ - "speed", - 2, - "u" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "p": 899521626, - "s": "e6ad", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 2 - } - ], - "ingameId": 3545863341, - "ingameEquippedId": "899521626" - }, - { - "code": "exc103401", - "ct": 1750389040, - "g": 5, - "id": 3546322083, - "level": 0, - "mg": 1111, - "name": "Unknown", - "op": [ - [ - "cri", - 0.1 - ], - [ - "ek_c103401", - 1 - ] - ], - "p": 890790459, - "s": "a86a" - }, - { - "code": "ecb6h_u", - "ct": 1750466852, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3548498505, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "att_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "att_rate", - 0.05 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.04, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "cri", - 0.02, - "u" - ] - ], - "s": "bfd2", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 22, - "rolls": 3 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 3548498505, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6b_u", - "ct": 1750483266, - "e": 93750, - "f": "set_acc", - "g": 5, - "id": 3549077008, - "l": true, - "level": 90, - "mainStatBaseValue": 9, - "mainStatId": "cra7_boot_m", - "mainStatType": "speed", - "mainStatValue": 45, - "mg": 1111, - "op": [ - [ - "speed", - 9, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "res", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "acc", - 0.03, - "u" - ], - [ - "res", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.02, - "u" - ] - ], - "s": "8d15", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Speed", - "value": 45 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 13, - "rolls": 2 - } - ], - "ingameId": 3549077008, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1750638400, - "e": 93750, - "f": "set_cri_dmg", - "g": 5, - "id": 3553470454, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.05, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "b8d", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 30, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "CriticalHitDamagePercent", - "value": 18, - "rolls": 3 - } - ], - "ingameId": 3553470454, - "ingameEquippedId": "undefined" - }, - { - "code": "ecg6a_u", - "ct": 1750686596, - "e": 84469, - "f": "set_shield", - "g": 4, - "id": 3554729013, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "def_rate", - 0.04 - ], - [ - "acc", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "cri", - 0.01, - "u" - ], - [ - "def_rate", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "acc", - 0.03, - "u" - ] - ], - "s": "6bcf", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Heroic", - "set": "ProtectionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 15, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 27, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 3554729013, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6w_u", - "ct": 1750687747, - "e": 93750, - "f": "set_res", - "g": 5, - "id": 3554771772, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.08 - ], - [ - "max_hp_rate", - 0 - ], - [ - "acc", - 0.08 - ], - [ - "res", - 0.04 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "acc", - 0.04, - "u" - ], - [ - "res", - 0.05, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.06, - "c", - "change2_max_hp_rate_1_1" - ] - ], - "p": 566472035, - "s": "612f", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "ResistSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 26, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 31, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1, - "modified": true - } - ], - "ingameId": 3554771772, - "ingameEquippedId": "566472035" - }, - { - "code": "ecw6w", - "ct": 1750753932, - "e": 82084, - "f": "set_speed", - "g": 5, - "id": 3556276571, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "speed", - 2 - ], - [ - "att_rate", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ] - ], - "s": "e3a", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "Speed", - "value": 10, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 12, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3556276571, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1750755129, - "e": 93803, - "f": "set_speed", - "g": 5, - "id": 3556303419, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 2 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "res", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "s": "7ac0", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3556303419, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w", - "ct": 1750755598, - "e": 82085, - "f": "set_cri", - "g": 5, - "id": 3556314296, - "l": true, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "cri", - 0.03 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 172 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.04 - ] - ], - "s": "218c", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 7, - "rolls": 2 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 5 - }, - { - "type": "Health", - "value": 172, - "rolls": 1 - } - ], - "ingameId": 3556314296, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w", - "ct": 1750755913, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3556320767, - "level": 85, - "mainStatBaseValue": 100, - "mainStatId": "cra6_wepo_m", - "mainStatType": "att", - "mainStatValue": 500, - "mg": 1111, - "op": [ - [ - "att", - 100 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.08 - ] - ], - "s": "cd45", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 500 - }, - "substats": [ - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 3 - } - ], - "ingameId": 3556320767, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1750756313, - "e": 93861, - "f": "set_speed", - "g": 5, - "id": 3556329819, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "cri", - 0 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0 - ], - [ - "cri", - 0.06, - "c" - ], - [ - "cri", - 0.02, - "u" - ], - [ - "speed", - 1, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "3705", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 8, - "rolls": 2, - "modified": true - }, - { - "type": "Speed", - "value": 8, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 20, - "rolls": 3 - } - ], - "ingameId": 3556329819, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r_u", - "ct": 1750757464, - "e": 93860, - "f": "set_speed", - "g": 5, - "id": 3556358680, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "acc", - 0.13, - null, - null, - 0 - ], - [ - "max_hp", - 187 - ], - [ - "res", - 0.08 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "max_hp", - 170 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "max_hp", - 183 - ], - [ - "max_hp", - 168, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "156b", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectivenessPercent", - "value": 65 - }, - "substats": [ - { - "type": "Health", - "value": 708, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 16, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3556358680, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r_u", - "ct": 1750768014, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3556631332, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 0 - ], - [ - "acc", - 0.07 - ], - [ - "max_hp", - 200 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "acc", - 0.03, - "u" - ], - [ - "max_hp", - 56, - "u" - ], - [ - "max_hp_rate", - 0.07, - "u" - ] - ], - "s": "48e4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "EffectivenessPercent", - "value": 18, - "rolls": 2 - }, - { - "type": "Health", - "value": 256, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 39, - "rolls": 5 - }, - { - "type": "Speed", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 3556631332, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r_u", - "ct": 1750768171, - "e": 93802, - "f": "set_acc", - "g": 5, - "id": 3556636135, - "l": true, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.13, - null, - null, - 0 - ], - [ - "att", - 42 - ], - [ - "res", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "res", - 0.06 - ], - [ - "res", - 0.06 - ], - [ - "att", - 11, - "u" - ], - [ - "res", - 0.04, - "u" - ], - [ - "speed", - 3, - "u" - ], - [ - "cri", - 0.01, - "u" - ] - ], - "s": "2a8c", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 65 - }, - "substats": [ - { - "type": "Attack", - "value": 53, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 20, - "rolls": 3 - }, - { - "type": "Speed", - "value": 15, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3556636135, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6n", - "ct": 1750768294, - "e": 73828, - "f": "set_acc", - "g": 4, - "id": 3556639912, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_neck_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "max_hp", - 188 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.03 - ], - [ - "acc", - 0.04 - ] - ], - "s": "a106", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "Health", - "value": 188, - "rolls": 1 - }, - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 8, - "rolls": 2 - }, - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - } - ], - "ingameId": 3556639912, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1750769632, - "e": 82083, - "f": "set_speed", - "g": 5, - "id": 3556684148, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "res", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "res", - 0.12 - ], - [ - "cri", - 0.05 - ], - [ - "att_rate", - 0.06 - ], - [ - "speed", - 4 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "speed", - 2 - ], - [ - "cri", - 0.05 - ] - ], - "s": "18b4", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectResistancePercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "AttackPercent", - "value": 6, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3556684148, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1750769865, - "e": 82083, - "f": "set_speed", - "g": 5, - "id": 3556691982, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.04 - ], - [ - "res", - 0.05 - ], - [ - "acc", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "acc", - 0.04 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "cri", - 0.05 - ] - ], - "s": "f350", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "Speed", - "value": 12, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 3556691982, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6w_u", - "ct": 1750818687, - "e": 84375, - "f": "set_cri", - "g": 4, - "id": 3557757060, - "l": true, - "level": 90, - "mainStatBaseValue": 105, - "mainStatId": "cra7_wepo_m", - "mainStatType": "att", - "mainStatValue": 525, - "mg": 1111, - "op": [ - [ - "att", - 105, - null, - null, - 0 - ], - [ - "speed", - 3 - ], - [ - "res", - 0.08 - ], - [ - "att_rate", - 0.08 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4, - "u" - ], - [ - "res", - 0.01, - "u" - ], - [ - "att_rate", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.01, - "u" - ] - ], - "s": "6697", - "statMultiplier": 1.67, - "tierMultiplier": 1, - "type": "weapon", - "gear": "Weapon", - "rank": "Heroic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Attack", - "value": 525 - }, - "substats": [ - { - "type": "Speed", - "value": 20, - "rolls": 5 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 5, - "rolls": 1 - } - ], - "ingameId": 3557757060, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1750819746, - "e": 82082, - "f": "set_cri", - "g": 5, - "id": 3557784304, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "att_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.12 - ], - [ - "def_rate", - 0.07 - ], - [ - "def", - 29 - ], - [ - "speed", - 4 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.04 - ], - [ - "cri", - 0.04 - ] - ], - "s": "15a1", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 60 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "Defense", - "value": 29, - "rolls": 1 - }, - { - "type": "Speed", - "value": 14, - "rolls": 4 - }, - { - "type": "CriticalHitChancePercent", - "value": 9, - "rolls": 2 - } - ], - "ingameId": 3557784304, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1750819756, - "e": 73863, - "f": "set_acc", - "g": 4, - "id": 3557784506, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "acc", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "acc", - 0.12 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "res", - 0.05 - ] - ], - "s": "f1d9", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Heroic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "EffectivenessPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 10, - "rolls": 2 - }, - { - "type": "Speed", - "value": 13, - "rolls": 4 - }, - { - "type": "HealthPercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3557784506, - "ingameEquippedId": "undefined" - }, - { - "code": "eal85n_u", - "ct": 1750858177, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 3558773915, - "l": true, - "level": 90, - "mainStatBaseValue": 0.14, - "mainStatId": "cra7_neck_m", - "mainStatType": "cri_dmg", - "mainStatValue": 0.7000000000000001, - "mg": 1111, - "op": [ - [ - "cri_dmg", - 0.14, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "def", - 30 - ], - [ - "att", - 41 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "def_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "def", - 9, - "u" - ], - [ - "att", - 11, - "u" - ], - [ - "def_rate", - 0.05, - "u" - ] - ], - "p": 798777729, - "s": "b28f", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "neck", - "gear": "Necklace", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 70 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 21, - "rolls": 3 - }, - { - "type": "Defense", - "value": 39, - "rolls": 1 - }, - { - "type": "Attack", - "value": 52, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 27, - "rolls": 4 - } - ], - "ingameId": 3558773915, - "ingameEquippedId": "798777729" - }, - { - "code": "eal85b_u", - "ct": 1750858575, - "e": 93750, - "f": "set_vampire", - "g": 5, - "id": 3558788678, - "level": 90, - "mainStatBaseValue": 0.13, - "mainStatId": "cra7_boot_m", - "mainStatType": "att_rate", - "mainStatValue": 0.65, - "mg": 1111, - "op": [ - [ - "att_rate", - 0.13, - null, - null, - 1 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "cri", - 0.04 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "res", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.06, - "u" - ], - [ - "cri", - 0.01, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "res", - 0.01, - "u" - ] - ], - "p": 798777729, - "s": "98e7", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "boot", - "gear": "Boots", - "rank": "Epic", - "set": "LifestealSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "AttackPercent", - "value": 65 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 37, - "rolls": 5 - }, - { - "type": "CriticalHitChancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 8, - "rolls": 1 - } - ], - "ingameId": 3558788678, - "ingameEquippedId": "798777729" - }, - { - "code": "ela13b", - "ct": 1750944383, - "e": 93750, - "f": "set_shield", - "g": 5, - "id": 3560545568, - "l": true, - "level": 0, - "mg": 1111, - "name": "Unknown", - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "def_rate", - 0.06 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 3 - ] - ], - "s": "c2b1", - "gear": "Boots", - "rank": "Epic", - "set": "ProtectionSet", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 0 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 24, - "rolls": 3 - }, - { - "type": "Speed", - "value": 11, - "rolls": 3 - }, - { - "type": "EffectResistancePercent", - "value": 14, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 3560545568, - "ingameEquippedId": "undefined" - }, - { - "code": "ela13w", - "ct": 1750944408, - "e": 93750, - "f": "set_shield", - "g": 5, - "id": 3560546230, - "l": true, - "level": 0, - "mg": 1111, - "name": "Unknown", - "op": [ - [ - "att", - 103 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.07 - ], - [ - "speed", - 4 - ], - [ - "res", - 0.07 - ], - [ - "acc", - 0.08 - ] - ], - "s": "0", - "gear": "Weapon", - "rank": "Epic", - "set": "ProtectionSet", - "enhance": 15, - "main": { - "type": "Attack", - "value": 0 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 9, - "rolls": 1 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 23, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 24, - "rolls": 3 - } - ], - "ingameId": 3560546230, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1751010960, - "e": 82084, - "f": "set_cri", - "g": 5, - "id": 3561694666, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "res", - 0.05 - ], - [ - "speed", - 3 - ], - [ - "def_rate", - 0.06 - ], - [ - "cri_dmg", - 0.04 - ], - [ - "speed", - 2 - ], - [ - "speed", - 3 - ], - [ - "speed", - 3 - ], - [ - "speed", - 2 - ] - ], - "s": "c66e", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "CriticalSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 5, - "rolls": 1 - }, - { - "type": "Speed", - "value": 13, - "rolls": 5 - }, - { - "type": "DefensePercent", - "value": 6, - "rolls": 1 - } - ], - "ingameId": 3561694666, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1751011396, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3561702971, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "max_hp_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "max_hp_rate", - 0.12 - ], - [ - "cri", - 0.03 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri_dmg", - 0.05 - ], - [ - "def_rate", - 0.11, - "c", - "change2_def_rate_2_1" - ] - ], - "s": "6733", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 60 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 3, - "rolls": 1 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "DefensePercent", - "value": 11, - "rolls": 2, - "modified": true - }, - { - "type": "CriticalHitDamagePercent", - "value": 28, - "rolls": 5 - } - ], - "ingameId": 3561702971, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6r", - "ct": 1751011992, - "e": 82143, - "f": "set_acc", - "g": 5, - "id": 3561715688, - "l": true, - "level": 85, - "mainStatBaseValue": 0.12, - "mainStatId": "cra6_ring_m", - "mainStatType": "def_rate", - "mainStatValue": 0.6, - "mg": 1111, - "op": [ - [ - "def_rate", - 0.12 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "acc", - 0 - ], - [ - "res", - 0.08 - ], - [ - "res", - 0.08 - ], - [ - "acc", - 0 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "speed", - 3 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.1, - "c", - "change2_acc_2_2" - ] - ], - "s": "f5b7", - "statMultiplier": 1, - "tierMultiplier": 1, - "type": "ring", - "gear": "Ring", - "rank": "Epic", - "set": "HitSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "DefensePercent", - "value": 60 - }, - "substats": [ - { - "type": "Speed", - "value": 6, - "rolls": 2 - }, - { - "type": "HealthPercent", - "value": 16, - "rolls": 3 - }, - { - "type": "EffectivenessPercent", - "value": 10, - "rolls": 2, - "modified": true - }, - { - "type": "EffectResistancePercent", - "value": 16, - "rolls": 2 - } - ], - "ingameId": 3561715688, - "ingameEquippedId": "undefined" - }, - { - "code": "ela13n", - "ct": 1751031755, - "e": 93750, - "f": "set_cri", - "g": 5, - "id": 3562099450, - "l": true, - "level": 0, - "mg": 1111, - "name": "Unknown", - "op": [ - [ - "cri_dmg", - 0.14 - ], - [ - "att_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "cri", - 0.06 - ], - [ - "acc", - 0.09 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.06 - ], - [ - "acc", - 0.08 - ] - ], - "s": "0", - "gear": "Necklace", - "rank": "Epic", - "set": "CriticalSet", - "enhance": 15, - "main": { - "type": "CriticalHitDamagePercent", - "value": 0 - }, - "substats": [ - { - "type": "AttackPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "Speed", - "value": 13, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 11, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 3562099450, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6a", - "ct": 1751112339, - "e": 82031, - "f": "set_speed", - "g": 5, - "id": 3563523530, - "l": true, - "level": 85, - "mainStatBaseValue": 60, - "mainStatId": "cra6_armo_m", - "mainStatType": "def", - "mainStatValue": 300, - "mg": 1111, - "op": [ - [ - "def", - 60 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "max_hp_rate", - 0.05 - ], - [ - "acc", - 0.07 - ], - [ - "def_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "acc", - 0.08 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "def_rate", - 0.04 - ] - ], - "s": "55a1", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 300 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 19, - "rolls": 4 - }, - { - "type": "EffectivenessPercent", - "value": 15, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 12, - "rolls": 2 - } - ], - "ingameId": 3563523530, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h", - "ct": 1751112346, - "f": "set_speed", - "g": 5, - "id": 3563523741, - "level": 85, - "mainStatBaseValue": 540, - "mainStatId": "cra6_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2700, - "mg": 1111, - "op": [ - [ - "max_hp", - 540 - ], - [ - "cri_dmg", - 0.07 - ], - [ - "acc", - 0.04 - ], - [ - "max_hp_rate", - 0.04 - ], - [ - "res", - 0.07 - ] - ], - "s": "a433", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 0, - "main": { - "type": "Health", - "value": 2700 - }, - "substats": [ - { - "type": "CriticalHitDamagePercent", - "value": 7, - "rolls": 1 - }, - { - "type": "EffectivenessPercent", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 4, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 7, - "rolls": 1 - } - ], - "ingameId": 3563523741, - "ingameEquippedId": "undefined" - }, - { - "code": "ela13a", - "ct": 1751124649, - "e": 93862, - "f": "set_shield", - "g": 5, - "id": 3563835443, - "l": true, - "level": 0, - "mg": 1111, - "name": "Unknown", - "op": [ - [ - "def", - 62 - ], - [ - "max_hp_rate", - 0.09 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "def_rate", - 0.05 - ], - [ - "def_rate", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "def_rate", - 0.09 - ], - [ - "max_hp_rate", - 0.07 - ] - ], - "s": "0", - "gear": "Armor", - "rank": "Epic", - "set": "ProtectionSet", - "enhance": 15, - "main": { - "type": "Defense", - "value": 0 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 16, - "rolls": 2 - }, - { - "type": "DefensePercent", - "value": 28, - "rolls": 4 - }, - { - "type": "Speed", - "value": 9, - "rolls": 2 - }, - { - "type": "EffectResistancePercent", - "value": 9, - "rolls": 1 - } - ], - "ingameId": 3563835443, - "ingameEquippedId": "undefined" - }, - { - "code": "ecw6h_u", - "ct": 1751250870, - "e": 93750, - "f": "set_speed", - "g": 5, - "id": 3566231631, - "l": true, - "level": 90, - "mainStatBaseValue": 567, - "mainStatId": "cra7_helm_m", - "mainStatType": "max_hp", - "mainStatValue": 2835, - "mg": 1111, - "op": [ - [ - "max_hp", - 567, - null, - null, - 0 - ], - [ - "max_hp_rate", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "att_rate", - 0.07 - ], - [ - "cri", - 0.04 - ], - [ - "cri", - 0.03 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "att_rate", - 0.07 - ], - [ - "max_hp_rate", - 0.08 - ], - [ - "max_hp_rate", - 0.04, - "u" - ], - [ - "cri", - 0.03, - "u" - ], - [ - "att_rate", - 0.03, - "u" - ] - ], - "s": "cbc6", - "statMultiplier": 2.25, - "tierMultiplier": 1, - "type": "helm", - "gear": "Helmet", - "rank": "Epic", - "set": "SpeedSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Health", - "value": 2835 - }, - "substats": [ - { - "type": "HealthPercent", - "value": 26, - "rolls": 3 - }, - { - "type": "CriticalHitChancePercent", - "value": 15, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "AttackPercent", - "value": 17, - "rolls": 2 - } - ], - "ingameId": 3566231631, - "ingameEquippedId": "undefined" - }, - { - "code": "ela13r", - "ct": 1751285020, - "e": 93750, - "f": "set_shield", - "g": 5, - "id": 3566763231, - "l": true, - "level": 0, - "mg": 1111, - "name": "Unknown", - "op": [ - [ - "max_hp_rate", - 0.13 - ], - [ - "def_rate", - 0.09 - ], - [ - "speed", - 5 - ], - [ - "res", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "res", - 0.08 - ], - [ - "def_rate", - 0.09 - ], - [ - "acc", - 0.09 - ], - [ - "acc", - 0.05 - ], - [ - "def_rate", - 0.08 - ] - ], - "s": "17e3", - "gear": "Ring", - "rank": "Epic", - "set": "ProtectionSet", - "enhance": 15, - "main": { - "type": "HealthPercent", - "value": 0 - }, - "substats": [ - { - "type": "DefensePercent", - "value": 26, - "rolls": 3 - }, - { - "type": "Speed", - "value": 5, - "rolls": 1 - }, - { - "type": "EffectResistancePercent", - "value": 17, - "rolls": 2 - }, - { - "type": "EffectivenessPercent", - "value": 23, - "rolls": 3 - } - ], - "ingameId": 3566763231, - "ingameEquippedId": "undefined" - }, - { - "code": "ecb6a_u", - "ct": 1751295414, - "e": 93863, - "f": "set_cri_dmg", - "g": 5, - "id": 3566991686, - "l": true, - "level": 90, - "mainStatBaseValue": 62, - "mainStatId": "cra7_armo_m", - "mainStatType": "def", - "mainStatValue": 310, - "mg": 1111, - "op": [ - [ - "def", - 62, - null, - null, - 0 - ], - [ - "cri", - 0.05 - ], - [ - "speed", - 4 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.05 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "cri", - 0.04 - ], - [ - "cri_dmg", - 0.06 - ], - [ - "max_hp_rate", - 0.07 - ], - [ - "cri", - 0.03, - "u" - ], - [ - "max_hp_rate", - 0.03, - "u" - ], - [ - "cri_dmg", - 0.03, - "u" - ] - ], - "s": "1003", - "statMultiplier": 2.5, - "tierMultiplier": 1, - "type": "armor", - "gear": "Armor", - "rank": "Epic", - "set": "DestructionSet", - "name": "Unknown", - "enhance": 15, - "main": { - "type": "Defense", - "value": 310 - }, - "substats": [ - { - "type": "CriticalHitChancePercent", - "value": 17, - "rolls": 3 - }, - { - "type": "Speed", - "value": 4, - "rolls": 1 - }, - { - "type": "HealthPercent", - "value": 17, - "rolls": 2 - }, - { - "type": "CriticalHitDamagePercent", - "value": 21, - "rolls": 3 - } - ], - "ingameId": 3566991686, - "ingameEquippedId": "undefined" - } - ], - "inventory": {}, - "status": "SUCCESS", - "units": [ - [ - { - "code": "c5001", - "ct": 0, - "d": 7, - "exp": 833510, - "f": 3196, - "g": 6, - "id": 166490, - "l": true, - "name": "Adventurer Ras", - "opt": 11, - "s": [ - 2, - 2, - 4 - ], - "st": 0, - "stree": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1018", - "ct": 1687228144, - "d": 7, - "exp": 63815, - "f": 919, - "g": 3, - "id": 2303361, - "l": true, - "name": "Aither", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "s0001", - "ct": 1687228446, - "exp": 0, - "g": 5, - "id": 2499590, - "opt": 1, - "st": 0 - }, - { - "code": "c3063", - "ct": 1687228784, - "d": 7, - "exp": 392415, - "f": 5, - "g": 5, - "id": 2716895, - "l": true, - "name": "Kiris", - "opt": 1, - "s": [ - 5, - 3, - 2 - ], - "st": 0, - "z": 4, - "stars": 5, - "awaken": 4 - }, - { - "code": "c4035", - "ct": 1687228784, - "d": 7, - "exp": 833510, - "f": 200, - "g": 6, - "id": 2716899, - "l": true, - "name": "Commander Lorina", - "opt": 1, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "stree": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1024", - "ct": 1687231721, - "exp": 650125, - "f": 1608, - "g": 5, - "id": 4647526, - "l": true, - "name": "Iseria", - "opt": 2001, - "s": [ - 4, - 2, - 4 - ], - "st": 0, - "z": 4, - "stars": 5, - "awaken": 4 - }, - { - "code": "c1036", - "ct": 1687231754, - "d": 6, - "exp": 5690, - "g": 4, - "id": 4667046, - "l": true, - "name": "Crozet", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c0002", - "ct": 1687235863, - "d": 6, - "exp": 1110500, - "f": 2845, - "g": 6, - "id": 6844892, - "l": true, - "name": "Mercedes", - "opt": 3021, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c4023", - "ct": 1687235940, - "d": 7, - "exp": 63815, - "g": 3, - "id": 6885513, - "l": true, - "name": "Mercenary Helga", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1008", - "ct": 1687235940, - "d": 6, - "exp": 13500, - "g": 4, - "id": 6885516, - "l": true, - "name": "Armin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c4041", - "ct": 1687235940, - "d": 7, - "exp": 833510, - "f": 149, - "g": 6, - "id": 6885517, - "l": true, - "name": "Mascot Hazel", - "opt": 1, - "s": [ - 3, - 4, - 7 - ], - "st": 0, - "stree": [ - 2, - 3, - 3, - 0, - 2, - 0, - 0, - 0, - 1, - 0 - ], - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c3132", - "ct": 1687235987, - "d": 7, - "exp": 392415, - "f": 12293, - "g": 5, - "id": 6911147, - "l": true, - "name": "Muwi", - "opt": 21, - "s": [ - 3, - 5, - 5 - ], - "st": 0, - "z": 5, - "stars": 5, - "awaken": 5 - }, - { - "code": "c3102", - "ct": 1687246056, - "d": 7, - "exp": 10884, - "f": 814, - "g": 3, - "id": 11049689, - "l": true, - "name": "Ian", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c3026", - "ct": 1687246438, - "d": 6, - "exp": 1110500, - "f": 11106, - "g": 6, - "id": 11185757, - "l": true, - "name": "Free Spirit Tieria", - "opt": 3021, - "s": [ - 4, - 4, - 7 - ], - "st": 0, - "z": 5, - "stars": 6, - "awaken": 5 - }, - { - "code": "s0002", - "ct": 1687271170, - "exp": 0, - "g": 5, - "id": 20013754, - "opt": 1, - "st": 0 - }, - { - "code": "c4051", - "ct": 1687275617, - "d": 7, - "exp": 833510, - "f": 171, - "g": 6, - "id": 21884461, - "l": true, - "name": "Researcher Carrot", - "opt": 1, - "s": [ - 6, - 2, - 7 - ], - "st": 0, - "stree": [ - 0, - 0, - 3, - 0, - 3, - 3, - 0, - 3, - 3, - 3 - ], - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1079", - "ct": 1687306878, - "exp": 1384450, - "f": 71, - "g": 6, - "id": 28393107, - "l": true, - "name": "Cermia", - "opt": 1, - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c4123", - "ct": 1687306899, - "d": 7, - "exp": 833510, - "f": 2627, - "g": 6, - "id": 28398305, - "l": true, - "name": "Silvertide Christy", - "opt": 21, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "stree": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "s0003", - "ct": 1687309708, - "exp": 0, - "g": 5, - "id": 29078917, - "opt": 1, - "st": 0 - }, - { - "code": "c4042", - "ct": 1687320189, - "d": 7, - "exp": 392415, - "f": 216, - "g": 5, - "id": 31856726, - "name": "Angelic Montmorancy", - "opt": 1, - "s": [ - 2, - 5, - 5 - ], - "st": 0, - "z": 5, - "stars": 5, - "awaken": 5 - }, - { - "code": "c1023", - "ct": 1687322611, - "exp": 0, - "g": 5, - "id": 32601552, - "l": true, - "name": "Kayron", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c3025", - "ct": 1687351395, - "d": 7, - "exp": 63815, - "g": 3, - "id": 40330842, - "l": true, - "name": "Church of Ilryos Axe", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1062", - "ct": 1687352017, - "d": 6, - "exp": 1110500, - "f": 3213, - "g": 6, - "id": 40490456, - "l": true, - "name": "Angelica", - "opt": 3021, - "s": [ - null, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c3045", - "ct": 1687357202, - "d": 7, - "exp": 3840, - "g": 3, - "id": 41877886, - "l": true, - "name": "Otillie", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1087", - "ct": 1687394514, - "d": 6, - "exp": 1110500, - "f": 12163, - "g": 6, - "id": 48982864, - "l": true, - "name": "Furious", - "opt": 3001, - "s": [ - 3, - 1, - 6 - ], - "st": 0, - "z": 5, - "stars": 6, - "awaken": 5 - }, - { - "code": "c3032", - "ct": 1687394538, - "d": 7, - "exp": 833510, - "f": 5, - "g": 6, - "id": 48988518, - "l": true, - "name": "Taranor Guard", - "opt": 21, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c3125", - "ct": 1687394538, - "d": 7, - "exp": 3840, - "g": 3, - "id": 48988519, - "l": true, - "name": "Penelope", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1129", - "ct": 1687394538, - "d": 3, - "exp": 1384450, - "f": 1837, - "g": 6, - "id": 48988520, - "l": true, - "name": "Aria", - "opt": 3021, - "s": [ - 7, - 7, - 1 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1072", - "ct": 1687395299, - "d": 3, - "exp": 1384450, - "f": 14459, - "g": 6, - "id": 49161666, - "l": true, - "name": "Sigret", - "opt": 3021, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c3022", - "ct": 1687395790, - "d": 7, - "exp": 5340, - "f": 814, - "g": 3, - "id": 49275344, - "l": true, - "name": "Enott", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1021", - "ct": 1687395805, - "d": 6, - "exp": 12970, - "g": 4, - "id": 49278840, - "name": "Dingo", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c3024", - "ct": 1687445920, - "d": 7, - "exp": 3540, - "g": 3, - "id": 60578097, - "l": true, - "name": "Gunther", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c3055", - "ct": 1687481103, - "d": 7, - "exp": 840, - "g": 3, - "id": 66610863, - "l": true, - "name": "Hurado", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1028", - "ct": 1687608539, - "d": 6, - "exp": 50475, - "g": 4, - "id": 90340100, - "l": true, - "name": "Clarissa", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1054", - "ct": 1687610761, - "d": 6, - "exp": 10190, - "g": 4, - "id": 90728199, - "name": "Rin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1067", - "ct": 1687611503, - "d": 2, - "exp": 1384450, - "f": 4903, - "g": 6, - "id": 90857803, - "l": true, - "name": "Tamarinne", - "opt": 3021, - "s": [ - 3, - 7, - 1 - ], - "skin_code": "c1067_s01", - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c3014", - "ct": 1687646880, - "d": 7, - "exp": 840, - "g": 3, - "id": 96073578, - "l": true, - "name": "Mirsa", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1047", - "ct": 1687646924, - "exp": 650125, - "g": 5, - "id": 96079743, - "l": true, - "name": "Ken", - "opt": 1, - "st": 0, - "z": 5, - "stars": 5, - "awaken": 5 - }, - { - "code": "c1118", - "ct": 1687646924, - "d": 1, - "exp": 1384450, - "f": 1612, - "g": 6, - "id": 96079748, - "l": true, - "name": "Ran", - "opt": 3021, - "s": [ - 4, - 1, - 7 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "s0004", - "ct": 1687654215, - "exp": 0, - "g": 5, - "id": 97362523, - "opt": 1, - "st": 0 - }, - { - "code": "c2050", - "ct": 1687666751, - "d": 1, - "exp": 1384450, - "f": 4572, - "g": 6, - "id": 99507012, - "l": true, - "name": "Specter Tenebria", - "opt": 3021, - "s": [ - 6, - 3, - 6 - ], - "skin_code": "c2050_s01", - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2043", - "ct": 1687684221, - "exp": 1190, - "g": 4, - "id": 102257218, - "l": true, - "name": "Benevolent Romann", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1003", - "ct": 1687708002, - "d": 6, - "exp": 5690, - "g": 4, - "id": 106183527, - "l": true, - "name": "Rose", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1070", - "ct": 1687739825, - "exp": 1384450, - "f": 3, - "g": 6, - "id": 110838566, - "l": true, - "name": "Krau", - "opt": 1, - "s": [ - 3, - 4, - 2 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1071", - "ct": 1687739897, - "exp": 0, - "f": 1724, - "g": 5, - "id": 110853212, - "l": true, - "name": "Bellona", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1088", - "ct": 1687770611, - "exp": 1384450, - "f": 5002, - "g": 6, - "id": 115835449, - "l": true, - "name": "Vivian", - "opt": 3001, - "s": [ - null, - 7, - 1 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c3134", - "ct": 1687780574, - "d": 7, - "exp": 392415, - "f": 1465, - "g": 5, - "id": 117268286, - "l": true, - "name": "Yoonryoung", - "opt": 1, - "s": [ - 7 - ], - "st": 0, - "z": 4, - "stars": 5, - "awaken": 4 - }, - { - "code": "c3065", - "ct": 1687780604, - "d": 7, - "exp": 840, - "g": 3, - "id": 117273089, - "l": true, - "name": "Wanda", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1109", - "ct": 1687959020, - "exp": 1384450, - "f": 3720, - "g": 6, - "id": 140659207, - "l": true, - "name": "Landy", - "opt": 3001, - "s": [ - 2, - 3, - 5 - ], - "st": 0, - "z": 5, - "stars": 6, - "awaken": 5 - }, - { - "code": "c3094", - "ct": 1688015777, - "d": 7, - "exp": 2040, - "g": 3, - "id": 146824688, - "l": true, - "name": "Eaton", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c6008", - "ct": 1688015796, - "exp": 1110500, - "f": 355, - "g": 6, - "id": 146827448, - "l": true, - "name": "Bad Cat Armin", - "opt": 1, - "s": [ - null, - 5, - 4 - ], - "st": 0, - "z": 5, - "stars": 6, - "awaken": 5 - }, - { - "code": "c1112", - "ct": 1688045722, - "exp": 1384450, - "f": 2691, - "g": 6, - "id": 150271128, - "l": true, - "name": "Politis", - "opt": 3001, - "s": [ - 4, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c4144", - "ct": 1688133397, - "d": 7, - "exp": 833510, - "f": 1808, - "g": 6, - "id": 158971995, - "l": true, - "name": "Savior Adin", - "opt": 21, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "stree": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c4005", - "ct": 1688359306, - "d": 7, - "exp": 833510, - "f": 2718, - "g": 6, - "id": 180232242, - "l": true, - "name": "Shadow Knight Pyllis", - "opt": 21, - "s": [ - 4, - 5, - 4 - ], - "st": 0, - "stree": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c3064", - "ct": 1688370619, - "d": 7, - "exp": 6840, - "g": 3, - "id": 181253090, - "l": true, - "name": "Celeste", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1013", - "ct": 1688436207, - "d": 6, - "exp": 1190, - "g": 4, - "id": 186477488, - "name": "Cartuja", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1039", - "ct": 1688735695, - "exp": 1250, - "f": 86, - "g": 5, - "id": 207190343, - "l": true, - "name": "Haste", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1102", - "ct": 1688886306, - "exp": 1384450, - "f": 4333, - "g": 6, - "id": 218403497, - "l": true, - "name": "Roana", - "opt": 3001, - "s": [ - 4, - 7, - 1 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1124", - "ct": 1688920907, - "exp": 1250, - "g": 5, - "id": 221027633, - "l": true, - "name": "Arunka", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1126", - "ct": 1688984548, - "exp": 1250, - "g": 5, - "id": 225117695, - "l": true, - "name": "Lua", - "opt": 1, - "st": 0, - "z": 1, - "stars": 5, - "awaken": 1 - }, - { - "code": "c2089", - "ct": 1688994679, - "exp": 1384450, - "f": 2289, - "g": 6, - "id": 225876663, - "l": true, - "name": "Conqueror Lilias", - "opt": 3001, - "s": [ - 3, - 6, - 3 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2004", - "ct": 1688999380, - "d": 7, - "exp": 1190, - "g": 4, - "id": 226290315, - "l": true, - "name": "Wanderer Silk", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "a": true, - "code": "c6037", - "ct": 1689000350, - "d": 6, - "exp": 1110500, - "f": 1503, - "g": 6, - "id": 226377978, - "l": true, - "name": "Moon Bunny Dominiel", - "opt": 2021, - "s": [ - 5, - 6, - 3 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2005", - "ct": 1689000376, - "exp": 1190, - "g": 4, - "id": 226380601, - "l": true, - "name": "Celestial Mercedes", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2036", - "ct": 1689000393, - "exp": 1190, - "g": 4, - "id": 226382235, - "l": true, - "name": "Troublemaker Crozet", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2065", - "ct": 1689053732, - "exp": 1190, - "g": 4, - "id": 230001112, - "l": true, - "name": "Tempest Surin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "a": true, - "code": "c4004", - "ct": 1689221173, - "d": 7, - "exp": 833510, - "f": 2266, - "g": 6, - "id": 241191727, - "l": true, - "name": "Unbound Knight Arowell", - "opt": 21, - "s": [ - 5, - 3, - 5 - ], - "st": 0, - "stree": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c3034", - "ct": 1689301199, - "d": 7, - "exp": 3240, - "g": 3, - "id": 246179820, - "l": true, - "name": "Rikoris", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1086", - "ct": 1689345123, - "d": 6, - "exp": 9440, - "g": 4, - "id": 249685425, - "l": true, - "name": "Khawana", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "a": true, - "code": "c5082", - "ct": 1689845857, - "d": 1, - "exp": 1384450, - "f": 1500, - "g": 6, - "id": 279573776, - "l": true, - "name": "Ocean Breeze Luluca", - "opt": 3021, - "s": [ - 3, - 7, - 1 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c3015", - "ct": 1689948930, - "d": 7, - "exp": 840, - "g": 3, - "id": 286281807, - "l": true, - "name": "Sven", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c3095", - "ct": 1690210324, - "d": 6, - "exp": 840, - "g": 3, - "id": 297335230, - "l": true, - "name": "Batisse", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1009", - "ct": 1690327809, - "exp": 0, - "g": 5, - "id": 301462555, - "l": true, - "name": "Charlotte", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1017", - "ct": 1690464352, - "d": 4, - "exp": 522540, - "f": 33, - "g": 5, - "id": 306770592, - "l": true, - "name": "Achates", - "opt": 1, - "s": [ - null, - 2, - 3 - ], - "st": 0, - "z": 5, - "stars": 5, - "awaken": 5 - }, - { - "code": "c1119", - "ct": 1690466122, - "d": 3, - "exp": 1384450, - "f": 2528, - "g": 6, - "id": 306859366, - "l": true, - "name": "Zahhak", - "opt": 3021, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1049", - "ct": 1690643630, - "exp": 0, - "g": 5, - "id": 313000253, - "l": true, - "name": "Chloe", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1006", - "ct": 1690643713, - "exp": 1250, - "g": 5, - "id": 313003939, - "l": true, - "name": "Kise", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c3105", - "ct": 1690646147, - "d": 7, - "exp": 63815, - "g": 3, - "id": 313109293, - "l": true, - "name": "Ainos", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1012", - "ct": 1690647335, - "d": 6, - "exp": 1190, - "g": 4, - "id": 313156815, - "name": "Corvus", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "a": true, - "code": "c1074", - "ct": 1690647930, - "exp": 1384450, - "f": 1500, - "g": 6, - "id": 313179896, - "l": true, - "name": "Violet", - "opt": 1, - "s": [ - 5, - 1, - 5 - ], - "st": 0, - "z": 4, - "stars": 6, - "awaken": 4 - }, - { - "code": "c1065", - "ct": 1690882197, - "d": 6, - "exp": 522540, - "f": 86, - "g": 5, - "id": 319905485, - "l": true, - "name": "Surin", - "opt": 1, - "s": [ - null, - null, - 3 - ], - "st": 0, - "z": 5, - "stars": 5, - "awaken": 5 - }, - { - "code": "c3104", - "ct": 1690882209, - "d": 7, - "exp": 3540, - "g": 3, - "id": 319905853, - "l": true, - "name": "Sonia", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1042", - "ct": 1690933711, - "exp": 0, - "g": 5, - "id": 321217705, - "l": true, - "name": "Tywin", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1050", - "ct": 1691026609, - "exp": 650125, - "f": 116, - "g": 5, - "id": 323638178, - "l": true, - "name": "Tenebria", - "opt": 1, - "s": [ - null, - null, - 1 - ], - "st": 0, - "z": 5, - "stars": 5, - "awaken": 5 - }, - { - "code": "c5149", - "ct": 1691039576, - "exp": 1384450, - "f": 1722, - "g": 6, - "id": 326707479, - "l": true, - "name": "Lethe", - "opt": 3001, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1090", - "ct": 1691040748, - "exp": 650125, - "f": 410, - "g": 5, - "id": 326831592, - "l": true, - "name": "Ray", - "opt": 1, - "s": [ - null, - null, - 3 - ], - "st": 0, - "z": 5, - "stars": 5, - "awaken": 5 - }, - { - "code": "c2073", - "ct": 1691041751, - "exp": 1384450, - "f": 2087, - "g": 6, - "id": 326928979, - "l": true, - "name": "Mediator Kawerik", - "opt": 3001, - "s": [ - 5, - 6, - 3 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2003", - "ct": 1691054570, - "exp": 1190, - "g": 4, - "id": 327820984, - "l": true, - "name": "Shadow Rose", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1085", - "ct": 1691297868, - "d": 6, - "exp": 7190, - "g": 4, - "id": 336730438, - "name": "Khawazu", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2019", - "ct": 1691801868, - "d": 1, - "exp": 1384450, - "f": 2425, - "g": 6, - "id": 350226992, - "l": true, - "name": "Apocalypse Ravi", - "opt": 3001, - "s": [ - 6, - 3, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c4044", - "ct": 1691971004, - "d": 7, - "exp": 833510, - "f": 2039, - "g": 6, - "id": 354206748, - "l": true, - "name": "Magic Scholar Doris", - "opt": 21, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "stree": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2031", - "ct": 1692102496, - "d": 6, - "exp": 522540, - "g": 5, - "id": 357149374, - "l": true, - "name": "Auxiliary Lots", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1015", - "ct": 1692263475, - "exp": 1250, - "g": 5, - "id": 360502881, - "l": true, - "name": "Baal & Sezan", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c3074", - "ct": 1692263504, - "d": 7, - "exp": 840, - "g": 3, - "id": 360523635, - "l": true, - "name": "Gloomyrain", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c2037", - "ct": 1692263514, - "exp": 1190, - "g": 4, - "id": 360531151, - "l": true, - "name": "Challenger Dominiel", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c6011", - "ct": 1692263542, - "d": 6, - "exp": 1110500, - "f": 1644, - "g": 6, - "id": 360551102, - "l": true, - "name": "Last Piece Karin", - "opt": 3001, - "s": [ - 6, - 7, - 1 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2109", - "ct": 1692264096, - "exp": 1384450, - "f": 4744, - "g": 6, - "id": 360878989, - "l": true, - "name": "Navy Captain Landy", - "opt": 3001, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c3135", - "ct": 1692575971, - "d": 7, - "exp": 2040, - "g": 3, - "id": 376153919, - "l": true, - "name": "Hasol", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1106", - "ct": 1692662581, - "exp": 1250, - "g": 5, - "id": 379995788, - "l": true, - "name": "Senya", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2022", - "ct": 1692881860, - "exp": 1384450, - "f": 1818, - "g": 6, - "id": 389494760, - "l": true, - "name": "Destina", - "opt": 3001, - "s": [ - 5, - 3, - 6 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1116", - "ct": 1693457166, - "exp": 650125, - "f": 8, - "g": 5, - "id": 403357976, - "l": true, - "name": "Emilia", - "opt": 1, - "st": 0, - "z": 1, - "stars": 5, - "awaken": 1 - }, - { - "code": "c6062", - "ct": 1693457424, - "d": 6, - "exp": 1110500, - "f": 7, - "g": 6, - "id": 403476926, - "l": true, - "name": "Angel of Light Angelica", - "opt": 21, - "s": [ - 4, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1131", - "ct": 1693704969, - "exp": 1384450, - "f": 1235, - "g": 6, - "id": 412803674, - "l": true, - "name": "Yulha", - "opt": 1, - "s": [ - 3, - null, - 3 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1009", - "ct": 1693958120, - "exp": 0, - "g": 5, - "id": 418000772, - "l": true, - "name": "Charlotte", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1006", - "ct": 1694179819, - "exp": 1250, - "g": 5, - "id": 422317877, - "l": true, - "name": "Kise", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c3003", - "ct": 1694320891, - "d": 7, - "exp": 2640, - "g": 3, - "id": 424808145, - "l": true, - "name": "Kluri", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c2029", - "ct": 1694669606, - "exp": 1190, - "g": 4, - "id": 430277824, - "l": true, - "name": "Roaming Warrior Leo", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2079", - "ct": 1694791065, - "d": 5, - "exp": 1384450, - "f": 4957, - "g": 6, - "id": 434015426, - "l": true, - "name": "Lionheart Cermia", - "opt": 3021, - "s": [ - 7, - 1, - 7 - ], - "skin_code": "c2079_s01", - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1014", - "ct": 1694997530, - "d": 6, - "exp": 522540, - "g": 5, - "id": 440334191, - "l": true, - "name": "Cidd", - "opt": 1, - "s": [ - 3, - 3, - 3 - ], - "st": 0, - "z": 5, - "stars": 5, - "awaken": 5 - }, - { - "code": "c3075", - "ct": 1695080686, - "d": 7, - "exp": 840, - "g": 3, - "id": 442609423, - "l": true, - "name": "Requiemroar", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c2070", - "ct": 1695166090, - "d": 5, - "exp": 1384450, - "f": 3085, - "g": 6, - "id": 445022861, - "l": true, - "name": "Last Rider Krau", - "opt": 3021, - "s": [ - null, - 5, - 5 - ], - "skin_code": "c2070_s01", - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2036", - "ct": 1695254183, - "exp": 1190, - "g": 4, - "id": 447264619, - "l": true, - "name": "Troublemaker Crozet", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1033", - "ct": 1695512496, - "d": 6, - "exp": 1190, - "g": 4, - "id": 455687994, - "name": "Coli", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2032", - "ct": 1695598000, - "exp": 1190, - "g": 4, - "id": 458646767, - "l": true, - "name": "Fighter Maya", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1150", - "ct": 1695730782, - "d": 6, - "exp": 1110500, - "f": 67, - "g": 6, - "id": 461351155, - "l": true, - "name": "Veronica", - "opt": 21, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1151", - "ct": 1695796413, - "exp": 650125, - "f": 1619, - "g": 5, - "id": 461989175, - "l": true, - "name": "Nahkwol", - "opt": 3001, - "s": [ - null, - null, - 3 - ], - "st": 0, - "z": 5, - "stars": 5, - "awaken": 5 - }, - { - "code": "c3151", - "ct": 1695799754, - "d": 4, - "exp": 2040, - "g": 3, - "id": 463031829, - "l": true, - "name": "Juni", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1006", - "ct": 1696027573, - "exp": 1250, - "g": 5, - "id": 471386693, - "name": "Kise", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c3124", - "ct": 1696082635, - "d": 7, - "exp": 392415, - "f": 7, - "g": 5, - "id": 473350938, - "l": true, - "name": "Camilla", - "opt": 1, - "s": [ - 7, - 1, - 4 - ], - "st": 0, - "z": 5, - "stars": 5, - "awaken": 5 - }, - { - "code": "c1111", - "ct": 1696307739, - "exp": 1384450, - "f": 2956, - "g": 6, - "id": 480028811, - "l": true, - "name": "Eda", - "opt": 1, - "s": [ - null, - 4, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1145", - "ct": 1696850547, - "d": 3, - "exp": 1384450, - "f": 11675, - "g": 6, - "id": 490684210, - "l": true, - "name": "Brieg", - "opt": 3021, - "s": [ - 3, - 3, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c5089", - "ct": 1697096248, - "d": 1, - "exp": 1384450, - "f": 1717, - "g": 6, - "id": 494187001, - "l": true, - "name": "Midnight Gala Lilias", - "opt": 3021, - "s": [ - 5, - 4, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c4071", - "ct": 1697763208, - "d": 9, - "exp": 63815, - "g": 3, - "id": 502450559, - "l": true, - "name": "Zealot Carmainerose", - "opt": 1, - "st": 0, - "stree": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "z": 1, - "stars": 3, - "awaken": 1 - }, - { - "code": "c2014", - "ct": 1697896641, - "exp": 1190, - "g": 4, - "id": 503988683, - "l": true, - "name": "Assassin Cidd", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1099", - "ct": 1697989269, - "exp": 1250, - "g": 5, - "id": 504872654, - "l": true, - "name": "Command Model Laika", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1039", - "ct": 1699454152, - "exp": 1250, - "g": 5, - "id": 518417259, - "name": "Haste", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2091", - "ct": 1699454593, - "exp": 1384450, - "f": 2658, - "g": 6, - "id": 518421029, - "l": true, - "name": "Astromancer Elena", - "opt": 3001, - "s": [ - null, - 1, - 7 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c5050", - "ct": 1699503554, - "exp": 1250, - "g": 5, - "id": 518779568, - "l": true, - "name": "Fairytale Tenebria", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c5024", - "ct": 1699503567, - "exp": 1384450, - "f": 2788, - "g": 6, - "id": 518782830, - "l": true, - "name": "Summertime Iseria", - "opt": 3001, - "s": [ - 4, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1081", - "ct": 1699673015, - "exp": 0, - "g": 5, - "id": 522853044, - "l": true, - "name": "Cerise", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1016", - "ct": 1699891499, - "exp": 1384450, - "f": 1596, - "g": 6, - "id": 525461035, - "l": true, - "name": "Yufine", - "opt": 3001, - "s": [ - 6 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c3157", - "ct": 1700613919, - "d": 5, - "exp": 840, - "g": 3, - "id": 534405026, - "l": true, - "name": "Ezra", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c2005", - "ct": 1700787287, - "exp": 1190, - "g": 4, - "id": 536961122, - "l": true, - "name": "Celestial Mercedes", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1126", - "ct": 1701226044, - "exp": 1250, - "g": 5, - "id": 541108842, - "l": true, - "name": "Lua", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2017", - "ct": 1701667435, - "d": 2, - "exp": 228480, - "f": 39, - "g": 4, - "id": 545449824, - "l": true, - "name": "Shooting Star Achates", - "opt": 1, - "st": 0, - "z": 3, - "stars": 4, - "awaken": 3 - }, - { - "code": "c1123", - "ct": 1701925777, - "d": 5, - "exp": 0, - "g": 5, - "id": 547723200, - "l": true, - "name": "Shuna", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1121", - "ct": 1701952015, - "exp": 650125, - "f": 1658, - "g": 5, - "id": 549294853, - "l": true, - "name": "Rimuru", - "opt": 3001, - "s": [ - null, - null, - 3 - ], - "st": 0, - "z": 5, - "stars": 5, - "awaken": 5 - }, - { - "code": "c2042", - "ct": 1702511722, - "d": 1, - "exp": 1384450, - "f": 1523, - "g": 6, - "id": 559859822, - "l": true, - "name": "Ambitious Tywin", - "opt": 3021, - "s": [ - 2, - 4, - 6 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c4158", - "ct": 1702511722, - "d": 7, - "exp": 833510, - "f": 543, - "g": 6, - "id": 559859824, - "l": true, - "name": "Inheritor Amiki", - "opt": 21, - "s": [ - 6, - 3, - 6 - ], - "st": 0, - "stree": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2020", - "ct": 1702596476, - "d": 7, - "exp": 1110500, - "f": 2237, - "g": 6, - "id": 562155721, - "l": true, - "name": "Watcher Schuri", - "opt": 1, - "s": [ - 3, - 4, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1029", - "ct": 1702774005, - "d": 6, - "exp": 1190, - "f": 1403, - "g": 4, - "id": 565017550, - "l": true, - "name": "Leo", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2062", - "ct": 1702873261, - "d": 6, - "exp": 1110500, - "f": 380, - "g": 6, - "id": 566472035, - "l": true, - "name": "Sinful Angelica", - "opt": 21, - "s": [ - null, - 5, - 1 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1089", - "ct": 1703033080, - "exp": 0, - "g": 5, - "id": 568417281, - "l": true, - "name": "Lilias", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1101", - "ct": 1703052783, - "exp": 1384450, - "f": 1598, - "g": 6, - "id": 568689715, - "l": true, - "name": "Choux", - "opt": 3001, - "s": [ - 3, - 3, - 3 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1090", - "ct": 1703297447, - "exp": 1250, - "g": 5, - "id": 571546673, - "name": "Ray", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1032", - "ct": 1703898752, - "d": 6, - "exp": 1190, - "g": 4, - "id": 582763835, - "name": "Maya", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1046", - "ct": 1703998290, - "exp": 1384450, - "f": 17, - "g": 6, - "id": 583954927, - "l": true, - "name": "Lidica", - "opt": 1, - "s": [ - null, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c3084", - "ct": 1704256140, - "exp": 0, - "g": 3, - "id": 586523410, - "l": true, - "name": "Kikirat v2", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c3153", - "ct": 1704791353, - "d": 7, - "exp": 840, - "g": 3, - "id": 590699636, - "l": true, - "name": "Lilka", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1154", - "ct": 1704791359, - "exp": 1384450, - "f": 134, - "g": 6, - "id": 590699704, - "l": true, - "name": "Byblis", - "opt": 1, - "s": [ - 2, - 4, - 3 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2047", - "ct": 1704850850, - "exp": 1384450, - "f": 2160, - "g": 6, - "id": 591089796, - "l": true, - "name": "Martial Artist Ken", - "opt": 3001, - "s": [ - 6, - 3, - 6 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1043", - "ct": 1704934971, - "d": 6, - "exp": 1190, - "g": 4, - "id": 591660134, - "name": "Romann", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2069", - "ct": 1705372316, - "d": 5, - "exp": 1384450, - "f": 3986, - "g": 6, - "id": 596366779, - "l": true, - "name": "Eternal Wanderer Ludwig", - "opt": 3021, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2004", - "ct": 1705375717, - "exp": 1190, - "g": 4, - "id": 596392703, - "l": true, - "name": "Wanderer Silk", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2035", - "ct": 1706586624, - "d": 7, - "exp": 1110500, - "f": 3, - "g": 6, - "id": 604874070, - "l": true, - "name": "General Purrgis", - "opt": 21, - "s": [ - null, - 2, - 4 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2036", - "ct": 1707291054, - "exp": 1190, - "g": 4, - "id": 608926381, - "name": "Troublemaker Crozet", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c5071", - "ct": 1707877825, - "exp": 1384450, - "f": 1, - "g": 6, - "id": 613630545, - "l": true, - "name": "Seaside Bellona", - "opt": 1, - "s": [ - 2, - 3, - 6 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1133", - "ct": 1708571274, - "d": 5, - "exp": 1384450, - "f": 3162, - "g": 6, - "id": 618609916, - "l": true, - "name": "Zio", - "opt": 3021, - "s": [ - 5, - 5, - 3 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1144", - "ct": 1708698197, - "d": 1, - "exp": 1384450, - "f": 2235, - "g": 6, - "id": 620426700, - "l": true, - "name": "Abigail", - "opt": 3001, - "s": [ - null, - 1, - 3 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2028", - "ct": 1708917457, - "exp": 1190, - "g": 4, - "id": 621886932, - "l": true, - "name": "Kitty Clarissa", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1127", - "ct": 1709107592, - "exp": 50750, - "g": 5, - "id": 622922254, - "l": true, - "name": "Taeyou", - "opt": 1, - "st": 0, - "z": 2, - "stars": 5, - "awaken": 2 - }, - { - "code": "c2065", - "ct": 1709697105, - "exp": 1190, - "g": 4, - "id": 625911964, - "name": "Tempest Surin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1082", - "ct": 1709860912, - "exp": 1250, - "g": 5, - "id": 627243561, - "name": "Luluca", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1039", - "ct": 1710300420, - "exp": 1250, - "g": 5, - "id": 629518009, - "l": true, - "name": "Haste", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2087", - "ct": 1711254847, - "exp": 1190, - "g": 4, - "id": 635778122, - "l": true, - "name": "Peacemaker Furious", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "a": true, - "code": "c1091", - "ct": 1711436821, - "d": 3, - "exp": 1384450, - "f": 1518, - "g": 6, - "id": 636577158, - "l": true, - "name": "Elena", - "opt": 3021, - "s": [ - null, - 7, - 2 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2036", - "ct": 1711962573, - "exp": 1190, - "g": 4, - "id": 639220019, - "name": "Troublemaker Crozet", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1055", - "ct": 1712203434, - "d": 2, - "exp": 1384450, - "f": 1580, - "g": 6, - "id": 640588979, - "l": true, - "name": "Jenua", - "opt": 3021, - "s": [ - 5, - 1, - 7 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2053", - "ct": 1713055321, - "exp": 650125, - "g": 5, - "id": 644899362, - "l": true, - "name": "Desert Jewel Basar", - "opt": 1, - "st": 0, - "z": 2, - "stars": 5, - "awaken": 2 - }, - { - "code": "c2112", - "ct": 1714022635, - "d": 1, - "exp": 1384450, - "f": 3176, - "g": 6, - "id": 649028156, - "l": true, - "name": "Sea Phantom Politis", - "opt": 3021, - "s": [ - 3, - 7, - 1 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1155", - "ct": 1714622058, - "d": 5, - "exp": 0, - "g": 5, - "id": 653128055, - "l": true, - "name": "Ainz Ooal Gown", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1156", - "ct": 1714653245, - "exp": 1384450, - "f": 6, - "g": 6, - "id": 654043337, - "l": true, - "name": "Albedo", - "opt": 1, - "s": [ - 3, - 5, - 4 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1006", - "ct": 1714657205, - "exp": 1250, - "g": 5, - "id": 654110906, - "name": "Kise", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1030", - "ct": 1714661387, - "exp": 0, - "g": 5, - "id": 654185623, - "l": true, - "name": "Yuna", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c3054", - "ct": 1714661436, - "d": 7, - "exp": 840, - "g": 3, - "id": 654186475, - "l": true, - "name": "Elson", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c1010", - "ct": 1714793892, - "d": 6, - "exp": 1190, - "g": 4, - "id": 656042400, - "l": true, - "name": "Zerato", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c3163", - "ct": 1715042923, - "exp": 392415, - "f": 4, - "g": 5, - "id": 659243748, - "l": true, - "name": "Leah", - "opt": 1, - "s": [ - null, - 6, - 3 - ], - "st": 0, - "z": 4, - "stars": 5, - "awaken": 4 - }, - { - "code": "c1157", - "ct": 1715332266, - "exp": 50750, - "g": 5, - "id": 663498964, - "l": true, - "name": "Shalltear", - "opt": 1, - "st": 0, - "z": 2, - "stars": 5, - "awaken": 2 - }, - { - "a": true, - "code": "c1142", - "ct": 1715937546, - "d": 1, - "exp": 1384450, - "f": 1507, - "g": 6, - "id": 669363338, - "l": true, - "name": "Eligos", - "opt": 3001, - "s": [ - 7, - 1, - 7 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2020", - "ct": 1716340623, - "exp": 1190, - "g": 4, - "id": 672399111, - "name": "Watcher Schuri", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c6014", - "ct": 1717121846, - "d": 6, - "exp": 1190, - "g": 4, - "id": 677869691, - "l": true, - "name": "Wandering Prince Cidd", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1147", - "ct": 1717744352, - "exp": 1250, - "g": 5, - "id": 683451634, - "l": true, - "name": "Fumyr", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1125", - "ct": 1717813570, - "exp": 1250, - "g": 5, - "id": 683971110, - "l": true, - "name": "Peira", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2029", - "ct": 1717861743, - "d": 6, - "exp": 1190, - "g": 4, - "id": 684343329, - "l": true, - "name": "Roaming Warrior Leo", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "a": true, - "code": "c1161", - "ct": 1718855758, - "exp": 1384450, - "f": 1725, - "g": 6, - "id": 690904230, - "l": true, - "name": "Immortal Wukong", - "opt": 1, - "s": [ - 4, - 4, - 4 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1003", - "ct": 1719022190, - "exp": 1190, - "g": 4, - "id": 694125633, - "name": "Rose", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c3162", - "ct": 1719219351, - "d": 2, - "exp": 840, - "g": 3, - "id": 697089179, - "l": true, - "name": "Bernard", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c2086", - "ct": 1719278174, - "exp": 1190, - "g": 4, - "id": 697938268, - "name": "Great Chief Khawana", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2021", - "ct": 1719449435, - "exp": 1190, - "g": 4, - "id": 700466061, - "name": "Blaze Dingo", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1103", - "ct": 1719729849, - "d": 1, - "exp": 1384450, - "f": 1510, - "g": 6, - "id": 704271358, - "l": true, - "name": "Celine", - "opt": 3021, - "s": [ - 4, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1069", - "ct": 1719887339, - "exp": 1250, - "g": 5, - "id": 705706310, - "l": true, - "name": "Ludwig", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1159", - "ct": 1719887339, - "exp": 1384450, - "f": 2, - "g": 6, - "id": 705706311, - "l": true, - "name": "Laia", - "opt": 1, - "s": [ - 3, - 3, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1035", - "ct": 1720502364, - "exp": 0, - "g": 4, - "id": 709260574, - "name": "Purrgis", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2066", - "ct": 1721290967, - "d": 2, - "exp": 1384450, - "f": 2455, - "g": 6, - "id": 713583798, - "l": true, - "name": "New Moon Luna", - "opt": 3021, - "s": [ - 4, - 4, - 3 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1148", - "ct": 1721292260, - "d": 1, - "exp": 1384450, - "f": 7, - "g": 6, - "id": 713631381, - "l": true, - "name": "Elvira", - "opt": 21, - "s": [ - null, - null, - 3 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1028", - "ct": 1721292366, - "exp": 1190, - "g": 4, - "id": 713635239, - "name": "Clarissa", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1037", - "ct": 1721292366, - "exp": 1190, - "g": 4, - "id": 713635240, - "l": true, - "name": "Dominiel", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c5009", - "ct": 1721293423, - "exp": 33000, - "g": 5, - "id": 713670191, - "l": true, - "name": "Summer Break Charlotte", - "opt": 1, - "st": 0, - "z": 2, - "stars": 5, - "awaken": 2 - }, - { - "code": "c2085", - "ct": 1721315297, - "exp": 1190, - "g": 4, - "id": 714211978, - "l": true, - "name": "Inferno Khawazu", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1019", - "ct": 1721655579, - "d": 1, - "exp": 1250, - "g": 5, - "id": 717223364, - "l": true, - "name": "Ravi", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1066", - "ct": 1722101719, - "exp": 0, - "g": 5, - "id": 720757642, - "l": true, - "name": "Luna", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2099", - "ct": 1722403018, - "exp": 1250, - "g": 5, - "id": 722768494, - "l": true, - "name": "Architect Laika", - "opt": 1, - "st": 0, - "z": 1, - "stars": 5, - "awaken": 1 - }, - { - "code": "c3155", - "ct": 1723354015, - "d": 5, - "exp": 840, - "g": 3, - "id": 727911008, - "l": true, - "name": "Suthan", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c6008", - "ct": 1723724804, - "exp": 1190, - "g": 4, - "id": 729505568, - "name": "Bad Cat Armin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1143", - "ct": 1724576642, - "exp": 0, - "g": 5, - "id": 734132565, - "l": true, - "name": "Amid", - "opt": 1, - "st": 0, - "z": 1, - "stars": 5, - "awaken": 1 - }, - { - "code": "c2071", - "ct": 1724916247, - "exp": 1384450, - "f": 1302, - "g": 6, - "id": 736028830, - "l": true, - "name": "Lone Crescent Bellona", - "opt": 1, - "s": [ - 3, - 4, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2003", - "ct": 1725327062, - "exp": 1190, - "g": 4, - "id": 738613926, - "name": "Shadow Rose", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2011", - "ct": 1725327096, - "d": 6, - "exp": 1110500, - "f": 1765, - "g": 6, - "id": 738614105, - "l": true, - "name": "Blood Blade Karin", - "opt": 3021, - "s": [ - 3, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2085", - "ct": 1725354805, - "exp": 1190, - "g": 4, - "id": 738790497, - "name": "Inferno Khawazu", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1163", - "ct": 1725505512, - "d": 1, - "exp": 1384450, - "f": 1975, - "g": 6, - "id": 739641017, - "l": true, - "name": "Frida", - "opt": 3021, - "s": [ - null, - 3, - 6 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1072", - "ct": 1725848316, - "exp": 0, - "g": 5, - "id": 742543115, - "name": "Sigret", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1006", - "ct": 1726127848, - "exp": 0, - "g": 5, - "id": 745533074, - "name": "Kise", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c6017", - "ct": 1726244362, - "exp": 1190, - "g": 4, - "id": 747633084, - "l": true, - "name": "Infinite Horizon Achates", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2005", - "ct": 1726270592, - "exp": 1190, - "g": 4, - "id": 748202380, - "name": "Celestial Mercedes", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2011", - "ct": 1726530342, - "exp": 1190, - "g": 4, - "id": 753164340, - "name": "Blood Blade Karin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2021", - "ct": 1726703776, - "exp": 1190, - "g": 4, - "id": 756139227, - "name": "Blaze Dingo", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c6037", - "ct": 1726789914, - "exp": 1190, - "g": 4, - "id": 757618535, - "name": "Moon Bunny Dominiel", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2031", - "ct": 1726832217, - "exp": 1190, - "g": 4, - "id": 758299168, - "name": "Auxiliary Lots", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2010", - "ct": 1726967321, - "exp": 1190, - "g": 4, - "id": 760775065, - "name": "Champion Zerato", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c6017", - "ct": 1727135906, - "exp": 1190, - "g": 4, - "id": 764105337, - "name": "Infinite Horizon Achates", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2018", - "ct": 1727223703, - "exp": 1190, - "g": 4, - "id": 765454999, - "name": "Guider Aither", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2008", - "ct": 1727223721, - "d": 3, - "exp": 1190, - "g": 4, - "id": 765455465, - "name": "Crimson Armin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1110", - "ct": 1727227245, - "exp": 0, - "g": 5, - "id": 765537981, - "l": true, - "name": "Flan", - "opt": 1, - "st": 0, - "z": 1, - "stars": 5, - "awaken": 1 - }, - { - "code": "c2035", - "ct": 1727394517, - "exp": 1190, - "g": 4, - "id": 767590407, - "name": "General Purrgis", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1009", - "ct": 1727394592, - "exp": 0, - "g": 5, - "id": 767592356, - "name": "Charlotte", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1073", - "ct": 1727508027, - "exp": 0, - "g": 5, - "id": 769109420, - "l": true, - "name": "Kawerik", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2005", - "ct": 1727565708, - "exp": 1190, - "g": 4, - "id": 769782467, - "name": "Celestial Mercedes", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2031", - "ct": 1727565722, - "exp": 1190, - "g": 4, - "id": 769782856, - "name": "Auxiliary Lots", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1104", - "ct": 1727572976, - "d": 1, - "exp": 1384450, - "f": 1968, - "g": 6, - "id": 769932771, - "name": "Mort", - "opt": 3021, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1029", - "ct": 1727748919, - "exp": 0, - "g": 4, - "id": 771961989, - "name": "Leo", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c6011", - "ct": 1727924536, - "exp": 1190, - "g": 4, - "id": 774326816, - "name": "Last Piece Karin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1158", - "ct": 1727924557, - "exp": 13782, - "f": 9, - "g": 5, - "id": 774330313, - "name": "Fenris", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c3165", - "ct": 1728175276, - "d": 7, - "exp": 840, - "g": 3, - "id": 777665978, - "l": true, - "name": "Pernilla", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c2028", - "ct": 1728175279, - "exp": 1190, - "g": 4, - "id": 777666018, - "name": "Kitty Clarissa", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2101", - "ct": 1728175291, - "exp": 1384450, - "f": 1431, - "g": 6, - "id": 777666204, - "l": true, - "name": "Urban Shadow Choux", - "opt": 1, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2043", - "ct": 1728407903, - "exp": 1190, - "g": 4, - "id": 780423488, - "name": "Benevolent Romann", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2015", - "ct": 1728465216, - "exp": 1250, - "g": 5, - "id": 781143454, - "l": true, - "name": "Sage Baal & Sezan", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2072", - "ct": 1728465216, - "exp": 1250, - "g": 5, - "id": 781143455, - "l": true, - "name": "Operator Sigret", - "opt": 1, - "st": 0, - "z": 1, - "stars": 5, - "awaken": 1 - }, - { - "code": "c1079", - "ct": 1728483165, - "exp": 0, - "g": 5, - "id": 781345622, - "name": "Cermia", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2002", - "ct": 1728516235, - "exp": 1384450, - "f": 1184, - "g": 6, - "id": 781837305, - "l": true, - "name": "Fallen Cecilia", - "opt": 1, - "s": [ - 3, - 5, - 3 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2015", - "ct": 1728602465, - "exp": 1250, - "g": 5, - "id": 783871215, - "l": true, - "name": "Sage Baal & Sezan", - "opt": 1, - "st": 0, - "z": 1, - "stars": 5, - "awaken": 1 - }, - { - "code": "c1100", - "ct": 1728623353, - "d": 5, - "exp": 1384450, - "f": 2926, - "g": 6, - "id": 784315107, - "l": true, - "name": "Alencia", - "opt": 3021, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1048", - "ct": 1728634897, - "exp": 0, - "g": 5, - "id": 784460720, - "name": "Aramintha", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1003", - "ct": 1729055377, - "exp": 1190, - "g": 4, - "id": 788942610, - "name": "Rose", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1125", - "ct": 1729055386, - "exp": 1250, - "g": 5, - "id": 788942664, - "name": "Peira", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1160", - "ct": 1729055403, - "exp": 1250, - "g": 5, - "id": 788942790, - "name": "Birgitta", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1080", - "ct": 1729065887, - "exp": 1250, - "g": 5, - "id": 789011818, - "name": "Pavel", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2032", - "ct": 1729512823, - "d": 2, - "exp": 1190, - "g": 4, - "id": 792704116, - "name": "Fighter Maya", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2020", - "ct": 1729512857, - "exp": 1190, - "g": 4, - "id": 792704331, - "name": "Watcher Schuri", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1007", - "ct": 1729657821, - "d": 5, - "exp": 1384450, - "f": 1744, - "g": 6, - "id": 793619248, - "name": "Vildred", - "opt": 3001, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1038", - "ct": 1729921198, - "d": 2, - "exp": 1384450, - "f": 1512, - "g": 6, - "id": 795195383, - "l": true, - "name": "Sez", - "opt": 3021, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1096", - "ct": 1729921234, - "exp": 0, - "g": 5, - "id": 795195612, - "name": "Melissa", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c5110", - "ct": 1730352170, - "d": 5, - "exp": 1384450, - "f": 2568, - "g": 6, - "id": 798777729, - "l": true, - "name": "Afternoon Soak Flan", - "opt": 3021, - "s": [ - 5, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1153", - "ct": 1730386484, - "d": 1, - "exp": 1384450, - "f": 1566, - "g": 6, - "id": 799495489, - "l": true, - "name": "Harsetti", - "opt": 3021, - "s": [ - 7, - null, - 8 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1014", - "ct": 1730719416, - "exp": 1190, - "g": 4, - "id": 802066027, - "name": "Cidd", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2021", - "ct": 1730768489, - "exp": 1190, - "g": 4, - "id": 802422024, - "name": "Blaze Dingo", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1111", - "ct": 1731232616, - "exp": 1250, - "g": 5, - "id": 806245922, - "name": "Eda", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2013", - "ct": 1732608860, - "exp": 1190, - "g": 4, - "id": 816373029, - "name": "Assassin Cartuja", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1031", - "ct": 1732623781, - "d": 6, - "exp": 1190, - "g": 4, - "id": 816434203, - "l": true, - "name": "Lots", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2053", - "ct": 1733034882, - "exp": 1250, - "g": 5, - "id": 819542674, - "name": "Desert Jewel Basar", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c3160", - "ct": 1733189362, - "exp": 840, - "g": 3, - "id": 821096066, - "l": true, - "name": "Revna", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c2014", - "ct": 1733965880, - "exp": 1190, - "g": 4, - "id": 825069679, - "name": "Assassin Cidd", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1047", - "ct": 1733983381, - "exp": 1250, - "g": 5, - "id": 825212632, - "name": "Ken", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1015", - "ct": 1734059131, - "exp": 1250, - "g": 5, - "id": 825583290, - "name": "Baal & Sezan", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "a": true, - "code": "c1022", - "ct": 1735030551, - "exp": 1384450, - "f": 1503, - "g": 6, - "id": 829105288, - "l": true, - "name": "Ruele of Light", - "opt": 3001, - "s": [ - 4, - 5, - 2 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1162", - "ct": 1735198134, - "exp": 1384450, - "f": 537, - "g": 6, - "id": 830235768, - "l": true, - "name": "Young Senya", - "opt": 1, - "s": [ - null, - 5, - 4 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1102", - "ct": 1735371046, - "exp": 1250, - "g": 5, - "id": 831124668, - "name": "Roana", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1020", - "ct": 1735800397, - "d": 6, - "exp": 1190, - "g": 4, - "id": 832810039, - "name": "Schuri", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1095", - "ct": 1736613290, - "exp": 1250, - "g": 5, - "id": 837159170, - "name": "Lilibet", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1006", - "ct": 1736901651, - "exp": 0, - "g": 5, - "id": 839183431, - "name": "Kise", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1009", - "ct": 1737423137, - "exp": 0, - "g": 5, - "id": 841561890, - "name": "Charlotte", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2037", - "ct": 1737702815, - "exp": 1190, - "g": 4, - "id": 843031086, - "name": "Challenger Dominiel", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2036", - "ct": 1737803188, - "exp": 1190, - "g": 4, - "id": 843551487, - "name": "Troublemaker Crozet", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1053", - "ct": 1738044569, - "exp": 1250, - "g": 5, - "id": 844765495, - "name": "Basar", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2038", - "ct": 1738325778, - "exp": 1250, - "g": 5, - "id": 845965646, - "l": true, - "name": "Specimen Sez", - "opt": 1, - "st": 0, - "z": 1, - "stars": 5, - "awaken": 1 - }, - { - "code": "c6017", - "ct": 1738634839, - "exp": 1190, - "g": 4, - "id": 846980694, - "name": "Infinite Horizon Achates", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1054", - "ct": 1738637005, - "exp": 1190, - "g": 4, - "id": 846989211, - "name": "Rin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1170", - "ct": 1738811830, - "exp": 1384450, - "f": 3832, - "g": 6, - "id": 847822619, - "l": true, - "name": "Fenne", - "opt": 3001, - "s": [ - 5, - 3, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c6014", - "ct": 1738981000, - "exp": 1190, - "g": 4, - "id": 849101161, - "name": "Wandering Prince Cidd", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2086", - "ct": 1739326517, - "exp": 1190, - "g": 4, - "id": 850569245, - "name": "Great Chief Khawana", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1085", - "ct": 1739456625, - "exp": 0, - "g": 4, - "id": 851407497, - "name": "Khawazu", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2043", - "ct": 1739857998, - "exp": 1190, - "g": 4, - "id": 853072574, - "name": "Benevolent Romann", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2054", - "ct": 1740733905, - "exp": 1190, - "g": 4, - "id": 857679008, - "name": "Crescent Moon Rin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c5016", - "ct": 1741932122, - "exp": 1250, - "g": 5, - "id": 865374067, - "name": "Holiday Yufine", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1076", - "ct": 1742957662, - "exp": 0, - "g": 5, - "id": 870453193, - "l": true, - "name": "Diene", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2020", - "ct": 1743226650, - "exp": 1190, - "g": 4, - "id": 872420987, - "name": "Watcher Schuri", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2029", - "ct": 1743404217, - "exp": 1190, - "g": 4, - "id": 874113059, - "name": "Roaming Warrior Leo", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2012", - "ct": 1743468640, - "exp": 1250, - "g": 5, - "id": 874653614, - "name": "Dark Corvus", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1054", - "ct": 1744189225, - "exp": 0, - "g": 4, - "id": 880181269, - "name": "Rin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1006", - "ct": 1744189225, - "exp": 0, - "g": 5, - "id": 880181271, - "name": "Kise", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1003", - "ct": 1744189225, - "exp": 0, - "g": 4, - "id": 880181272, - "name": "Rose", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1010", - "ct": 1744189225, - "exp": 0, - "g": 4, - "id": 880181274, - "name": "Zerato", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1006", - "ct": 1744189225, - "exp": 0, - "g": 5, - "id": 880181276, - "name": "Kise", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1086", - "ct": 1744435669, - "exp": 1190, - "g": 4, - "id": 880781768, - "name": "Khawana", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1095", - "ct": 1745369706, - "exp": 1250, - "g": 5, - "id": 885173208, - "name": "Lilibet", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1166", - "ct": 1745646313, - "exp": 3180, - "g": 4, - "id": 887329296, - "name": "Victorika", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1032", - "ct": 1745801247, - "exp": 1190, - "g": 4, - "id": 888454074, - "name": "Maya", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c3006", - "ct": 1745802411, - "exp": 0, - "g": 3, - "id": 888466672, - "name": "Bask", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c3006", - "ct": 1745803071, - "exp": 0, - "g": 3, - "id": 888474090, - "name": "Bask", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c3006", - "ct": 1745803071, - "exp": 0, - "g": 3, - "id": 888474091, - "name": "Bask", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c3006", - "ct": 1745809525, - "exp": 0, - "g": 3, - "id": 888535983, - "name": "Bask", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c3006", - "ct": 1745809525, - "exp": 0, - "g": 3, - "id": 888535985, - "name": "Bask", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c3006", - "ct": 1745809525, - "exp": 0, - "g": 3, - "id": 888535988, - "name": "Bask", - "opt": 1, - "st": 0, - "stars": 3 - }, - { - "code": "c2015", - "ct": 1745974398, - "exp": 1250, - "g": 5, - "id": 889945456, - "name": "Sage Baal & Sezan", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1034", - "ct": 1746072744, - "d": 5, - "exp": 1384450, - "f": 2587, - "g": 6, - "id": 890790459, - "l": true, - "name": "Straze", - "opt": 3021, - "s": [ - 5, - 3, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1088", - "ct": 1746111807, - "exp": 0, - "g": 5, - "id": 891089072, - "name": "Vivian", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1007", - "ct": 1746189218, - "exp": 1250, - "g": 5, - "id": 891521755, - "name": "Vildred", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1031", - "ct": 1746241211, - "exp": 1190, - "g": 4, - "id": 891743321, - "name": "Lots", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2106", - "ct": 1746396462, - "d": 1, - "exp": 1384450, - "f": 1522, - "g": 6, - "id": 892353109, - "l": true, - "name": "Dragon Bride Senya", - "opt": 3021, - "s": [ - 4, - 1, - 7 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c2124", - "ct": 1746679162, - "d": 5, - "exp": 1384450, - "f": 714, - "g": 6, - "id": 893757497, - "l": true, - "name": "Boss Arunka", - "opt": 21, - "s": [ - 6, - 3, - 6 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1060", - "ct": 1746758209, - "exp": 1384450, - "f": 1, - "g": 6, - "id": 894623419, - "name": "Schniel", - "opt": 1, - "s": [ - null, - 1, - 1 - ], - "st": 0, - "z": 5, - "stars": 6, - "awaken": 5 - }, - { - "code": "c1072", - "ct": 1747006760, - "exp": 0, - "g": 5, - "id": 895661551, - "name": "Sigret", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1118", - "ct": 1747093837, - "exp": 1250, - "g": 5, - "id": 895977706, - "name": "Ran", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1168", - "ct": 1747311994, - "exp": 1384450, - "f": 432, - "g": 6, - "id": 897188455, - "l": true, - "name": "Rinak", - "opt": 1, - "s": [ - null, - 5, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c5004", - "ct": 1747608371, - "exp": 0, - "g": 5, - "id": 898222350, - "name": "Archdemon's Shadow", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c5070", - "ct": 1747887832, - "exp": 650125, - "f": 364, - "g": 5, - "id": 898971885, - "l": true, - "name": "Guard Captain Krau", - "opt": 1, - "st": 0, - "z": 1, - "stars": 5, - "awaken": 1 - }, - { - "code": "c5046", - "ct": 1747901013, - "exp": 1384450, - "f": 15, - "g": 6, - "id": 899011010, - "l": true, - "name": "Blooming Lidica", - "opt": 1, - "s": [ - 3, - 5, - 3 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c1097", - "ct": 1747993818, - "exp": 0, - "g": 5, - "id": 899502338, - "name": "Bomb Model Kanna", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1146", - "ct": 1747996839, - "exp": 1384450, - "f": 11, - "g": 6, - "id": 899521626, - "l": true, - "name": "Benimaru", - "opt": 1, - "s": [ - null, - 4, - 5 - ], - "st": 0, - "z": 6, - "stars": 6, - "awaken": 6 - }, - { - "code": "c6017", - "ct": 1748311835, - "exp": 1190, - "g": 4, - "id": 901890162, - "name": "Infinite Horizon Achates", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1012", - "ct": 1749028123, - "exp": 0, - "g": 4, - "id": 904716030, - "name": "Corvus", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1085", - "ct": 1749028123, - "exp": 0, - "g": 4, - "id": 904716031, - "name": "Khawazu", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1054", - "ct": 1749028123, - "exp": 0, - "g": 4, - "id": 904716033, - "name": "Rin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1085", - "ct": 1749028123, - "exp": 0, - "g": 4, - "id": 904716034, - "name": "Khawazu", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1099", - "ct": 1749028123, - "exp": 0, - "g": 5, - "id": 904716035, - "name": "Command Model Laika", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c1011", - "ct": 1749028123, - "exp": 0, - "g": 4, - "id": 904716036, - "name": "Karin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1008", - "ct": 1749028123, - "exp": 0, - "g": 4, - "id": 904716037, - "name": "Armin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1017", - "ct": 1749028123, - "exp": 0, - "g": 4, - "id": 904716038, - "name": "Achates", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1004", - "ct": 1749028123, - "exp": 0, - "g": 4, - "id": 904716039, - "name": "Silk", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1065", - "ct": 1749106956, - "exp": 1190, - "g": 4, - "id": 904970815, - "name": "Surin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1029", - "ct": 1749620335, - "exp": 1190, - "g": 4, - "id": 907241836, - "name": "Leo", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1065", - "ct": 1749775144, - "exp": 1190, - "g": 4, - "id": 908262329, - "name": "Surin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1085", - "ct": 1749869798, - "exp": 0, - "g": 4, - "id": 908791603, - "name": "Khawazu", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1004", - "ct": 1749870553, - "exp": 1190, - "g": 4, - "id": 908796189, - "name": "Silk", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2087", - "ct": 1749905167, - "exp": 1190, - "g": 4, - "id": 908941809, - "name": "Peacemaker Furious", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1028", - "ct": 1749908653, - "exp": 1190, - "g": 4, - "id": 908956490, - "name": "Clarissa", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1008", - "ct": 1750311172, - "exp": 0, - "g": 4, - "id": 910891387, - "name": "Armin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1035", - "ct": 1750311172, - "exp": 0, - "g": 4, - "id": 910891388, - "name": "Purrgis", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1003", - "ct": 1750311501, - "exp": 1190, - "g": 4, - "id": 910908244, - "name": "Rose", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1096", - "ct": 1750423108, - "exp": 1250, - "g": 5, - "id": 912409120, - "name": "Melissa", - "opt": 1, - "st": 0, - "stars": 5 - }, - { - "code": "c2087", - "ct": 1750483271, - "exp": 1190, - "g": 4, - "id": 912947591, - "name": "Peacemaker Furious", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1004", - "ct": 1750483271, - "exp": 1190, - "g": 4, - "id": 912947593, - "name": "Silk", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1013", - "ct": 1750735062, - "exp": 1190, - "g": 4, - "id": 914955758, - "name": "Cartuja", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1087", - "ct": 1750774024, - "exp": 0, - "g": 4, - "id": 915209641, - "name": "Furious", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1004", - "ct": 1750775239, - "exp": 1190, - "g": 4, - "id": 915219532, - "name": "Silk", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1011", - "ct": 1750945159, - "exp": 1190, - "g": 4, - "id": 916420780, - "name": "Karin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2004", - "ct": 1750945182, - "exp": 1190, - "g": 4, - "id": 916420883, - "name": "Wanderer Silk", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2036", - "ct": 1750945190, - "exp": 1190, - "g": 4, - "id": 916420926, - "name": "Troublemaker Crozet", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1065", - "ct": 1751125444, - "exp": 0, - "g": 4, - "id": 917396476, - "name": "Surin", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c2005", - "ct": 1751125478, - "exp": 1190, - "g": 4, - "id": 917396695, - "name": "Celestial Mercedes", - "opt": 1, - "st": 0, - "stars": 4 - }, - { - "code": "c1069", - "ct": 1751261450, - "exp": 0, - "g": 5, - "id": 918192152, - "name": "Ludwig", - "opt": 1, - "st": 0, - "stars": 5 - } - ] - ] -} \ No newline at end of file