diff --git a/Assets/Editor/GetServerTables.cs b/Assets/Editor/GetServerTables.cs index b22797d6a..baa3146d3 100644 --- a/Assets/Editor/GetServerTables.cs +++ b/Assets/Editor/GetServerTables.cs @@ -4,7 +4,6 @@ using System.Collections.Generic; using System.IO; using UnityEditor; using UnityEngine; -using UnityEngine.UIElements; public class GetServerTables { @@ -20,6 +19,7 @@ public class GetServerTables Get_ServerTable("GlobalValue", new List { "exception" }); Get_ServerTable("PetList", new List { "e_AttackType", "n_DefaultATK", "n_DefaultDEF", "n_DefaultM_DEF", "n_DefaultHP", "f_PetStatRate", "f_AttackRange", "s_PetAttackPrefab", "f_PetMoveSPD", "f_PetAttackSPD", "n_PetActiveSkill", "n_PetPassiveSkill", "s_PetPrefab", "f_Scale", "f_UIScale", "f_UIOffSet_y" }); Get_ServerTable("OptionConfig", new List { "e_OptionType", "f_ExtraValue1", "f_ExtraValue2", "f_ExtraValue3", "f_ExtraValue4" }); + Get_ServerTable("CollectionList", new List { "e_FirstRewardType", "n_FirstRewardValue", "n_FirstRewardCount", "e_RepeatRewardType", "n_RepeatRewardValue", "n_RepeatRewardCount" }); } static void Get_ServerTable(string path, List except) diff --git a/Assets/PlayFabEditorExtensions/Editor/Resources/.CloudScript.js b/Assets/PlayFabEditorExtensions/Editor/Resources/.CloudScript.js index 1cd91596a..ae773ab4a 100644 --- a/Assets/PlayFabEditorExtensions/Editor/Resources/.CloudScript.js +++ b/Assets/PlayFabEditorExtensions/Editor/Resources/.CloudScript.js @@ -1721,6 +1721,48 @@ handlers.Save_Relic_LvUp = function(args) return Get_Return(0); } } + +handlers.Save_Collection_GetAll = function(args) +{ + var readonlydata = Get_UserReadOnlyData(); + var error = Get_Error(readonlydata, args.Token); + if (error < 0) return Get_Return(error); + + var urod = Get_JsonUserData(readonlydata); + var colleciondatas = Get_CollectionTable().filter(f=>f.e_TargetCondition == args.Condition && + f.e_MenuCategory == args.Category); + var itemtable = Get_ItemTable(); + var table = Get_MissionTable(); + var isMob = args.Condition == "KillMonster"; + + var rtnadd = []; + for (var i = 0; i < colleciondatas.length; ++i) + { + var key = colleciondatas[i].n_TargetValue; + var amount = isMob ? (urod.MobKill[key] ?? 0) : Get_ItemAmount(urod, key); + if (amount >= colleciondatas[i].n_ConditionCount) + { + var count = parseInt(amount / colleciondatas[i].n_ConditionCount); + var useAmount = count * colleciondatas[i].n_ConditionCount; + if (isMob) urod.MobKill[key] -= useAmount; + else Use_Item(table, urod, key, useAmount); + rtnadd.push({ id : key, addvalue : count }); + + if (!urod.Collection[key]) urod.Collection[key] = count; + else urod.Collection[key] = Add_Amount(urod.Collection[key], count); + + Add_MissionCount(table, urod, "EQUIP_ENCYCLOPEDIA_REWARDS", 0, count); + Add_MissionCount(table, urod, "EQUIP_ENCYCLOPEDIA_REWARDS_ACC", 0, count); + } + } + + if (rtnadd.length > 0) + { + Set_JsonUserData(urod); + return Get_Return(0, { result : rtnadd }); + } + return Get_Return(1); +} /////////////////////////////////// 서버 처리 handlers.Write_UnityInApp = function(args) @@ -18926,6 +18968,2940 @@ function Get_RelicUpgradeCostTable() ] } +function Get_CollectionTable() +{ + return [ + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "101", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "102", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "103", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "104", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "105", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "106", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "107", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "108", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "109", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "110", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "111", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "112", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "113", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "114", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "115", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "116", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "117", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "118", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "119", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "120", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "121", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "122", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "123", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "124", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "125", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "126", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "127", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "128", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "129", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "130", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "131", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "132", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "133", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "134", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "135", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "136", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "137", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "138", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "139", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "140", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "141", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "142", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "143", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "144", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "145", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "146", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "147", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "148", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "149", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "150", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "151", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "152", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "153", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "154", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "155", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "156", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "157", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "158", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "159", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "160", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "161", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "162", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "163", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "164", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "165", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "166", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "167", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "168", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "169", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "170", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "171", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "172", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "173", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "174", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "175", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "176", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "177", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "178", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "179", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "180", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "181", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "182", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "183", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "184", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "185", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "186", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "187", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "188", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "189", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "190", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "191", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "192", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "193", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "194", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "195", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "196", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "197", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "198", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "199", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "200", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "201", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "202", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "203", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "204", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "205", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "206", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "207", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "208", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "209", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "210", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "211", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "212", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "213", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "214", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "215", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "216", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "217", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "218", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "219", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "220", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "221", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "222", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "223", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "224", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "225", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "226", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "227", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "228", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "229", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "230", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "231", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "232", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "233", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "234", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "235", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "236", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "237", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "238", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "239", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "240", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "241", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "242", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "243", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "244", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "245", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "246", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "247", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "248", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "249", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "250", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "251", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "252", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "253", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "254", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "255", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "256", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "257", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "258", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "259", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "260", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "261", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "262", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "263", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "264", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "265", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "266", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "267", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "268", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "269", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "270", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "271", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "272", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "273", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "274", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "275", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "276", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "277", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "278", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "279", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "280", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "281", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "282", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "283", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "284", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "285", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "286", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "287", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "288", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "289", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "290", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "291", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "292", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "293", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "294", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "295", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "296", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "297", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "298", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "299", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "300", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "301", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "302", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "303", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "304", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "305", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "306", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "307", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "308", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "309", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "310", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "311", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "312", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "313", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "314", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "315", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "316", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "317", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "318", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "319", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "320", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "321", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "322", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "323", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "324", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "325", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "326", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "327", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "328", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "329", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "330", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "331", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "332", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "333", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "334", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "335", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "336", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "337", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "338", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "339", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "340", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "341", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "342", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "343", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "344", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "345", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "346", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "347", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "348", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "349", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "350", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "351", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1001", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1002", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1003", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1004", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1005", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1006", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1007", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1008", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1009", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1010", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1011", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1012", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1013", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1014", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1015", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1016", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1017", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1018", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1019", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1020", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1021", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1022", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1023", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1024", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1025", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1026", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1027", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1028", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1029", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1030", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1031", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1032", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1033", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1034", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1035", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1036", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "10001", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "10002", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "10003", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "10004", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "10005", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "10006", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "10007", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "10008", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "10009", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "10010", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "10011", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "10012", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101001", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101002", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101003", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101004", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101005", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101006", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101007", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101008", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101009", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101010", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101011", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101012", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101013", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101014", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101015", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101016", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101017", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101018", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101019", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101020", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101021", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101022", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101023", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101024", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101025", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101026", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101027", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101028", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101029", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101030", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101031", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101032", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101033", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101034", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101035", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102001", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102002", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102003", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102004", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102005", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102006", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102007", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102008", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102009", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102010", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102011", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102012", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102013", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102014", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102015", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102016", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102017", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102018", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102019", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102020", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102021", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102022", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102023", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102024", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102025", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102026", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102027", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102028", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102029", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102030", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102031", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102032", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102033", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102034", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102035", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103001", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103002", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103003", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103004", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103005", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103006", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103007", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103008", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103009", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103010", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103011", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103012", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103013", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103014", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103015", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103016", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103017", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103018", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103019", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103020", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103021", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103022", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103023", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103024", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103025", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103026", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103027", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103028", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103029", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103030", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103031", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103032", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103033", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103034", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103035", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201001", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201002", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201003", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201004", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201005", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201006", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201007", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201008", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201009", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201010", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201011", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201012", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201013", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201014", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202001", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202002", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202003", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202004", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202005", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202006", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202007", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202008", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202009", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202010", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202011", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202012", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202013", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202014", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203001", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203002", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203003", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203004", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203005", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203006", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203007", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203008", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203009", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203010", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203011", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203012", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203013", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203014", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301001", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301002", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301003", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301004", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301005", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301006", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301007", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301008", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301009", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301010", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301011", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301012", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301013", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301014", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302001", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302002", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302003", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302004", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302005", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302006", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302007", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302008", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302009", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302010", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302011", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302012", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302013", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302014", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303001", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303002", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303003", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303004", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303005", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303006", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303007", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303008", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303009", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303010", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303011", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303012", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303013", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303014", + "n_ConditionCount": "6" + } + ] +} + diff --git a/Assets/ResWork/Table/Export/CollectionList.json b/Assets/ResWork/Table/Export/CollectionList.json index 991b1abc7..e84150d31 100644 --- a/Assets/ResWork/Table/Export/CollectionList.json +++ b/Assets/ResWork/Table/Export/CollectionList.json @@ -1 +1 @@ -[{"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "101", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "102", "n_ConditionCount": "11", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "103", "n_ConditionCount": "12", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "104", "n_ConditionCount": "13", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101001", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101002", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101003", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101004", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101005", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101006", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "6", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101007", "n_ConditionCount": "11", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "7", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "LUK_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101008", "n_ConditionCount": "12", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "8", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101009", "n_ConditionCount": "13", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "9", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101010", "n_ConditionCount": "14", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10110001", "n_ConditionCount": "12", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "8", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10110002", "n_ConditionCount": "13", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "9", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10110003", "n_ConditionCount": "14", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}] \ No newline at end of file +[{"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "101", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "102", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "103", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "104", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "105", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "106", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "107", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "108", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "109", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "110", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "111", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "112", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "113", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "114", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "115", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "116", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "117", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "118", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "119", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "120", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "121", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "122", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "123", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "124", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "125", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "126", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "127", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "128", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "129", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "130", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "131", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "132", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "133", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "134", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "135", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "136", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "137", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "138", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "139", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "140", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "141", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "142", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "143", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "144", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "145", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "146", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "147", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "148", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "149", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "150", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "151", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "152", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "153", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "154", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "155", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "156", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "157", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "158", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "159", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "160", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "161", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "162", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "163", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "164", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "165", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "166", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "167", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "168", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "169", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "170", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "171", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "172", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "173", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "174", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "175", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "176", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "177", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "178", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "179", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "180", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "181", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "182", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "183", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "184", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "185", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "186", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "187", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "188", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "189", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "190", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "191", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "192", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "193", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "194", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "195", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "196", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "197", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "198", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "199", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "200", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "201", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "202", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "203", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "204", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "205", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "206", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "207", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "208", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "209", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "210", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "211", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "212", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "213", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "214", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "215", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "216", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "217", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "218", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "219", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "220", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "221", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "222", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "223", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "224", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "225", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "226", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "227", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "228", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "229", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "230", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "231", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "232", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "233", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "234", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "235", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "236", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "237", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "238", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "239", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "240", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "241", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "242", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "243", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "244", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "245", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "246", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "247", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "248", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "249", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "250", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "251", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "252", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "253", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "254", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "255", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "256", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "257", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "258", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "259", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "260", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "261", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "262", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "263", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "264", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "265", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "266", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "267", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "268", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "269", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "270", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "271", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "272", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "273", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "274", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "275", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "276", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "277", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "278", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "279", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "280", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "281", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "282", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "283", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "284", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "285", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "286", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "287", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "288", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "289", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "290", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "291", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "292", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "293", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "294", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "295", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "296", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "297", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "298", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "299", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "300", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "301", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "302", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "303", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "304", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "305", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "306", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "307", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "308", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "309", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "310", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "311", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "312", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "313", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "314", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "315", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "316", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "317", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "318", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "319", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "320", "n_ConditionCount": "20", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "321", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "322", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "323", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "324", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "325", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "326", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "327", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "328", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "329", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "330", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "331", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "332", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "333", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "334", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "335", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "336", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "337", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "338", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "339", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "340", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "341", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "342", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "343", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "344", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "345", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "346", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "347", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "348", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "349", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "350", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "KillMonster", "n_TargetValue": "351", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1001", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1002", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1003", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1004", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1005", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1006", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1007", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1008", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1009", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1010", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1011", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1012", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1013", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1014", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1015", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1016", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1017", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1018", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1019", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1020", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1021", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1022", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1023", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1024", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1025", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1026", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1027", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1028", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1029", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1030", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1031", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1032", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1033", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1034", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1035", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "KillMonster", "n_TargetValue": "1036", "n_ConditionCount": "10", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "3", "e_TargetCondition": "KillMonster", "n_TargetValue": "10001", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "KillMonster", "n_TargetValue": "10002", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "3", "e_TargetCondition": "KillMonster", "n_TargetValue": "10003", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "KillMonster", "n_TargetValue": "10004", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "3", "e_TargetCondition": "KillMonster", "n_TargetValue": "10005", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "KillMonster", "n_TargetValue": "10006", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "3", "e_TargetCondition": "KillMonster", "n_TargetValue": "10007", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "KillMonster", "n_TargetValue": "10008", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "3", "e_TargetCondition": "KillMonster", "n_TargetValue": "10009", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "KillMonster", "n_TargetValue": "10010", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "3", "e_TargetCondition": "KillMonster", "n_TargetValue": "10011", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "KillMonster", "n_TargetValue": "10012", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "10", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "10"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101001", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101002", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101003", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101004", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101005", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101006", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101007", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101008", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101009", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101010", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101011", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101012", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101013", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101014", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101015", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101016", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101017", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101018", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101019", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101020", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101021", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101022", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101023", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101024", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101025", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101026", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101027", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101028", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101029", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101030", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101031", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101032", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101033", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101034", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10101035", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102001", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102002", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102003", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102004", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102005", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102006", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102007", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102008", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102009", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102010", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102011", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102012", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102013", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102014", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102015", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102016", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102017", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102018", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102019", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102020", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102021", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102022", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102023", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102024", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102025", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102026", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102027", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102028", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102029", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102030", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102031", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102032", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102033", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102034", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10102035", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103001", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103002", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103003", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103004", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103005", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103006", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103007", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103008", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103009", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103010", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103011", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103012", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103013", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103014", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103015", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103016", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103017", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103018", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103019", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103020", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103021", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103022", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103023", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103024", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103025", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103026", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103027", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103028", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103029", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103030", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103031", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103032", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103033", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103034", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "1", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10103035", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10201001", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10201002", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10201003", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10201004", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10201005", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10201006", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10201007", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10201008", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10201009", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10201010", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10201011", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10201012", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10201013", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10201014", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10202001", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10202002", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10202003", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10202004", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10202005", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10202006", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10202007", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10202008", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10202009", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10202010", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10202011", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10202012", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10202013", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10202014", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10203001", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10203002", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10203003", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10203004", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10203005", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10203006", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10203007", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10203008", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10203009", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10203010", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10203011", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10203012", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10203013", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "2", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10203014", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10301001", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10301002", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10301003", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10301004", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10301005", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10301006", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10301007", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10301008", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10301009", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10301010", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10301011", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10301012", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10301013", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10301014", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10302001", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10302002", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10302003", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10302004", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10302005", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10302006", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10302007", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10302008", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10302009", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10302010", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10302011", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10302012", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10302013", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10302014", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10303001", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10303002", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10303003", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10303004", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10303005", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10303006", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10303007", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10303008", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10303009", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10303010", "n_ConditionCount": "7", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "INT_ADD", "n_FirstRewardCount": "3", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "DEX_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10303011", "n_ConditionCount": "8", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "LUK_ADD", "n_FirstRewardCount": "4", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10303012", "n_ConditionCount": "9", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "5", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "INT_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10303013", "n_ConditionCount": "5", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "STR_ADD", "n_FirstRewardCount": "1", "e_RepeatRewardType": "STATS", "n_RepeatRewardValue": "STR_ADD", "n_RepeatRewardCount": "1"}, {"e_MenuCategory": "3", "e_TargetCondition": "TakeEquip", "n_TargetValue": "10303014", "n_ConditionCount": "6", "e_FirstRewardType": "STATS", "n_FirstRewardValue": "DEX_ADD", "n_FirstRewardCount": "2", "e_RepeatRewardType": "GOODS", "n_RepeatRewardValue": "ItemID", "n_RepeatRewardCount": "1"}] \ No newline at end of file diff --git a/Assets/ResWork/Table/Export/Localization.json b/Assets/ResWork/Table/Export/Localization.json index bce87d20c..4d43ab120 100644 --- a/Assets/ResWork/Table/Export/Localization.json +++ b/Assets/ResWork/Table/Export/Localization.json @@ -14,7 +14,7 @@ 나중에 다시 시도해주세요. {0}", "s_English": "", "exception": "sss"}, {"ID": "-1", "s_Korean": "경고!!! 라이브 서버에 접속합니다. 서버를 확인해 주세요.", "s_English": "경고!!! 라이브 서버에 접속합니다. -서버를 확인해 주세요.", "exception": "sss"}, {"ID": "999900000", "s_Korean": "개발 확인용\n서버에서 시간을 주지 않습니다.", "s_English": "", "exception": ""}, {"ID": "999900001", "s_Korean": "포인트가 부족합니다.", "s_English": "", "exception": ""}, {"ID": "999900002", "s_Korean": "잘못된 요청입니다.", "s_English": "", "exception": ""}, {"ID": "999900003", "s_Korean": "최대 레벨입니다.", "s_English": "", "exception": ""}, {"ID": "999900004", "s_Korean": "없는 id 입니다.", "s_English": "", "exception": ""}, {"ID": "999900005", "s_Korean": "글로벌 밸류에 없는 id 입니다.", "s_English": "", "exception": ""}, {"ID": "999900006", "s_Korean": "가지고 있는 직업입니다.", "s_English": "", "exception": ""}, {"ID": "999900007", "s_Korean": "선행 직업이 필요합니다.", "s_English": "", "exception": ""}, {"ID": "999900008", "s_Korean": "특성이 필요합니다.", "s_English": "", "exception": ""}, {"ID": "999900009", "s_Korean": "획득하지 않은 직업입니다.", "s_English": "", "exception": ""}, {"ID": "999900010", "s_Korean": "더 이상 초월할 수 없습니다.", "s_English": "", "exception": ""}, {"ID": "999900011", "s_Korean": "열린 슬롯이 없습니다.", "s_English": "", "exception": ""}, {"ID": "999900012", "s_Korean": "열린 슬롯이 아닙니다.", "s_English": "", "exception": ""}, {"ID": "999900013", "s_Korean": "제작할 수 없는 아이템입니다.", "s_English": "", "exception": ""}, {"ID": "999900014", "s_Korean": "없는 아이템입니다.", "s_English": "", "exception": ""}, {"ID": "999900015", "s_Korean": "이미 착용중인 아이템입니다.", "s_English": "", "exception": ""}, {"ID": "999900016", "s_Korean": "재료가 부족합니다.", "s_English": "", "exception": ""}, {"ID": "999900017", "s_Korean": "제련에 실패했습니다.", "s_English": "", "exception": ""}, {"ID": "999900018", "s_Korean": "분해 개수가 0 입니다.", "s_English": "", "exception": ""}, {"ID": "999900019", "s_Korean": "가진 갯수보다 분해 갯수가 많습니다.", "s_English": "", "exception": ""}, {"ID": "999900020", "s_Korean": "착용할 수 없는 아이템 파츠입니다.", "s_English": "", "exception": ""}, {"ID": "999900021", "s_Korean": "초기화로 돌려받을 재화가 없습니다.", "s_English": "", "exception": ""}, {"ID": "999900022", "s_Korean": "레벨 0 인챈트는 부여할 수 없습니다.", "s_English": "", "exception": ""}, {"ID": "999900023", "s_Korean": "획득하지 않은 스킬은 착용할 수 없습니다.", "s_English": "", "exception": ""}, {"ID": "999900024", "s_Korean": "더 이상 스킬 각성을 할 수 없습니다.", "s_English": "", "exception": ""}, {"ID": "999900025", "s_Korean": "각성을 할 수 없는 스킬입니다.", "s_English": "", "exception": ""}, {"ID": "999900026", "s_Korean": "광고 시간이 남았습니다.", "s_English": "", "exception": ""}, {"ID": "999900027", "s_Korean": "펫이 부족합니다.", "s_English": "", "exception": ""}, {"ID": "999900028", "s_Korean": "유물이 부족합니다.", "s_English": "", "exception": ""}, {"ID": "999900029", "s_Korean": "성급 돌파가 완료된 유물입니다.", "s_English": "", "exception": ""}, {"ID": "999900030", "s_Korean": "성급 돌파가 필요합니다.", "s_English": "", "exception": ""}, {"ID": "11001", "s_Korean": "인챈트 1", "s_English": "", "exception": ""}, {"ID": "11002", "s_Korean": "인챈트 2", "s_English": "", "exception": ""}, {"ID": "11003", "s_Korean": "인챈트 3", "s_English": "", "exception": ""}, {"ID": "11004", "s_Korean": "인챈트 4", "s_English": "", "exception": ""}, {"ID": "11005", "s_Korean": "인챈트 5", "s_English": "", "exception": ""}, {"ID": "11006", "s_Korean": "인챈트 6", "s_English": "", "exception": ""}, {"ID": "11007", "s_Korean": "인챈트 7", "s_English": "", "exception": ""}, {"ID": "11008", "s_Korean": "인챈트 8", "s_English": "", "exception": ""}, {"ID": "11009", "s_Korean": "인챈트 9", "s_English": "", "exception": ""}, {"ID": "11010", "s_Korean": "인챈트 10", "s_English": "", "exception": ""}, {"ID": "11011", "s_Korean": "인챈트 11", "s_English": "", "exception": ""}, {"ID": "11012", "s_Korean": "인챈트 12", "s_English": "", "exception": ""}, {"ID": "11013", "s_Korean": "인챈트 13", "s_English": "", "exception": ""}, {"ID": "11014", "s_Korean": "인챈트 14", "s_English": "", "exception": ""}, {"ID": "51001", "s_Korean": "Podol_D", "s_English": "", "exception": ""}, {"ID": "51002", "s_Korean": "Batty_A", "s_English": "", "exception": ""}, {"ID": "51003", "s_Korean": "Anto_A", "s_English": "", "exception": ""}, {"ID": "51004", "s_Korean": "Cute_Spider_A", "s_English": "", "exception": ""}, {"ID": "51005", "s_Korean": "Fire_Pig_A", "s_English": "", "exception": ""}, {"ID": "51006", "s_Korean": "Scopionto_A", "s_English": "", "exception": ""}, {"ID": "51007", "s_Korean": "Planta_Kid", "s_English": "", "exception": ""}, {"ID": "51008", "s_Korean": "Snailo_C", "s_English": "", "exception": ""}, {"ID": "51009", "s_Korean": "Planta_Slave", "s_English": "", "exception": ""}, {"ID": "51010", "s_Korean": "Turnipa_Sweet", "s_English": "", "exception": ""}, {"ID": "51011", "s_Korean": "Platopo_A", "s_English": "", "exception": ""}, {"ID": "51012", "s_Korean": "Racco_B", "s_English": "", "exception": ""}, {"ID": "51013", "s_Korean": "Fire_Pig_B2", "s_English": "", "exception": ""}, {"ID": "51014", "s_Korean": "Fire_Chick_A", "s_English": "", "exception": ""}, {"ID": "51015", "s_Korean": "Condore_B", "s_English": "", "exception": ""}, {"ID": "51016", "s_Korean": "Beez_Honey", "s_English": "", "exception": ""}, {"ID": "51017", "s_Korean": "Scarabro_A", "s_English": "", "exception": ""}, {"ID": "51018", "s_Korean": "Fire_Gazer_A", "s_English": "", "exception": ""}, {"ID": "51019", "s_Korean": "Cute_Starfish_D", "s_English": "", "exception": ""}, {"ID": "51020", "s_Korean": "Big_Boar_A", "s_English": "", "exception": ""}, {"ID": "51021", "s_Korean": "Brother_Penguin_A", "s_English": "", "exception": ""}, {"ID": "51022", "s_Korean": "Squif_B", "s_English": "", "exception": ""}, {"ID": "51023", "s_Korean": "Whispa_B", "s_English": "", "exception": ""}, {"ID": "51024", "s_Korean": "Cute_OctopusAc", "s_English": "", "exception": ""}, {"ID": "51025", "s_Korean": "Cute Butterfly_A", "s_English": "", "exception": ""}, {"ID": "51026", "s_Korean": "Puffe_A", "s_English": "", "exception": ""}, {"ID": "51027", "s_Korean": "Pota_D", "s_English": "", "exception": ""}, {"ID": "51028", "s_Korean": "Picoco_A", "s_English": "", "exception": ""}, {"ID": "51029", "s_Korean": "Ice_Bear_A", "s_English": "", "exception": ""}, {"ID": "51030", "s_Korean": "Rabby_Queen_White", "s_English": "", "exception": ""}, {"ID": "51031", "s_Korean": "Teruru_A", "s_English": "", "exception": ""}, {"ID": "51032", "s_Korean": "Teruru_Ba", "s_English": "", "exception": ""}, {"ID": "51033", "s_Korean": "Poho_D", "s_English": "", "exception": ""}, {"ID": "51034", "s_Korean": "Angez_A", "s_English": "", "exception": ""}, {"ID": "52001", "s_Korean": "펫1 설명", "s_English": "", "exception": ""}, {"ID": "52002", "s_Korean": "펫2 설명", "s_English": "", "exception": ""}, {"ID": "52003", "s_Korean": "펫3 설명", "s_English": "", "exception": ""}, {"ID": "52004", "s_Korean": "펫4 설명", "s_English": "", "exception": ""}, {"ID": "52005", "s_Korean": "펫5 설명", "s_English": "", "exception": ""}, {"ID": "52006", "s_Korean": "펫6 설명", "s_English": "", "exception": ""}, {"ID": "52007", "s_Korean": "펫7 설명", "s_English": "", "exception": ""}, {"ID": "52008", "s_Korean": "펫8 설명", "s_English": "", "exception": ""}, {"ID": "52009", "s_Korean": "펫9 설명", "s_English": "", "exception": ""}, {"ID": "52010", "s_Korean": "펫10 설명", "s_English": "", "exception": ""}, {"ID": "52011", "s_Korean": "펫11 설명", "s_English": "", "exception": ""}, {"ID": "52012", "s_Korean": "펫12 설명", "s_English": "", "exception": ""}, {"ID": "52013", "s_Korean": "펫13 설명", "s_English": "", "exception": ""}, {"ID": "52014", "s_Korean": "펫14 설명", "s_English": "", "exception": ""}, {"ID": "52015", "s_Korean": "펫15 설명", "s_English": "", "exception": ""}, {"ID": "52016", "s_Korean": "펫16 설명", "s_English": "", "exception": ""}, {"ID": "52017", "s_Korean": "펫17 설명", "s_English": "", "exception": ""}, {"ID": "52018", "s_Korean": "펫18 설명", "s_English": "", "exception": ""}, {"ID": "52019", "s_Korean": "펫19 설명", "s_English": "", "exception": ""}, {"ID": "52020", "s_Korean": "펫20 설명", "s_English": "", "exception": ""}, {"ID": "52021", "s_Korean": "펫21 설명", "s_English": "", "exception": ""}, {"ID": "52022", "s_Korean": "펫22 설명", "s_English": "", "exception": ""}, {"ID": "52023", "s_Korean": "펫23 설명", "s_English": "", "exception": ""}, {"ID": "52024", "s_Korean": "펫24 설명", "s_English": "", "exception": ""}, {"ID": "52025", "s_Korean": "펫25 설명", "s_English": "", "exception": ""}, {"ID": "52026", "s_Korean": "펫26 설명", "s_English": "", "exception": ""}, {"ID": "52027", "s_Korean": "펫27 설명", "s_English": "", "exception": ""}, {"ID": "52028", "s_Korean": "펫28 설명", "s_English": "", "exception": ""}, {"ID": "52029", "s_Korean": "펫29 설명", "s_English": "", "exception": ""}, {"ID": "52030", "s_Korean": "펫30 설명", "s_English": "", "exception": ""}, {"ID": "52031", "s_Korean": "펫31 설명", "s_English": "", "exception": ""}, {"ID": "52032", "s_Korean": "펫32 설명", "s_English": "", "exception": ""}, {"ID": "52033", "s_Korean": "펫33 설명", "s_English": "", "exception": ""}, {"ID": "52034", "s_Korean": "펫34 설명", "s_English": "", "exception": ""}, {"ID": "710001", "s_Korean": "초심자의 행운", "s_English": "얼음 화살", "exception": ""}, {"ID": "710002", "s_Korean": "약자 멸시", "s_English": "냉기 폭격", "exception": ""}, {"ID": "710003", "s_Korean": "가벼운 몸놀림", "s_English": "불 태우기", "exception": ""}, {"ID": "710004", "s_Korean": "마나 절약", "s_English": "폭탄 화살", "exception": ""}, {"ID": "710005", "s_Korean": "수호자의 인내", "s_English": "휘몰아치는 파도", "exception": ""}, {"ID": "710006", "s_Korean": "파괴 본능", "s_English": "돌개 바람", "exception": ""}, {"ID": "710007", "s_Korean": "검의 대가", "s_English": "화염구", "exception": ""}, {"ID": "710008", "s_Korean": "약점 공격", "s_English": "무력화", "exception": ""}, {"ID": "710009", "s_Korean": "현상금 사냥꾼", "s_English": "마나 폭발", "exception": ""}, {"ID": "710010", "s_Korean": "방어구 침투", "s_English": "화염 구슬", "exception": ""}, {"ID": "710011", "s_Korean": "마법의 대가", "s_English": "마력 분출", "exception": ""}, {"ID": "710012", "s_Korean": "행복한 유대", "s_English": "심판의 빛", "exception": ""}, {"ID": "711001", "s_Korean": "약점 공격", "s_English": "빙결 폭탄", "exception": ""}, {"ID": "711002", "s_Korean": "용사의 근성", "s_English": "단검 투척", "exception": ""}, {"ID": "711003", "s_Korean": "출혈", "s_English": "치유", "exception": ""}, {"ID": "711004", "s_Korean": "흡혈 공격", "s_English": "정령의 축복", "exception": ""}, {"ID": "711005", "s_Korean": "공격력 증가", "s_English": "프리즈", "exception": ""}, {"ID": "711006", "s_Korean": "생명력 강화", "s_English": "골렘 소환", "exception": ""}, {"ID": "711007", "s_Korean": "마력 강화", "s_English": "지렁이 소환", "exception": ""}, {"ID": "711008", "s_Korean": "스킬 효율 강화", "s_English": "마나 실드", "exception": ""}, {"ID": "711009", "s_Korean": "기절 공격", "s_English": "에너지볼 난사", "exception": ""}, {"ID": "711010", "s_Korean": "마나 흡수", "s_English": "꽃구경", "exception": ""}, {"ID": "711011", "s_Korean": "방어도 감소", "s_English": "소드 실드", "exception": ""}, {"ID": "711012", "s_Korean": "마법 침투", "s_English": "파이어 오브", "exception": ""}, {"ID": "711013", "s_Korean": "힘 증가", "s_English": "블리자드", "exception": ""}, {"ID": "711014", "s_Korean": "민첩 증가", "s_English": "헤비레인", "exception": ""}, {"ID": "711015", "s_Korean": "지능 증가", "s_English": "블랙홀", "exception": ""}, {"ID": "711016", "s_Korean": "행운 증가", "s_English": "메테오 스톰", "exception": ""}, {"ID": "711017", "s_Korean": "공속 증가", "s_English": "적에게 피해를 주고 서리 효과를 발생시킨다.", "exception": ""}, {"ID": "711018", "s_Korean": "이속 증가", "s_English": "공중에서 고드름이 떨어진다.", "exception": ""}, {"ID": "711019", "s_Korean": "관통력 증가", "s_English": "적을 즉시 불태워 일정 시간 피해를 입힌다.", "exception": ""}, {"ID": "711020", "s_Korean": "보스 피해 증가", "s_English": "피격 된 대상에게 피해를 주고, 피격 된 대상 주위 폭파 범위에 25%의 추가 범위 피해를 입힌다.", "exception": ""}, {"ID": "711021", "s_Korean": "일반몹 피해 증가", "s_English": "직선 상으로 물 폭발 일으키고, 적을 밀쳐낸다.", "exception": ""}, {"ID": "711022", "s_Korean": "황금 사냥꾼", "s_English": "전방으로 토네이도를 날려 적에게 피해를 입히고, 잠시 띄운다.", "exception": ""}, {"ID": "711023", "s_Korean": "스킬 소모량 감소", "s_English": "적에게 커다란 화염 불덩어를 발사해, 폭파할 때 주위에 범위 피해를 주고, 명중 된 모든 적을 불태운다.", "exception": ""}, {"ID": "711024", "s_Korean": "공격 사정거리 증가", "s_English": "적에게 저주를 걸어 공격 속도를 크게 감소 시킨다.", "exception": ""}, {"ID": "712001", "s_Korean": "얼음 화살", "s_English": "앙탈을 부려 주변을 폭발시키고, 범위 내 있는 적들을 적 방향 뒤로 민다.", "exception": ""}, {"ID": "712002", "s_Korean": "냉기 폭격", "s_English": "화염 구슬이 나아갔다 되돌아 오며 추가 피해를 입힌다.", "exception": ""}, {"ID": "712003", "s_Korean": "불 태우기", "s_English": "직선 거리를 관통하며 모든 적에게 피해를 입히는 레이져를 발사해 다단히트 피해를 입힌다.", "exception": ""}, {"ID": "712004", "s_Korean": "폭탄 화살", "s_English": "공중에서 심판의 빛을 소환해 피해를 연속 피해를 입힌다.", "exception": ""}, {"ID": "712005", "s_Korean": "휘몰아치는 파도", "s_English": "터지는 구슬을 적에게 쏘아보내며, 범위 안에 있는 모든 적을 동결 상태로 만들고 데미지를 준다.", "exception": ""}, {"ID": "712006", "s_Korean": "돌개 바람", "s_English": "단검을 던져 피해를 입힌다.", "exception": ""}, {"ID": "712007", "s_Korean": "화염구", "s_English": "즉시 생명력을 회복", "exception": ""}, {"ID": "712008", "s_Korean": "무력화", "s_English": "일정 시간 동안 파티 (영웅+펫)의 공격력이 증가", "exception": ""}, {"ID": "712009", "s_Korean": "마나 폭발", "s_English": "터지는 구슬을 적에게 쏘아보내며, 범위 안에 있는 모든 적을 동결 상태로 만들고 데미지를 준다.", "exception": ""}, {"ID": "712010", "s_Korean": "화염 구슬", "s_English": "애지중지 만들어 둔 골렘을 소환한다. 근접 공격을 한다. 소환 시 어그로를 끈다.", "exception": ""}, {"ID": "712011", "s_Korean": "마력 분출", "s_English": "애지중지 만들어 둔 지렁이를 소환한다. 원거리 공격을 한다.", "exception": ""}, {"ID": "712012", "s_Korean": "심판의 빛", "s_English": "하늘에서 조그만 운석을 떨어뜨려 범위 내의 적들을 타격한다.", "exception": ""}, {"ID": "712013", "s_Korean": "빙결 폭탄", "s_English": "아이스 오브를 머리 위에 소환하며, 오브로부터 많은 아이스 볼트가 생성된다. 아이스 볼트 마법에 영향받는다.", "exception": ""}, {"ID": "712014", "s_Korean": "단검 투척", "s_English": "적에게 정성껏 가꾼 화단을 소환한다. 근처 적들을 에어본시키며, 잠시 후 화단이 터지며 데미지를 입힌다.", "exception": ""}, {"ID": "712015", "s_Korean": "치유", "s_English": "헬파이어를 소환해 영향을 받은 적들에게 지속적으로 데미지를 주고, 적을 불태운다.", "exception": ""}, {"ID": "712016", "s_Korean": "정령의 축복", "s_English": "파이어 오브를 머리 위에 소환하며, 오브로부터 많은 파이어 볼트가 생성된다. 파이어 볼트 마법에 영향받는다.", "exception": ""}, {"ID": "713101", "s_Korean": "연속 베기", "s_English": "마녀 주위로 블리자드가 발동된다. 범위 내의 모든 적을 얼린다.", "exception": ""}, {"ID": "713102", "s_Korean": "회심의 일격", "s_English": "마녀 범위 내에 있는 적들에게 매직 미사일로 집중 포화한다.", "exception": ""}, {"ID": "713103", "s_Korean": "돌진 베기", "s_English": "마녀 주위로 블랙홀을 소환한다. 지속적으로 데미지를 주며, 적을 끌어당긴다.", "exception": ""}, {"ID": "713104", "s_Korean": "칼날 방패", "s_English": "넓은 범위에 메테오를 여러 개 떨어뜨린다.", "exception": ""}, {"ID": "713105", "s_Korean": "검기 분출", "s_English": "모험가 패시브 스킬", "exception": ""}, {"ID": "713106", "s_Korean": "무자비한 일격", "s_English": "모험가 패시브 스킬 설명", "exception": ""}, {"ID": "713201", "s_Korean": "휩쓸기 공격", "s_English": "데미지 증가", "exception": ""}, {"ID": "713202", "s_Korean": "급소 타격", "s_English": "고드름의 범위 증가", "exception": ""}, {"ID": "713203", "s_Korean": "죽음의 칼날", "s_English": "불태움 시간 증가", "exception": ""}, {"ID": "713204", "s_Korean": "그림자 베기", "s_English": "데미지 증가", "exception": ""}, {"ID": "713205", "s_Korean": "어둠의 습격", "s_English": "물폭발 5번으로 증가", "exception": ""}, {"ID": "713206", "s_Korean": "환영 난무", "s_English": "타격횟수 +2", "exception": ""}, {"ID": "713301", "s_Korean": "블랙홀", "s_English": "불덩어리 크기 증가\n데미지 증가", "exception": ""}, {"ID": "713302", "s_Korean": "마나 실드", "s_English": "5발로 증가", "exception": ""}, {"ID": "713303", "s_Korean": "에너지볼 난사", "s_English": "저주 범위 증가", "exception": ""}, {"ID": "713304", "s_Korean": "혹한의 눈보라", "s_English": "보스 몹 자동 타겟\n(좁은 범위)", "exception": ""}, {"ID": "713305", "s_Korean": "운석 소환", "s_English": "밀려나는 범위 증가", "exception": ""}, {"ID": "713306", "s_Korean": "번개 소용돌이", "s_English": "돌아올 때 데미지 증가", "exception": ""}, {"ID": "713307", "s_Korean": "악마의 꽃", "s_English": "데미지 증가", "exception": ""}, {"ID": "713308", "s_Korean": "지렁이 소환", "s_English": "지속시간 증가", "exception": ""}, {"ID": "713309", "s_Korean": "골렘 소환", "s_English": "주변의 적을 공격", "exception": ""}, {"ID": "713401", "s_Korean": "제멋대로 화살", "s_English": "생성되는 투사체 증가", "exception": ""}, {"ID": "713402", "s_Korean": "함정 설치", "s_English": "빙결 시간 증가", "exception": ""}, {"ID": "713403", "s_Korean": "속박의 화살", "s_English": "골렘 체력 증가", "exception": ""}, {"ID": "713404", "s_Korean": "다연발 화살", "s_English": "지렁이 공격력 증가", "exception": ""}, {"ID": "713405", "s_Korean": "속사", "s_English": "운석 크기 증가", "exception": ""}, {"ID": "713406", "s_Korean": "화살 비(화살비)", "s_English": "아이스 볼트 이동속도 증가", "exception": ""}, {"ID": "713501", "s_Korean": "간식 먹기", "s_English": "에어본 시간 증가", "exception": ""}, {"ID": "713502", "s_Korean": "방패 치기", "s_English": "범위 증가", "exception": ""}, {"ID": "713503", "s_Korean": "강력한 일격", "s_English": "파이어 볼트 이동속도 증가", "exception": ""}, {"ID": "713504", "s_Korean": "도발", "s_English": "지속시간 증가", "exception": ""}, {"ID": "713505", "s_Korean": "십자 가르기", "s_English": "매직 미사일 개수 증가", "exception": ""}, {"ID": "713506", "s_Korean": "무기 던지기", "s_English": "끌어당기는 범위 증가", "exception": ""}, {"ID": "713601", "s_Korean": "광폭화", "s_English": "운석 개수 증가", "exception": ""}, {"ID": "713602", "s_Korean": "대지 강타!", "s_English": "빙결 시간 증가", "exception": ""}, {"ID": "713603", "s_Korean": "칼날 폭풍", "s_English": "데미지 증가", "exception": ""}, {"ID": "720001", "s_Korean": "", "s_English": "불태움 시간 많이 증가", "exception": ""}, {"ID": "720002", "s_Korean": "", "s_English": "데미지 크게 증가", "exception": ""}, {"ID": "720003", "s_Korean": "", "s_English": "에어본 추가", "exception": ""}, {"ID": "720004", "s_Korean": "", "s_English": "데미지 증가", "exception": ""}, {"ID": "720005", "s_Korean": "", "s_English": "불덩어리가 폭발해\n주변 적을 불태움", "exception": ""}, {"ID": "720006", "s_Korean": "", "s_English": "관통효과", "exception": ""}, {"ID": "720007", "s_Korean": "", "s_English": "보스 몹 자동 타겟\n(넓은 범위)", "exception": ""}, {"ID": "720008", "s_Korean": "", "s_English": "투사체 이동속도 증가\n데미지 증가", "exception": ""}, {"ID": "720009", "s_Korean": "", "s_English": "데미지 증가", "exception": ""}, {"ID": "720010", "s_Korean": "", "s_English": "적중된 적을 불태움", "exception": ""}, {"ID": "720011", "s_Korean": "", "s_English": "폭발범위 증가", "exception": ""}, {"ID": "720012", "s_Korean": "", "s_English": "데미지 증가", "exception": ""}, {"ID": "721001", "s_Korean": "물리 치명타 피해량이 증가합니다.", "s_English": "보스 몹 자동 타겟\n(넓은 범위)", "exception": ""}, {"ID": "721002", "s_Korean": "체력이 일정 수치 이하일 때 생명 재생량과 물리 방어력 증가", "s_English": "투사체 증가\n투사체 이동속도 증가", "exception": ""}, {"ID": "721003", "s_Korean": "공격 시 출혈 발생 확률 추가", "s_English": "얼음 폭발 시간 단축", "exception": ""}, {"ID": "721004", "s_Korean": "적 처치 시 일정 확률로 생명력 회복", "s_English": "지속시간 증가", "exception": ""}, {"ID": "721005", "s_Korean": "플레이어의 공격력 증가", "s_English": "지속시간 증가", "exception": ""}, {"ID": "721006", "s_Korean": "플레이어의 최대 생명력 증가", "s_English": "데미지 증가", "exception": ""}, {"ID": "721007", "s_Korean": "플레이어의 최대 마력 증가", "s_English": "빙결 시간 증가", "exception": ""}, {"ID": "721008", "s_Korean": "스킬 효과 계수 증가", "s_English": "범위 증가", "exception": ""}, {"ID": "721009", "s_Korean": "공격 시 일정 확률로 기절 효과 발생", "s_English": "데미지 증가", "exception": ""}, {"ID": "721010", "s_Korean": "적 처치 시 마나 회복", "s_English": "파이어 볼트 개수 증가\n볼트 생성시간 단축", "exception": ""}, {"ID": "721011", "s_Korean": "공격 시 피격 된 적의 물리 방어력 감소", "s_English": "범위 증가", "exception": ""}, {"ID": "721012", "s_Korean": "공격 시 피격 된 적의 마법 방어력 감소", "s_English": "데미지 증가", "exception": ""}, {"ID": "721013", "s_Korean": "플레이어의 힘 스텟 증가", "s_English": "데미지 간격 좁아짐", "exception": ""}, {"ID": "721014", "s_Korean": "플레이어의 민첩 스텟 증가", "s_English": "운석 개수 많이 증가", "exception": ""}, {"ID": "721015", "s_Korean": "플레이어의 지능 스텟 증가", "s_English": "약점 공격", "exception": ""}, {"ID": "721016", "s_Korean": "플레이어의 행운 스텟 증가", "s_English": "용사의 근성", "exception": ""}, {"ID": "721017", "s_Korean": "공격 시 일정 확률로 공격 속도 증가", "s_English": "출혈", "exception": ""}, {"ID": "721018", "s_Korean": "공격 시 일정 확률로 이동 속도 증가", "s_English": "흡혈 공격", "exception": ""}, {"ID": "721019", "s_Korean": "공격 중 일정 확률로 관통력 증가 버프 발생 ", "s_English": "공격력 증가", "exception": ""}, {"ID": "721020", "s_Korean": "보스 타입에게 입히는 공격력 증가, 연산 시 추가 공격력 반영", "s_English": "생명력 강화", "exception": ""}, {"ID": "721021", "s_Korean": "일반 몬스터 공격 시 공격력 증가, 연산 시 추가 공격력 반영", "s_English": "마력 강화", "exception": ""}, {"ID": "721022", "s_Korean": "획득 골드 추가", "s_English": "스킬 효율 강화", "exception": ""}, {"ID": "721023", "s_Korean": "모든 스킬의 마나 소모량 감소", "s_English": "기절 공격", "exception": ""}, {"ID": "721024", "s_Korean": "기본 공격의 사정거리 증가", "s_English": "마나 흡수", "exception": ""}, {"ID": "722001", "s_Korean": "적에게 피해를 주고 서리 효과를 발생시킨다.", "s_English": "방어도 감소", "exception": ""}, {"ID": "722002", "s_Korean": "공중에서 고드름이 떨어진다.", "s_English": "마법 침투", "exception": ""}, {"ID": "722003", "s_Korean": "적을 즉시 불태워 일정 시간 피해를 입힌다.", "s_English": "힘 증가", "exception": ""}, {"ID": "722004", "s_Korean": "피격 된 대상에게 피해를 주고, 피격 된 대상 주위 폭파 범위에 25%의 추가 범위 피해를 입힌다.", "s_English": "민첩 증가", "exception": ""}, {"ID": "722005", "s_Korean": "직선 상으로 물 폭발 일으키고, 적을 밀쳐낸다.", "s_English": "지능 증가", "exception": ""}, {"ID": "722006", "s_Korean": "전방으로 토네이도를 날려 적에게 피해를 입히고, 잠시 띄운다.", "s_English": "행운 증가", "exception": ""}, {"ID": "722007", "s_Korean": "적에게 커다란 화염 불덩어를 발사해, 폭파할 때 주위에 범위 피해를 주고, 명중 된 모든 적을 불태운다.", "s_English": "공속 증가", "exception": ""}, {"ID": "722008", "s_Korean": "적에게 저주를 걸어 공격 속도를 크게 감소 시킨다.", "s_English": "이속 증가", "exception": ""}, {"ID": "722009", "s_Korean": "앙탈을 부려 주변을 폭발시키고, 범위 내 있는 적들을 적 방향 뒤로 민다.", "s_English": "관통력 증가", "exception": ""}, {"ID": "722010", "s_Korean": "화염 구슬이 나아갔다 되돌아 오며 추가 피해를 입힌다.", "s_English": "보스 피해 증가", "exception": ""}, {"ID": "722011", "s_Korean": "직선 거리를 관통하며 모든 적에게 피해를 입히는 레이져를 발사해 다단히트 피해를 입힌다.", "s_English": "일반몹 피해 증가", "exception": ""}, {"ID": "722012", "s_Korean": "공중에서 레이저로 적 1인을 집중 공격한다. → 공중에서 심판의 빛을 소환해 피해를 연속 피해를 입힌다. (※해비레인)", "s_English": "황금 사냥꾼", "exception": ""}, {"ID": "722013", "s_Korean": "터지는 구슬을 적에게 쏘아보내며, 범위 안에 있는 모든 적을 동결 상태로 만들고 데미지를 준다.", "s_English": "스킬 소모량 감소", "exception": ""}, {"ID": "722014", "s_Korean": "단검을 던져 피해를 입힌다.", "s_English": "공격 거리 증가", "exception": ""}, {"ID": "722015", "s_Korean": "즉시 생명력을 회복", "s_English": "치명타 피해량이 증가합니다.", "exception": ""}, {"ID": "722016", "s_Korean": "일정 시간 동안 파티의 공격력이 증가", "s_English": "버프 지속시간 체력 재생량과 방어력 증가", "exception": ""}, {"ID": "723101", "s_Korean": "매우 빠르게 연속 된 콤보 공격 형태의 동작으로 적에게 피해를 입힌다.", "s_English": "공격 시 출혈(도트 피해) 발생 확률 추가", "exception": ""}, {"ID": "723102", "s_Korean": "적을 무기로 강하게 내리치며 큰 피해를 입힌다.", "s_English": "적 처치 시 일정 확률로 생명력 회복", "exception": ""}, {"ID": "723103", "s_Korean": "타겟 된 적에게 매우 빠르게 돌진해 피해를 입히고, 잠시 기절시킨다.", "s_English": "플레이어의 공격력 증가", "exception": ""}, {"ID": "723104", "s_Korean": "캐릭터 주위를 맴도는 환영의 검을 소환해 주변 적들에게 지속적인 피해를 입힌다.", "s_English": "플레이어의 최대 생명력 증가", "exception": ""}, {"ID": "723105", "s_Korean": "반월형 검기를 날려 전방의 적들에게 피해를 입히며 날아간다.", "s_English": "플레이어의 최대 마력(MP) 증가", "exception": ""}, {"ID": "723106", "s_Korean": "전방으로 검기를 마구 난사하며 피해를 입힌다. (※관통하지 않고, 적에게 명중 시 소멸)", "s_English": "스킬 효과 계수 증가", "exception": ""}, {"ID": "723201", "s_Korean": "주변을 회전하며 주변 적들에게 범위 피해를 입힌다.", "s_English": "공격 시 일정 확률로 기절 효과 발생", "exception": ""}, {"ID": "723202", "s_Korean": "검으로 적을 찔러 높은 확률로 치명타 피해를 발생시키고, 출혈 효과를 일으킨다.", "s_English": "적 처치 시 마나 회복", "exception": ""}, {"ID": "723203", "s_Korean": "단검을 던져 명중 된 적에게 순간적 이동으로 나타나 공격하며 피해를 입히고, 잠시 기절 시킨다.", "s_English": "공격 시 피격 된 적의 방어력 감소 (누적 횟수 제한)", "exception": ""}, {"ID": "723204", "s_Korean": "적을 관통하며 순간 이동하며 지나온 경로의 모든 적에게 다단히트 피해를 발생시킨다.", "s_English": "공격 시 피격 된 적의 마법 방어력 감소 (누적 횟수 제한)", "exception": ""}, {"ID": "723205", "s_Korean": "환영의 그림자 형태로 주변 적들에게 콤보 피해를 입히고, 출혈 효과를 일으킨다.", "s_English": "플레이어의 힘 스텟 증가", "exception": ""}, {"ID": "723206", "s_Korean": "스킬 범위 내 적을 옮겨다니며, 큰 피해를 입히고, 옮겨 다닐 적이 없을 경우 스킬이 중단된다.", "s_English": "플레이어의 민첩 스텟 증가", "exception": ""}, {"ID": "723301", "s_Korean": "타격 된 적을 빨아들이며 다단 히트피해를 준 후 잠시 후 폭발하며 2차 피해를 입히는 블랙홀 소환", "s_English": "플레이어의 지능 스텟 증가", "exception": ""}, {"ID": "723302", "s_Korean": "발동 중 받는 피해를 마나로 대체", "s_English": "플레이어의 행운 스텟 증가", "exception": ""}, {"ID": "723303", "s_Korean": "여러개의 에너지 볼을 생성해 잠시 후 범위 내 적을 추적해 피해를 입히고, 대상이 적을 경우, 남은 에너지 볼을 집중 포화한다.", "s_English": "공격 시 일정 확률로 공격 속도 증가", "exception": ""}, {"ID": "723304", "s_Korean": "시전 된 범위에 강력한 눈보라를 생성해 지속적인 피해를 입히고, 피격 된 적의 이속과 공속을 낮춘다.", "s_English": "공격 시 일정 확률로 이동 속도 증가", "exception": ""}, {"ID": "723305", "s_Korean": "스킬 시전 범위 내 대상이 있던 위치에 떨어지는 메테오를 6개 소환해 피해를 입히고, 명중 된 타겟은 짧은 시간 기절 상태에 빠진다.", "s_English": "공격 중 일정 확률로 관통 피해량 버프 발생", "exception": ""}, {"ID": "723306", "s_Korean": "타겟 된 몬스터의 위치에 거대한 회오리 바람을 만들어 지속적인 피해를 입히고, 소멸하기 전까지 가장 가까운 다음 타겟을 추적하며 피해를 입히는 형태로 동작하는 데미지형 오브젝트 소환 스킬", "s_English": "보스 타입에게 입히는 최종 피해량 누적 증가 (누적 횟수 제한)", "exception": ""}, {"ID": "723307", "s_Korean": "주변에 개화하며 피해를 주며 적을 띄우고 잠시 후 폭파하며 피해를 주는 거대한 꽃을 소환한다.", "s_English": "일반 몬스터 타입에게 입히는 최종 피해량 누적 증가 (누적 횟수 제한)", "exception": ""}, {"ID": "723308", "s_Korean": "원거리 공격을 하는 소환물을 생성해 플레이어를 따라다니며 원거리 공격을 시도", "s_English": "획득 골드 추가", "exception": ""}, {"ID": "723309", "s_Korean": "근접 공격을 하는 소환물을 생성해 플레이어를 따라다니며, 근접 공격을 시도", "s_English": "모든 스킬의 마나 소모량 감소", "exception": ""}, {"ID": "723401", "s_Korean": "전방으로 빠르게 화살을 난사해 공격하며 피해를 입힐 수 있고, 움직이면서도 사용할 수 있다.", "s_English": "", "exception": ""}, {"ID": "723402", "s_Korean": "전방으로 함정을 설치해 닿은 대상이 있거나, 일정 시간 후 폭파하며 범위 피해를 입힐 수 있고, 폭탄이 던져진 상태에서 해당 스킬 아이콘을 한번 더 눌러 즉시 폭파시킬 수도 있다.", "s_English": "", "exception": ""}, {"ID": "723403", "s_Korean": "전방 부채꼴 방향으로 화살을 발사해 피해를 입히고, 명중 된 적의 이동 속도를 저하시킨다.", "s_English": "", "exception": ""}, {"ID": "723404", "s_Korean": "일정 시간 기본 공격의 투사체 수량이 증가하고, 방사형으로 발사되지만 피해량이 20% 감소", "s_English": "", "exception": ""}, {"ID": "723405", "s_Korean": "매우 빠르게 연속으로 화살을 발사해 피해를 입힌다.", "s_English": "", "exception": ""}, {"ID": "723406", "s_Korean": "하늘로 화살을 쏘아올려 주위 범위에 쏟아지는 화살로 다단 히트 화살 피해를 입힌다.", "s_English": "", "exception": ""}, {"ID": "723501", "s_Korean": "맛있는 디저트를 꺼내 먹고 생명력이 증가합니다.", "s_English": "", "exception": ""}, {"ID": "723502", "s_Korean": "방패를 휘둘러 피해를 입히고 적을 잠시 기절 시킵니다.", "s_English": "", "exception": ""}, {"ID": "723503", "s_Korean": "한손 무기를 강하게 내려치거나 올려치는 동작", "s_English": "", "exception": ""}, {"ID": "723504", "s_Korean": "적을 약올려 자신을 무조건 공격하게 하고, 도발에 빠진 적의 공격력과 방어력을 약화", "s_English": "", "exception": ""}, {"ID": "723505", "s_Korean": "십자 형태의 2회 연속 베기 공격으로 피해를 입힘", "s_English": "", "exception": ""}, {"ID": "723506", "s_Korean": "회전하는 환영 검을 던져 연속해서 피해를 입힌다.", "s_English": "", "exception": ""}, {"ID": "723601", "s_Korean": "광포화 모드에 빠져 치명타 확률과 공격 속도가 증가하고 크기가 커지지만 받는 피해가 증가한다.", "s_English": "", "exception": ""}, {"ID": "723602", "s_Korean": "양손 무기를 1초간 차징한 후 내리치며 지면을 타격해 넓은 범위에 큰 피해를 입힌다.", "s_English": "", "exception": ""}, {"ID": "723603", "s_Korean": "일정시간 양손 무기를 휘두르며 이동해 범위 내 적에게 피해를 입힌다.", "s_English": "", "exception": ""}, {"ID": "22101", "s_Korean": "개화1) 치명타 확률이 추가로 증가", "s_English": "", "exception": ""}, {"ID": "22102", "s_Korean": "개화1) 지속 시간 증가", "s_English": "", "exception": ""}, {"ID": "22103", "s_Korean": "개화1) 도트 피해량 증가", "s_English": "", "exception": ""}, {"ID": "22104", "s_Korean": "개화1) 발동 확률 증가", "s_English": "", "exception": ""}, {"ID": "22105", "s_Korean": "개화1) 공격력 증가량(%) 강화", "s_English": "", "exception": ""}, {"ID": "22106", "s_Korean": "개화1) 생명력 증가량(%) 강화", "s_English": "", "exception": ""}, {"ID": "22107", "s_Korean": "개화1) 마나 증가량(%) 강화", "s_English": "", "exception": ""}, {"ID": "22108", "s_Korean": "개화1) 스킬 치명타 확률 증가", "s_English": "", "exception": ""}, {"ID": "22109", "s_Korean": "개화1) 기절 시 추가 피해 발생", "s_English": "", "exception": ""}, {"ID": "22110", "s_Korean": "개화1) 발동 확률 증가", "s_English": "", "exception": ""}, {"ID": "22111", "s_Korean": "개화1) 누적 횟수 증가", "s_English": "", "exception": ""}, {"ID": "22112", "s_Korean": "개화1) 누적 횟수 증가", "s_English": "", "exception": ""}, {"ID": "22113", "s_Korean": "개화1) 힘 스텟 %증가", "s_English": "", "exception": ""}, {"ID": "22114", "s_Korean": "개화1) 민첩 스텟 %증가", "s_English": "", "exception": ""}, {"ID": "22115", "s_Korean": "개화1) 지능 스텟 %증가", "s_English": "", "exception": ""}, {"ID": "22116", "s_Korean": "개화1) 행운 스텟 %증가", "s_English": "", "exception": ""}, {"ID": "22117", "s_Korean": "개화1) 효과 지속 시간 증가", "s_English": "", "exception": ""}, {"ID": "22118", "s_Korean": "개화1) 효과 지속 시간 증가", "s_English": "", "exception": ""}, {"ID": "22119", "s_Korean": "개화1) 발동 확률 증가", "s_English": "", "exception": ""}, {"ID": "22120", "s_Korean": "개화1) 누적 횟수 증가", "s_English": "", "exception": ""}, {"ID": "22121", "s_Korean": "개화1) 누적 횟수 증가", "s_English": "", "exception": ""}, {"ID": "22122", "s_Korean": "개화1) 골드 획득량 증가", "s_English": "", "exception": ""}, {"ID": "22123", "s_Korean": "개화1) 마나 재생 증가", "s_English": "", "exception": ""}, {"ID": "22124", "s_Korean": "적 밀리는 거리 증가", "s_English": "", "exception": ""}, {"ID": "23101", "s_Korean": "개화2) 스킬 계수 증가(치명타 피해량)", "s_English": "", "exception": ""}, {"ID": "23102", "s_Korean": "개화2) 고정 피해 감소 증가", "s_English": "", "exception": ""}, {"ID": "23103", "s_Korean": "개화2) 도트 유지 시간 증가", "s_English": "", "exception": ""}, {"ID": "23104", "s_Korean": "개화2) 회복량 증가", "s_English": "", "exception": ""}, {"ID": "23105", "s_Korean": "개화2) 스킬 계수 증가", "s_English": "", "exception": ""}, {"ID": "23106", "s_Korean": "개화2) 스킬 계수 증가", "s_English": "", "exception": ""}, {"ID": "23107", "s_Korean": "개화2) 스킬 계수 증가", "s_English": "", "exception": ""}, {"ID": "23108", "s_Korean": "개화2) 스킬 치명타 피해량 증가", "s_English": "", "exception": ""}, {"ID": "23109", "s_Korean": "개화2) 기절 지속 시간 증가", "s_English": "", "exception": ""}, {"ID": "23110", "s_Korean": "개화2) 회복량 증가", "s_English": "", "exception": ""}, {"ID": "23111", "s_Korean": "개화2) 관통력 증가", "s_English": "", "exception": ""}, {"ID": "23112", "s_Korean": "개화2) 관통력 증가", "s_English": "", "exception": ""}, {"ID": "23113", "s_Korean": "개화2) 스킬 계수 증가", "s_English": "", "exception": ""}, {"ID": "23114", "s_Korean": "개화2) 스킬 계수 증가", "s_English": "", "exception": ""}, {"ID": "23115", "s_Korean": "개화2) 스킬 계수 증가", "s_English": "", "exception": ""}, {"ID": "23116", "s_Korean": "개화2) 스킬 계수 증가", "s_English": "", "exception": ""}, {"ID": "23117", "s_Korean": "개화2) 발동 확률 증가", "s_English": "", "exception": ""}, {"ID": "23118", "s_Korean": "개화2) 발동 확률 증가", "s_English": "", "exception": ""}, {"ID": "23119", "s_Korean": "개화2) 버프 유지시간 증가", "s_English": "", "exception": ""}, {"ID": "23120", "s_Korean": "개화2) 보스 공격 시 관통력 증가", "s_English": "", "exception": ""}, {"ID": "23121", "s_Korean": "개화2) 일반 몬스터 공격 시 관통력 증가", "s_English": "", "exception": ""}, {"ID": "23122", "s_Korean": "개화2) 경험치 획득량 증가", "s_English": "", "exception": ""}, {"ID": "23123", "s_Korean": "개화2) 마나 재생력(%) 증가", "s_English": "", "exception": ""}, {"ID": "23124", "s_Korean": "투사체 속도 증가", "s_English": "", "exception": ""}, {"ID": "24101", "s_Korean": "개화3) 치명타 공격 명중 시 관통력 적용", "s_English": "", "exception": ""}, {"ID": "24102", "s_Korean": "개화3) 받는 피해량 감소", "s_English": "", "exception": ""}, {"ID": "24103", "s_Korean": "개화3) 발생 확률 증가", "s_English": "", "exception": ""}, {"ID": "24104", "s_Korean": "개화3) 적 피격 시 발동 확률이 추가로 발생", "s_English": "", "exception": ""}, {"ID": "24105", "s_Korean": "개화3) 주 스텟당 공격력 증가량 상승", "s_English": "", "exception": ""}, {"ID": "24106", "s_Korean": "개화3) 모든 스텟당 생명력 증가 추가", "s_English": "", "exception": ""}, {"ID": "24107", "s_Korean": "개화3) 생명력의 일정 비율 만큼 마나가 증가", "s_English": "", "exception": ""}, {"ID": "24108", "s_Korean": "개화3) 주 스텟에 비례해 스킬 계수 추가 증가", "s_English": "", "exception": ""}, {"ID": "24109", "s_Korean": "개화3) 같은 대상 공격할 때마다 기절 확률 추가", "s_English": "", "exception": ""}, {"ID": "24110", "s_Korean": "개화3) 적 피격 시 발동 확률이 추가로 발생", "s_English": "", "exception": ""}, {"ID": "24111", "s_Korean": "개화3) 방어력 감소량 대폭 증가", "s_English": "", "exception": ""}, {"ID": "24112", "s_Korean": "개화3) 마법 저항력 감소량 대폭 증가", "s_English": "", "exception": ""}, {"ID": "24113", "s_Korean": "개화3) 나머지 스텟(민첩/지능/행운)의 일정 비율만큼 힘 증가", "s_English": "", "exception": ""}, {"ID": "24114", "s_Korean": "개화3) 나머지 스텟(힘/지능/행운)의 일정 비율만큼 민첩 증가", "s_English": "", "exception": ""}, {"ID": "24115", "s_Korean": "개화3) 나머지 스텟(힘/민첩/행운)의 일정 비율만큼 지능 증가", "s_English": "", "exception": ""}, {"ID": "24116", "s_Korean": "개화3) 나머지 스텟(힘/민첩/지능)의 일정 비율만큼 행운 증가", "s_English": "", "exception": ""}, {"ID": "24117", "s_Korean": "개화3) 기본 공격 속도 증가", "s_English": "", "exception": ""}, {"ID": "24118", "s_Korean": "개화3) 기본 이동 속도 증가", "s_English": "", "exception": ""}, {"ID": "24119", "s_Korean": "개화3) 관통력 크게 증가", "s_English": "", "exception": ""}, {"ID": "24120", "s_Korean": "개화3) 최종 피해량 크게 증가", "s_English": "", "exception": ""}, {"ID": "24121", "s_Korean": "개화3) 최종 피해량 크게 증가", "s_English": "", "exception": ""}, {"ID": "24122", "s_Korean": "개화3) 아이템 획득량 증가", "s_English": "", "exception": ""}, {"ID": "24123", "s_Korean": "개화3) 스킬 쿨타임 감소", "s_English": "", "exception": ""}, {"ID": "24124", "s_Korean": "투사체 크기 증가", "s_English": "", "exception": ""}, {"ID": "30001", "s_Korean": "일반", "s_English": "", "exception": ""}, {"ID": "30002", "s_Korean": "고급", "s_English": "", "exception": ""}, {"ID": "30003", "s_Korean": "희귀", "s_English": "", "exception": ""}, {"ID": "30004", "s_Korean": "영웅", "s_English": "", "exception": ""}, {"ID": "30005", "s_Korean": "전설", "s_English": "", "exception": ""}, {"ID": "30006", "s_Korean": "고대", "s_English": "", "exception": ""}, {"ID": "30007", "s_Korean": "신화", "s_English": "", "exception": ""}, {"ID": "30008", "s_Korean": "불멸", "s_English": "", "exception": ""}, {"ID": "30009", "s_Korean": "유일", "s_English": "", "exception": ""}, {"ID": "30101", "s_Korean": "무기", "s_English": "", "exception": ""}, {"ID": "30102", "s_Korean": "갑옷", "s_English": "", "exception": ""}, {"ID": "30103", "s_Korean": "장갑", "s_English": "", "exception": ""}, {"ID": "30104", "s_Korean": "신발", "s_English": "", "exception": ""}, {"ID": "30105", "s_Korean": "목걸이", "s_English": "", "exception": ""}, {"ID": "30106", "s_Korean": "반지", "s_English": "", "exception": ""}, {"ID": "40001", "s_Korean": "힘", "s_English": "", "exception": ""}, {"ID": "40002", "s_Korean": "힘 증가량", "s_English": "", "exception": ""}, {"ID": "40003", "s_Korean": "민첩", "s_English": "", "exception": ""}, {"ID": "40004", "s_Korean": "민첩 증가량", "s_English": "", "exception": ""}, {"ID": "40005", "s_Korean": "지능", "s_English": "", "exception": ""}, {"ID": "40006", "s_Korean": "지능 증가량", "s_English": "", "exception": ""}, {"ID": "40007", "s_Korean": "행운", "s_English": "", "exception": ""}, {"ID": "40008", "s_Korean": "행운 증가량", "s_English": "", "exception": ""}, {"ID": "40009", "s_Korean": "공격력", "s_English": "", "exception": ""}, {"ID": "40010", "s_Korean": "생명력", "s_English": "", "exception": ""}, {"ID": "40011", "s_Korean": "최대 생명력", "s_English": "", "exception": ""}, {"ID": "40012", "s_Korean": "물리 방어력", "s_English": "", "exception": ""}, {"ID": "40013", "s_Korean": "마법 저항력", "s_English": "", "exception": ""}, {"ID": "40014", "s_Korean": "공격력 증가량", "s_English": "", "exception": ""}, {"ID": "40015", "s_Korean": "생명력 증가량", "s_English": "", "exception": ""}, {"ID": "40016", "s_Korean": "방어력 증가량", "s_English": "", "exception": ""}, {"ID": "40017", "s_Korean": "마법 저항력 증가량", "s_English": "", "exception": ""}, {"ID": "40018", "s_Korean": "마나", "s_English": "", "exception": ""}, {"ID": "40019", "s_Korean": "최대 마나", "s_English": "", "exception": ""}, {"ID": "40020", "s_Korean": "마나 증가량", "s_English": "", "exception": ""}, {"ID": "40021", "s_Korean": "고정 피해", "s_English": "", "exception": ""}, {"ID": "40022", "s_Korean": "피해 감소", "s_English": "", "exception": ""}, {"ID": "40023", "s_Korean": "치명타 확률", "s_English": "", "exception": ""}, {"ID": "40024", "s_Korean": "치명타 데미지", "s_English": "", "exception": ""}, {"ID": "40025", "s_Korean": "마법 치명타 확률", "s_English": "", "exception": ""}, {"ID": "40026", "s_Korean": "마법 치명타 피해량", "s_English": "", "exception": ""}, {"ID": "40027", "s_Korean": "스킬 효과 증가량", "s_English": "", "exception": ""}, {"ID": "40028", "s_Korean": "스킬 쿨타임 감소량", "s_English": "", "exception": ""}, {"ID": "40029", "s_Korean": "공격속도", "s_English": "", "exception": ""}, {"ID": "40030", "s_Korean": "공격속도 증가량", "s_English": "", "exception": ""}, {"ID": "40031", "s_Korean": "이동속도", "s_English": "", "exception": ""}, {"ID": "40032", "s_Korean": "이동 속도 증가량", "s_English": "", "exception": ""}, {"ID": "40033", "s_Korean": "생명력 재생", "s_English": "", "exception": ""}, {"ID": "40034", "s_Korean": "마나 재생", "s_English": "", "exception": ""}, {"ID": "40035", "s_Korean": "생명력 재생력", "s_English": "", "exception": ""}, {"ID": "40036", "s_Korean": "마나 재생력", "s_English": "", "exception": ""}, {"ID": "40037", "s_Korean": "관통력", "s_English": "", "exception": ""}, {"ID": "40038", "s_Korean": "모든 피해량 증가", "s_English": "", "exception": ""}, {"ID": "40039", "s_Korean": "데미지 감소", "s_English": "", "exception": ""}, {"ID": "40040", "s_Korean": "골드 추가량", "s_English": "", "exception": ""}, {"ID": "40041", "s_Korean": "골드 획득량", "s_English": "", "exception": ""}, {"ID": "40042", "s_Korean": "경험치 획득률", "s_English": "", "exception": ""}, {"ID": "40043", "s_Korean": "아이템 획득 기회", "s_English": "", "exception": ""}, {"ID": "40044", "s_Korean": "공격 쿨타임", "s_English": "", "exception": ""}, {"ID": "40045", "s_Korean": "최종 데미지", "s_English": "", "exception": ""}, {"ID": "40046", "s_Korean": "최종 방어력", "s_English": "", "exception": ""}, {"ID": "40047", "s_Korean": "최종 마법 저항력", "s_English": "", "exception": ""}, {"ID": "40048", "s_Korean": "최종 체력 재생", "s_English": "", "exception": ""}, {"ID": "40049", "s_Korean": "최종 마나 재생", "s_English": "", "exception": ""}, {"ID": "40050", "s_Korean": "최종 공격속도", "s_English": "", "exception": ""}, {"ID": "40051", "s_Korean": "최종 이동속도", "s_English": "", "exception": ""}, {"ID": "40052", "s_Korean": "치명타 추가 관통력", "s_English": "", "exception": ""}, {"ID": "40053", "s_Korean": "용사의 근성 발동 HP%", "s_English": "", "exception": ""}, {"ID": "40054", "s_Korean": "용사의 근성 체력 재생력", "s_English": "", "exception": ""}, {"ID": "40055", "s_Korean": "용사의 근성 방어력", "s_English": "", "exception": ""}, {"ID": "40056", "s_Korean": "출혈확률", "s_English": "", "exception": ""}, {"ID": "40057", "s_Korean": "출혈 지속 시간", "s_English": "", "exception": ""}, {"ID": "40058", "s_Korean": "출혈 간격", "s_English": "", "exception": ""}, {"ID": "40059", "s_Korean": "출혈 데미지", "s_English": "", "exception": ""}, {"ID": "40060", "s_Korean": "적 처치 시, HP 흡수 확률", "s_English": "", "exception": ""}, {"ID": "40061", "s_Korean": "적 처치 시, HP 회복량", "s_English": "", "exception": ""}, {"ID": "40062", "s_Korean": "적 처치 시, MP 흡수 확률", "s_English": "", "exception": ""}, {"ID": "40063", "s_Korean": "적 처치 시, MP 회복량", "s_English": "", "exception": ""}, {"ID": "40064", "s_Korean": "기절 확률", "s_English": "", "exception": ""}, {"ID": "40065", "s_Korean": "기절 시간", "s_English": "", "exception": ""}, {"ID": "40066", "s_Korean": "기절 시 추가 피해", "s_English": "", "exception": ""}, {"ID": "40067", "s_Korean": "같은 대상 공격", "s_English": "", "exception": ""}, {"ID": "40068", "s_Korean": "방어력 감소값", "s_English": "", "exception": ""}, {"ID": "40069", "s_Korean": "방어력 감소 횟수 제한", "s_English": "", "exception": ""}, {"ID": "40070", "s_Korean": "방어력 감소 개화3 오픈 여부", "s_English": "", "exception": ""}, {"ID": "40071", "s_Korean": "마법저항력 감소값", "s_English": "", "exception": ""}, {"ID": "40072", "s_Korean": "마법저항력 감소 횟수 제한", "s_English": "", "exception": ""}, {"ID": "40073", "s_Korean": "마법저항력 감소 개화3 오픈 여부", "s_English": "", "exception": ""}, {"ID": "40074", "s_Korean": "공격 시 공속 증가 발동할 확률", "s_English": "", "exception": ""}, {"ID": "40075", "s_Korean": "공격 시 증가할 공속량", "s_English": "", "exception": ""}, {"ID": "40076", "s_Korean": "공격 시 공속이 증가할 시간", "s_English": "", "exception": ""}, {"ID": "40077", "s_Korean": "공격 시 이속 증가 발동할 확률", "s_English": "", "exception": ""}, {"ID": "40078", "s_Korean": "공격 시 증가할 이속량", "s_English": "", "exception": ""}, {"ID": "40079", "s_Korean": "공격 시 이속이 증가할 시간", "s_English": "", "exception": ""}, {"ID": "40080", "s_Korean": "공격 시 관통력 증가 버프가 발동할 확률", "s_English": "", "exception": ""}, {"ID": "40081", "s_Korean": "관통력 버프로 인한 추가 관통력 데미지", "s_English": "", "exception": ""}, {"ID": "40082", "s_Korean": "관통력 버프로 유지 시간", "s_English": "", "exception": ""}, {"ID": "40083", "s_Korean": "소모 MP 감소량", "s_English": "", "exception": ""}, {"ID": "40084", "s_Korean": "보스 데미지", "s_English": "", "exception": ""}, {"ID": "40085", "s_Korean": "보스몹 관통 데미지", "s_English": "", "exception": ""}, {"ID": "40086", "s_Korean": "보스 데미지 누적 제한", "s_English": "", "exception": ""}, {"ID": "40087", "s_Korean": "일반몹 데미지", "s_English": "", "exception": ""}, {"ID": "40088", "s_Korean": "보스몹 관통 데미지", "s_English": "", "exception": ""}, {"ID": "40089", "s_Korean": "일반몹 데미지 누적 제한", "s_English": "", "exception": ""}, {"ID": "40090", "s_Korean": "공격 사거리 증가", "s_English": "", "exception": ""}, {"ID": "40091", "s_Korean": "밀리는 거리 증가", "s_English": "", "exception": ""}, {"ID": "40092", "s_Korean": "투사체 속도 증가", "s_English": "", "exception": ""}, {"ID": "40093", "s_Korean": "투사체 크기 증가", "s_English": "", "exception": ""}, {"ID": "40094", "s_Korean": "모든 펫 스탯 증가량%", "s_English": "", "exception": ""}, {"ID": "40095", "s_Korean": "펫 공격력 증가%", "s_English": "", "exception": ""}, {"ID": "40096", "s_Korean": "펫 생명력 증가%", "s_English": "", "exception": ""}, {"ID": "40097", "s_Korean": "펫 물리 방어력 증가%", "s_English": "", "exception": ""}, {"ID": "40098", "s_Korean": "펫 마법 저항력 증가%", "s_English": "", "exception": ""}, {"ID": "40099", "s_Korean": "펫 스킬 쿨타임 감소%", "s_English": "", "exception": ""}, {"ID": "40100", "s_Korean": "짐꾼 이동 속도 증가%", "s_English": "", "exception": ""}, {"ID": "40101", "s_Korean": "임의의 스킬 레벨 증가+", "s_English": "", "exception": ""}, {"ID": "40102", "s_Korean": "모든 스킬 레벨 증가+", "s_English": "", "exception": ""}, {"ID": "40103", "s_Korean": "적 방어력 일정 수치만큼 무시(※감소 시킨 상태로 연산)", "s_English": "", "exception": ""}, {"ID": "40104", "s_Korean": "적 공격 시 주 스텟의 일정 비율만큼 적의 방어력 감소 (누적X)", "s_English": "", "exception": ""}, {"ID": "40105", "s_Korean": "적의 관통력에 대한 효과를 Multiplier 형태로 차감", "s_English": "", "exception": ""}, {"ID": "40106", "s_Korean": "받는 피해량 증가(%)하는 대신 모든 피해량 증가(%)", "s_English": "", "exception": ""}, {"ID": "40107", "s_Korean": "주 스텟비례 데미지", "s_English": "", "exception": ""}, {"ID": "40108", "s_Korean": "공격 시 일정 확률로 적 기절 및 힘에 비례한 피해 발생", "s_English": "", "exception": ""}, {"ID": "40109", "s_Korean": "공격 시 일정 확률로 민첩에 비례한 출혈 효과 발생", "s_English": "", "exception": ""}, {"ID": "40110", "s_Korean": "공격 시 일정 확률로 적 이동 속도 감소 시키고 지력에 비례한 피해 발생", "s_English": "", "exception": ""}, {"ID": "40111", "s_Korean": "기본 획득 골드가 증가하고, 적 공격 시 일정 확률로 행운에 비례한 %만큼 적에게 순수 피해를 입히는 효과가 발동", "s_English": "", "exception": ""}, {"ID": "40118", "s_Korean": "모든 능력치", "s_English": "", "exception": ""}, {"ID": "60001", "s_Korean": "농부1", "s_English": "", "exception": ""}, {"ID": "60002", "s_Korean": "농부2", "s_English": "", "exception": ""}, {"ID": "60003", "s_Korean": "농부3", "s_English": "", "exception": ""}, {"ID": "60004", "s_Korean": "농부4", "s_English": "", "exception": ""}, {"ID": "60005", "s_Korean": "농부5", "s_English": "", "exception": ""}, {"ID": "60006", "s_Korean": "농부6", "s_English": "", "exception": ""}, {"ID": "60007", "s_Korean": "농부7", "s_English": "", "exception": ""}, {"ID": "60008", "s_Korean": "농부8", "s_English": "", "exception": ""}, {"ID": "60009", "s_Korean": "농부9", "s_English": "", "exception": ""}, {"ID": "60010", "s_Korean": "농부10", "s_English": "", "exception": ""}, {"ID": "60011", "s_Korean": "농부11", "s_English": "", "exception": ""}, {"ID": "60012", "s_Korean": "농부12", "s_English": "", "exception": ""}, {"ID": "60013", "s_Korean": "농부13", "s_English": "", "exception": ""}, {"ID": "61001", "s_Korean": "농부 1 설명", "s_English": "", "exception": ""}, {"ID": "61002", "s_Korean": "농부 2 설명", "s_English": "", "exception": ""}, {"ID": "61003", "s_Korean": "농부 3 설명", "s_English": "", "exception": ""}, {"ID": "61004", "s_Korean": "농부 4 설명", "s_English": "", "exception": ""}, {"ID": "61005", "s_Korean": "농부 5 설명", "s_English": "", "exception": ""}, {"ID": "61006", "s_Korean": "농부 6 설명", "s_English": "", "exception": ""}, {"ID": "61007", "s_Korean": "농부 7 설명", "s_English": "", "exception": ""}, {"ID": "61008", "s_Korean": "농부 8 설명", "s_English": "", "exception": ""}, {"ID": "61009", "s_Korean": "농부 9 설명", "s_English": "", "exception": ""}, {"ID": "61010", "s_Korean": "농부 10 설명", "s_English": "", "exception": ""}, {"ID": "61011", "s_Korean": "농부 11 설명", "s_English": "", "exception": ""}, {"ID": "61012", "s_Korean": "농부 12 설명", "s_English": "", "exception": ""}, {"ID": "61013", "s_Korean": "농부 13 설명", "s_English": "", "exception": ""}, {"ID": "10101", "s_Korean": "풋내기 전사", "s_English": "", "exception": ""}, {"ID": "10102", "s_Korean": "마검사", "s_English": "", "exception": ""}, {"ID": "10201", "s_Korean": "블레이드 댄서", "s_English": "", "exception": ""}, {"ID": "10202", "s_Korean": "암살자", "s_English": "", "exception": ""}, {"ID": "10301", "s_Korean": "견습 마법사", "s_English": "", "exception": ""}, {"ID": "10302", "s_Korean": "숙련 마도사", "s_English": "", "exception": ""}, {"ID": "10303", "s_Korean": "소환사", "s_English": "", "exception": ""}, {"ID": "10401", "s_Korean": "견습 사냥꾼", "s_English": "", "exception": ""}, {"ID": "10402", "s_Korean": "궁수", "s_English": "", "exception": ""}, {"ID": "10501", "s_Korean": "모험가", "s_English": "", "exception": ""}, {"ID": "10502", "s_Korean": "수호 기사", "s_English": "", "exception": ""}, {"ID": "10601", "s_Korean": "워리어", "s_English": "", "exception": ""}, {"ID": "400001", "s_Korean": "유물1", "s_English": "", "exception": ""}, {"ID": "400002", "s_Korean": "유물2", "s_English": "", "exception": ""}, {"ID": "400003", "s_Korean": "유물3", "s_English": "", "exception": ""}, {"ID": "400004", "s_Korean": "유물4", "s_English": "", "exception": ""}, {"ID": "400005", "s_Korean": "유물5", "s_English": "", "exception": ""}, {"ID": "400006", "s_Korean": "유물6", "s_English": "", "exception": ""}, {"ID": "400007", "s_Korean": "유물7", "s_English": "", "exception": ""}, {"ID": "400008", "s_Korean": "유물8", "s_English": "", "exception": ""}, {"ID": "400009", "s_Korean": "유물9", "s_English": "", "exception": ""}, {"ID": "400010", "s_Korean": "유물10", "s_English": "", "exception": ""}, {"ID": "400011", "s_Korean": "유물11", "s_English": "", "exception": ""}, {"ID": "400012", "s_Korean": "유물12", "s_English": "", "exception": ""}, {"ID": "400013", "s_Korean": "유물13", "s_English": "", "exception": ""}, {"ID": "400014", "s_Korean": "유물14", "s_English": "", "exception": ""}, {"ID": "2000001", "s_Korean": "정수1", "s_English": "", "exception": ""}, {"ID": "2000002", "s_Korean": "정수2", "s_English": "", "exception": ""}, {"ID": "2000003", "s_Korean": "정수3", "s_English": "", "exception": ""}, {"ID": "2000004", "s_Korean": "정수4", "s_English": "", "exception": ""}, {"ID": "2000005", "s_Korean": "정수5", "s_English": "", "exception": ""}, {"ID": "2000006", "s_Korean": "정수6", "s_English": "", "exception": ""}, {"ID": "1", "s_Korean": "ID복사", "s_English": "ID복사", "exception": ""}, {"ID": "2", "s_Korean": "데미지 텍스트", "s_English": "", "exception": ""}, {"ID": "3", "s_Korean": "빛", "s_English": "", "exception": ""}, {"ID": "4", "s_Korean": "카메라 적 자동 추적", "s_English": "", "exception": ""}, {"ID": "5", "s_Korean": "알림", "s_English": "", "exception": ""}, {"ID": "6", "s_Korean": "알림(밤)", "s_English": "", "exception": ""}, {"ID": "7", "s_Korean": "그래픽", "s_English": "", "exception": ""}, {"ID": "8", "s_Korean": "상", "s_English": "", "exception": ""}, {"ID": "9", "s_Korean": "중", "s_English": "", "exception": ""}, {"ID": "10", "s_Korean": "하", "s_English": "", "exception": ""}, {"ID": "11", "s_Korean": "저장", "s_English": "", "exception": ""}, {"ID": "12", "s_Korean": "저장 후 종료", "s_English": "", "exception": ""}, {"ID": "13", "s_Korean": "문의하기", "s_English": "", "exception": ""}, {"ID": "14", "s_Korean": "개인정보보호", "s_English": "", "exception": ""}, {"ID": "15", "s_Korean": "최종사용자 사용권계약", "s_English": "", "exception": ""}, {"ID": "16", "s_Korean": "로그아웃", "s_English": "", "exception": ""}, {"ID": "17", "s_Korean": "계정삭제", "s_English": "", "exception": ""}, {"ID": "18", "s_Korean": "계정을 삭제합니다. +서버를 확인해 주세요.", "exception": "sss"}, {"ID": "999900000", "s_Korean": "개발 확인용\n서버에서 시간을 주지 않습니다.", "s_English": "", "exception": ""}, {"ID": "999900001", "s_Korean": "포인트가 부족합니다.", "s_English": "", "exception": ""}, {"ID": "999900002", "s_Korean": "잘못된 요청입니다.", "s_English": "", "exception": ""}, {"ID": "999900003", "s_Korean": "최대 레벨입니다.", "s_English": "", "exception": ""}, {"ID": "999900004", "s_Korean": "없는 id 입니다.", "s_English": "", "exception": ""}, {"ID": "999900005", "s_Korean": "글로벌 밸류에 없는 id 입니다.", "s_English": "", "exception": ""}, {"ID": "999900006", "s_Korean": "가지고 있는 직업입니다.", "s_English": "", "exception": ""}, {"ID": "999900007", "s_Korean": "선행 직업이 필요합니다.", "s_English": "", "exception": ""}, {"ID": "999900008", "s_Korean": "특성이 필요합니다.", "s_English": "", "exception": ""}, {"ID": "999900009", "s_Korean": "획득하지 않은 직업입니다.", "s_English": "", "exception": ""}, {"ID": "999900010", "s_Korean": "더 이상 초월할 수 없습니다.", "s_English": "", "exception": ""}, {"ID": "999900011", "s_Korean": "열린 슬롯이 없습니다.", "s_English": "", "exception": ""}, {"ID": "999900012", "s_Korean": "열린 슬롯이 아닙니다.", "s_English": "", "exception": ""}, {"ID": "999900013", "s_Korean": "제작할 수 없는 아이템입니다.", "s_English": "", "exception": ""}, {"ID": "999900014", "s_Korean": "없는 아이템입니다.", "s_English": "", "exception": ""}, {"ID": "999900015", "s_Korean": "이미 착용중인 아이템입니다.", "s_English": "", "exception": ""}, {"ID": "999900016", "s_Korean": "재료가 부족합니다.", "s_English": "", "exception": ""}, {"ID": "999900017", "s_Korean": "제련에 실패했습니다.", "s_English": "", "exception": ""}, {"ID": "999900018", "s_Korean": "분해 개수가 0 입니다.", "s_English": "", "exception": ""}, {"ID": "999900019", "s_Korean": "가진 갯수보다 분해 갯수가 많습니다.", "s_English": "", "exception": ""}, {"ID": "999900020", "s_Korean": "착용할 수 없는 아이템 파츠입니다.", "s_English": "", "exception": ""}, {"ID": "999900021", "s_Korean": "초기화로 돌려받을 재화가 없습니다.", "s_English": "", "exception": ""}, {"ID": "999900022", "s_Korean": "레벨 0 인챈트는 부여할 수 없습니다.", "s_English": "", "exception": ""}, {"ID": "999900023", "s_Korean": "획득하지 않은 스킬은 착용할 수 없습니다.", "s_English": "", "exception": ""}, {"ID": "999900024", "s_Korean": "더 이상 스킬 각성을 할 수 없습니다.", "s_English": "", "exception": ""}, {"ID": "999900025", "s_Korean": "각성을 할 수 없는 스킬입니다.", "s_English": "", "exception": ""}, {"ID": "999900026", "s_Korean": "광고 시간이 남았습니다.", "s_English": "", "exception": ""}, {"ID": "999900027", "s_Korean": "펫이 부족합니다.", "s_English": "", "exception": ""}, {"ID": "999900028", "s_Korean": "유물이 부족합니다.", "s_English": "", "exception": ""}, {"ID": "999900029", "s_Korean": "성급 돌파가 완료된 유물입니다.", "s_English": "", "exception": ""}, {"ID": "999900030", "s_Korean": "성급 돌파가 필요합니다.", "s_English": "", "exception": ""}, {"ID": "999900031", "s_Korean": "받을 수 있는 도감이 없습니다.", "s_English": "", "exception": ""}, {"ID": "11001", "s_Korean": "인챈트 1", "s_English": "", "exception": ""}, {"ID": "11002", "s_Korean": "인챈트 2", "s_English": "", "exception": ""}, {"ID": "11003", "s_Korean": "인챈트 3", "s_English": "", "exception": ""}, {"ID": "11004", "s_Korean": "인챈트 4", "s_English": "", "exception": ""}, {"ID": "11005", "s_Korean": "인챈트 5", "s_English": "", "exception": ""}, {"ID": "11006", "s_Korean": "인챈트 6", "s_English": "", "exception": ""}, {"ID": "11007", "s_Korean": "인챈트 7", "s_English": "", "exception": ""}, {"ID": "11008", "s_Korean": "인챈트 8", "s_English": "", "exception": ""}, {"ID": "11009", "s_Korean": "인챈트 9", "s_English": "", "exception": ""}, {"ID": "11010", "s_Korean": "인챈트 10", "s_English": "", "exception": ""}, {"ID": "11011", "s_Korean": "인챈트 11", "s_English": "", "exception": ""}, {"ID": "11012", "s_Korean": "인챈트 12", "s_English": "", "exception": ""}, {"ID": "11013", "s_Korean": "인챈트 13", "s_English": "", "exception": ""}, {"ID": "11014", "s_Korean": "인챈트 14", "s_English": "", "exception": ""}, {"ID": "51001", "s_Korean": "Podol_D", "s_English": "", "exception": ""}, {"ID": "51002", "s_Korean": "Batty_A", "s_English": "", "exception": ""}, {"ID": "51003", "s_Korean": "Anto_A", "s_English": "", "exception": ""}, {"ID": "51004", "s_Korean": "Cute_Spider_A", "s_English": "", "exception": ""}, {"ID": "51005", "s_Korean": "Fire_Pig_A", "s_English": "", "exception": ""}, {"ID": "51006", "s_Korean": "Scopionto_A", "s_English": "", "exception": ""}, {"ID": "51007", "s_Korean": "Planta_Kid", "s_English": "", "exception": ""}, {"ID": "51008", "s_Korean": "Snailo_C", "s_English": "", "exception": ""}, {"ID": "51009", "s_Korean": "Planta_Slave", "s_English": "", "exception": ""}, {"ID": "51010", "s_Korean": "Turnipa_Sweet", "s_English": "", "exception": ""}, {"ID": "51011", "s_Korean": "Platopo_A", "s_English": "", "exception": ""}, {"ID": "51012", "s_Korean": "Racco_B", "s_English": "", "exception": ""}, {"ID": "51013", "s_Korean": "Fire_Pig_B2", "s_English": "", "exception": ""}, {"ID": "51014", "s_Korean": "Fire_Chick_A", "s_English": "", "exception": ""}, {"ID": "51015", "s_Korean": "Condore_B", "s_English": "", "exception": ""}, {"ID": "51016", "s_Korean": "Beez_Honey", "s_English": "", "exception": ""}, {"ID": "51017", "s_Korean": "Scarabro_A", "s_English": "", "exception": ""}, {"ID": "51018", "s_Korean": "Fire_Gazer_A", "s_English": "", "exception": ""}, {"ID": "51019", "s_Korean": "Cute_Starfish_D", "s_English": "", "exception": ""}, {"ID": "51020", "s_Korean": "Big_Boar_A", "s_English": "", "exception": ""}, {"ID": "51021", "s_Korean": "Brother_Penguin_A", "s_English": "", "exception": ""}, {"ID": "51022", "s_Korean": "Squif_B", "s_English": "", "exception": ""}, {"ID": "51023", "s_Korean": "Whispa_B", "s_English": "", "exception": ""}, {"ID": "51024", "s_Korean": "Cute_OctopusAc", "s_English": "", "exception": ""}, {"ID": "51025", "s_Korean": "Cute Butterfly_A", "s_English": "", "exception": ""}, {"ID": "51026", "s_Korean": "Puffe_A", "s_English": "", "exception": ""}, {"ID": "51027", "s_Korean": "Pota_D", "s_English": "", "exception": ""}, {"ID": "51028", "s_Korean": "Picoco_A", "s_English": "", "exception": ""}, {"ID": "51029", "s_Korean": "Ice_Bear_A", "s_English": "", "exception": ""}, {"ID": "51030", "s_Korean": "Rabby_Queen_White", "s_English": "", "exception": ""}, {"ID": "51031", "s_Korean": "Teruru_A", "s_English": "", "exception": ""}, {"ID": "51032", "s_Korean": "Teruru_Ba", "s_English": "", "exception": ""}, {"ID": "51033", "s_Korean": "Poho_D", "s_English": "", "exception": ""}, {"ID": "51034", "s_Korean": "Angez_A", "s_English": "", "exception": ""}, {"ID": "52001", "s_Korean": "펫1 설명", "s_English": "", "exception": ""}, {"ID": "52002", "s_Korean": "펫2 설명", "s_English": "", "exception": ""}, {"ID": "52003", "s_Korean": "펫3 설명", "s_English": "", "exception": ""}, {"ID": "52004", "s_Korean": "펫4 설명", "s_English": "", "exception": ""}, {"ID": "52005", "s_Korean": "펫5 설명", "s_English": "", "exception": ""}, {"ID": "52006", "s_Korean": "펫6 설명", "s_English": "", "exception": ""}, {"ID": "52007", "s_Korean": "펫7 설명", "s_English": "", "exception": ""}, {"ID": "52008", "s_Korean": "펫8 설명", "s_English": "", "exception": ""}, {"ID": "52009", "s_Korean": "펫9 설명", "s_English": "", "exception": ""}, {"ID": "52010", "s_Korean": "펫10 설명", "s_English": "", "exception": ""}, {"ID": "52011", "s_Korean": "펫11 설명", "s_English": "", "exception": ""}, {"ID": "52012", "s_Korean": "펫12 설명", "s_English": "", "exception": ""}, {"ID": "52013", "s_Korean": "펫13 설명", "s_English": "", "exception": ""}, {"ID": "52014", "s_Korean": "펫14 설명", "s_English": "", "exception": ""}, {"ID": "52015", "s_Korean": "펫15 설명", "s_English": "", "exception": ""}, {"ID": "52016", "s_Korean": "펫16 설명", "s_English": "", "exception": ""}, {"ID": "52017", "s_Korean": "펫17 설명", "s_English": "", "exception": ""}, {"ID": "52018", "s_Korean": "펫18 설명", "s_English": "", "exception": ""}, {"ID": "52019", "s_Korean": "펫19 설명", "s_English": "", "exception": ""}, {"ID": "52020", "s_Korean": "펫20 설명", "s_English": "", "exception": ""}, {"ID": "52021", "s_Korean": "펫21 설명", "s_English": "", "exception": ""}, {"ID": "52022", "s_Korean": "펫22 설명", "s_English": "", "exception": ""}, {"ID": "52023", "s_Korean": "펫23 설명", "s_English": "", "exception": ""}, {"ID": "52024", "s_Korean": "펫24 설명", "s_English": "", "exception": ""}, {"ID": "52025", "s_Korean": "펫25 설명", "s_English": "", "exception": ""}, {"ID": "52026", "s_Korean": "펫26 설명", "s_English": "", "exception": ""}, {"ID": "52027", "s_Korean": "펫27 설명", "s_English": "", "exception": ""}, {"ID": "52028", "s_Korean": "펫28 설명", "s_English": "", "exception": ""}, {"ID": "52029", "s_Korean": "펫29 설명", "s_English": "", "exception": ""}, {"ID": "52030", "s_Korean": "펫30 설명", "s_English": "", "exception": ""}, {"ID": "52031", "s_Korean": "펫31 설명", "s_English": "", "exception": ""}, {"ID": "52032", "s_Korean": "펫32 설명", "s_English": "", "exception": ""}, {"ID": "52033", "s_Korean": "펫33 설명", "s_English": "", "exception": ""}, {"ID": "52034", "s_Korean": "펫34 설명", "s_English": "", "exception": ""}, {"ID": "710001", "s_Korean": "초심자의 행운", "s_English": "얼음 화살", "exception": ""}, {"ID": "710002", "s_Korean": "약자 멸시", "s_English": "냉기 폭격", "exception": ""}, {"ID": "710003", "s_Korean": "가벼운 몸놀림", "s_English": "불 태우기", "exception": ""}, {"ID": "710004", "s_Korean": "마나 절약", "s_English": "폭탄 화살", "exception": ""}, {"ID": "710005", "s_Korean": "수호자의 인내", "s_English": "휘몰아치는 파도", "exception": ""}, {"ID": "710006", "s_Korean": "파괴 본능", "s_English": "돌개 바람", "exception": ""}, {"ID": "710007", "s_Korean": "검의 대가", "s_English": "화염구", "exception": ""}, {"ID": "710008", "s_Korean": "약점 공격", "s_English": "무력화", "exception": ""}, {"ID": "710009", "s_Korean": "현상금 사냥꾼", "s_English": "마나 폭발", "exception": ""}, {"ID": "710010", "s_Korean": "방어구 침투", "s_English": "화염 구슬", "exception": ""}, {"ID": "710011", "s_Korean": "마법의 대가", "s_English": "마력 분출", "exception": ""}, {"ID": "710012", "s_Korean": "행복한 유대", "s_English": "심판의 빛", "exception": ""}, {"ID": "711001", "s_Korean": "약점 공격", "s_English": "빙결 폭탄", "exception": ""}, {"ID": "711002", "s_Korean": "용사의 근성", "s_English": "단검 투척", "exception": ""}, {"ID": "711003", "s_Korean": "출혈", "s_English": "치유", "exception": ""}, {"ID": "711004", "s_Korean": "흡혈 공격", "s_English": "정령의 축복", "exception": ""}, {"ID": "711005", "s_Korean": "공격력 증가", "s_English": "프리즈", "exception": ""}, {"ID": "711006", "s_Korean": "생명력 강화", "s_English": "골렘 소환", "exception": ""}, {"ID": "711007", "s_Korean": "마력 강화", "s_English": "지렁이 소환", "exception": ""}, {"ID": "711008", "s_Korean": "스킬 효율 강화", "s_English": "마나 실드", "exception": ""}, {"ID": "711009", "s_Korean": "기절 공격", "s_English": "에너지볼 난사", "exception": ""}, {"ID": "711010", "s_Korean": "마나 흡수", "s_English": "꽃구경", "exception": ""}, {"ID": "711011", "s_Korean": "방어도 감소", "s_English": "소드 실드", "exception": ""}, {"ID": "711012", "s_Korean": "마법 침투", "s_English": "파이어 오브", "exception": ""}, {"ID": "711013", "s_Korean": "힘 증가", "s_English": "블리자드", "exception": ""}, {"ID": "711014", "s_Korean": "민첩 증가", "s_English": "헤비레인", "exception": ""}, {"ID": "711015", "s_Korean": "지능 증가", "s_English": "블랙홀", "exception": ""}, {"ID": "711016", "s_Korean": "행운 증가", "s_English": "메테오 스톰", "exception": ""}, {"ID": "711017", "s_Korean": "공속 증가", "s_English": "적에게 피해를 주고 서리 효과를 발생시킨다.", "exception": ""}, {"ID": "711018", "s_Korean": "이속 증가", "s_English": "공중에서 고드름이 떨어진다.", "exception": ""}, {"ID": "711019", "s_Korean": "관통력 증가", "s_English": "적을 즉시 불태워 일정 시간 피해를 입힌다.", "exception": ""}, {"ID": "711020", "s_Korean": "보스 피해 증가", "s_English": "피격 된 대상에게 피해를 주고, 피격 된 대상 주위 폭파 범위에 25%의 추가 범위 피해를 입힌다.", "exception": ""}, {"ID": "711021", "s_Korean": "일반몹 피해 증가", "s_English": "직선 상으로 물 폭발 일으키고, 적을 밀쳐낸다.", "exception": ""}, {"ID": "711022", "s_Korean": "황금 사냥꾼", "s_English": "전방으로 토네이도를 날려 적에게 피해를 입히고, 잠시 띄운다.", "exception": ""}, {"ID": "711023", "s_Korean": "스킬 소모량 감소", "s_English": "적에게 커다란 화염 불덩어를 발사해, 폭파할 때 주위에 범위 피해를 주고, 명중 된 모든 적을 불태운다.", "exception": ""}, {"ID": "711024", "s_Korean": "공격 사정거리 증가", "s_English": "적에게 저주를 걸어 공격 속도를 크게 감소 시킨다.", "exception": ""}, {"ID": "712001", "s_Korean": "얼음 화살", "s_English": "앙탈을 부려 주변을 폭발시키고, 범위 내 있는 적들을 적 방향 뒤로 민다.", "exception": ""}, {"ID": "712002", "s_Korean": "냉기 폭격", "s_English": "화염 구슬이 나아갔다 되돌아 오며 추가 피해를 입힌다.", "exception": ""}, {"ID": "712003", "s_Korean": "불 태우기", "s_English": "직선 거리를 관통하며 모든 적에게 피해를 입히는 레이져를 발사해 다단히트 피해를 입힌다.", "exception": ""}, {"ID": "712004", "s_Korean": "폭탄 화살", "s_English": "공중에서 심판의 빛을 소환해 피해를 연속 피해를 입힌다.", "exception": ""}, {"ID": "712005", "s_Korean": "휘몰아치는 파도", "s_English": "터지는 구슬을 적에게 쏘아보내며, 범위 안에 있는 모든 적을 동결 상태로 만들고 데미지를 준다.", "exception": ""}, {"ID": "712006", "s_Korean": "돌개 바람", "s_English": "단검을 던져 피해를 입힌다.", "exception": ""}, {"ID": "712007", "s_Korean": "화염구", "s_English": "즉시 생명력을 회복", "exception": ""}, {"ID": "712008", "s_Korean": "무력화", "s_English": "일정 시간 동안 파티 (영웅+펫)의 공격력이 증가", "exception": ""}, {"ID": "712009", "s_Korean": "마나 폭발", "s_English": "터지는 구슬을 적에게 쏘아보내며, 범위 안에 있는 모든 적을 동결 상태로 만들고 데미지를 준다.", "exception": ""}, {"ID": "712010", "s_Korean": "화염 구슬", "s_English": "애지중지 만들어 둔 골렘을 소환한다. 근접 공격을 한다. 소환 시 어그로를 끈다.", "exception": ""}, {"ID": "712011", "s_Korean": "마력 분출", "s_English": "애지중지 만들어 둔 지렁이를 소환한다. 원거리 공격을 한다.", "exception": ""}, {"ID": "712012", "s_Korean": "심판의 빛", "s_English": "하늘에서 조그만 운석을 떨어뜨려 범위 내의 적들을 타격한다.", "exception": ""}, {"ID": "712013", "s_Korean": "빙결 폭탄", "s_English": "아이스 오브를 머리 위에 소환하며, 오브로부터 많은 아이스 볼트가 생성된다. 아이스 볼트 마법에 영향받는다.", "exception": ""}, {"ID": "712014", "s_Korean": "단검 투척", "s_English": "적에게 정성껏 가꾼 화단을 소환한다. 근처 적들을 에어본시키며, 잠시 후 화단이 터지며 데미지를 입힌다.", "exception": ""}, {"ID": "712015", "s_Korean": "치유", "s_English": "헬파이어를 소환해 영향을 받은 적들에게 지속적으로 데미지를 주고, 적을 불태운다.", "exception": ""}, {"ID": "712016", "s_Korean": "정령의 축복", "s_English": "파이어 오브를 머리 위에 소환하며, 오브로부터 많은 파이어 볼트가 생성된다. 파이어 볼트 마법에 영향받는다.", "exception": ""}, {"ID": "713101", "s_Korean": "연속 베기", "s_English": "마녀 주위로 블리자드가 발동된다. 범위 내의 모든 적을 얼린다.", "exception": ""}, {"ID": "713102", "s_Korean": "회심의 일격", "s_English": "마녀 범위 내에 있는 적들에게 매직 미사일로 집중 포화한다.", "exception": ""}, {"ID": "713103", "s_Korean": "돌진 베기", "s_English": "마녀 주위로 블랙홀을 소환한다. 지속적으로 데미지를 주며, 적을 끌어당긴다.", "exception": ""}, {"ID": "713104", "s_Korean": "칼날 방패", "s_English": "넓은 범위에 메테오를 여러 개 떨어뜨린다.", "exception": ""}, {"ID": "713105", "s_Korean": "검기 분출", "s_English": "모험가 패시브 스킬", "exception": ""}, {"ID": "713106", "s_Korean": "무자비한 일격", "s_English": "모험가 패시브 스킬 설명", "exception": ""}, {"ID": "713201", "s_Korean": "휩쓸기 공격", "s_English": "데미지 증가", "exception": ""}, {"ID": "713202", "s_Korean": "급소 타격", "s_English": "고드름의 범위 증가", "exception": ""}, {"ID": "713203", "s_Korean": "죽음의 칼날", "s_English": "불태움 시간 증가", "exception": ""}, {"ID": "713204", "s_Korean": "그림자 베기", "s_English": "데미지 증가", "exception": ""}, {"ID": "713205", "s_Korean": "어둠의 습격", "s_English": "물폭발 5번으로 증가", "exception": ""}, {"ID": "713206", "s_Korean": "환영 난무", "s_English": "타격횟수 +2", "exception": ""}, {"ID": "713301", "s_Korean": "블랙홀", "s_English": "불덩어리 크기 증가\n데미지 증가", "exception": ""}, {"ID": "713302", "s_Korean": "마나 실드", "s_English": "5발로 증가", "exception": ""}, {"ID": "713303", "s_Korean": "에너지볼 난사", "s_English": "저주 범위 증가", "exception": ""}, {"ID": "713304", "s_Korean": "혹한의 눈보라", "s_English": "보스 몹 자동 타겟\n(좁은 범위)", "exception": ""}, {"ID": "713305", "s_Korean": "운석 소환", "s_English": "밀려나는 범위 증가", "exception": ""}, {"ID": "713306", "s_Korean": "번개 소용돌이", "s_English": "돌아올 때 데미지 증가", "exception": ""}, {"ID": "713307", "s_Korean": "악마의 꽃", "s_English": "데미지 증가", "exception": ""}, {"ID": "713308", "s_Korean": "지렁이 소환", "s_English": "지속시간 증가", "exception": ""}, {"ID": "713309", "s_Korean": "골렘 소환", "s_English": "주변의 적을 공격", "exception": ""}, {"ID": "713401", "s_Korean": "제멋대로 화살", "s_English": "생성되는 투사체 증가", "exception": ""}, {"ID": "713402", "s_Korean": "함정 설치", "s_English": "빙결 시간 증가", "exception": ""}, {"ID": "713403", "s_Korean": "속박의 화살", "s_English": "골렘 체력 증가", "exception": ""}, {"ID": "713404", "s_Korean": "다연발 화살", "s_English": "지렁이 공격력 증가", "exception": ""}, {"ID": "713405", "s_Korean": "속사", "s_English": "운석 크기 증가", "exception": ""}, {"ID": "713406", "s_Korean": "화살 비(화살비)", "s_English": "아이스 볼트 이동속도 증가", "exception": ""}, {"ID": "713501", "s_Korean": "간식 먹기", "s_English": "에어본 시간 증가", "exception": ""}, {"ID": "713502", "s_Korean": "방패 치기", "s_English": "범위 증가", "exception": ""}, {"ID": "713503", "s_Korean": "강력한 일격", "s_English": "파이어 볼트 이동속도 증가", "exception": ""}, {"ID": "713504", "s_Korean": "도발", "s_English": "지속시간 증가", "exception": ""}, {"ID": "713505", "s_Korean": "십자 가르기", "s_English": "매직 미사일 개수 증가", "exception": ""}, {"ID": "713506", "s_Korean": "무기 던지기", "s_English": "끌어당기는 범위 증가", "exception": ""}, {"ID": "713601", "s_Korean": "광폭화", "s_English": "운석 개수 증가", "exception": ""}, {"ID": "713602", "s_Korean": "대지 강타!", "s_English": "빙결 시간 증가", "exception": ""}, {"ID": "713603", "s_Korean": "칼날 폭풍", "s_English": "데미지 증가", "exception": ""}, {"ID": "720001", "s_Korean": "", "s_English": "불태움 시간 많이 증가", "exception": ""}, {"ID": "720002", "s_Korean": "", "s_English": "데미지 크게 증가", "exception": ""}, {"ID": "720003", "s_Korean": "", "s_English": "에어본 추가", "exception": ""}, {"ID": "720004", "s_Korean": "", "s_English": "데미지 증가", "exception": ""}, {"ID": "720005", "s_Korean": "", "s_English": "불덩어리가 폭발해\n주변 적을 불태움", "exception": ""}, {"ID": "720006", "s_Korean": "", "s_English": "관통효과", "exception": ""}, {"ID": "720007", "s_Korean": "", "s_English": "보스 몹 자동 타겟\n(넓은 범위)", "exception": ""}, {"ID": "720008", "s_Korean": "", "s_English": "투사체 이동속도 증가\n데미지 증가", "exception": ""}, {"ID": "720009", "s_Korean": "", "s_English": "데미지 증가", "exception": ""}, {"ID": "720010", "s_Korean": "", "s_English": "적중된 적을 불태움", "exception": ""}, {"ID": "720011", "s_Korean": "", "s_English": "폭발범위 증가", "exception": ""}, {"ID": "720012", "s_Korean": "", "s_English": "데미지 증가", "exception": ""}, {"ID": "721001", "s_Korean": "물리 치명타 피해량이 증가합니다.", "s_English": "보스 몹 자동 타겟\n(넓은 범위)", "exception": ""}, {"ID": "721002", "s_Korean": "체력이 일정 수치 이하일 때 생명 재생량과 물리 방어력 증가", "s_English": "투사체 증가\n투사체 이동속도 증가", "exception": ""}, {"ID": "721003", "s_Korean": "공격 시 출혈 발생 확률 추가", "s_English": "얼음 폭발 시간 단축", "exception": ""}, {"ID": "721004", "s_Korean": "적 처치 시 일정 확률로 생명력 회복", "s_English": "지속시간 증가", "exception": ""}, {"ID": "721005", "s_Korean": "플레이어의 공격력 증가", "s_English": "지속시간 증가", "exception": ""}, {"ID": "721006", "s_Korean": "플레이어의 최대 생명력 증가", "s_English": "데미지 증가", "exception": ""}, {"ID": "721007", "s_Korean": "플레이어의 최대 마력 증가", "s_English": "빙결 시간 증가", "exception": ""}, {"ID": "721008", "s_Korean": "스킬 효과 계수 증가", "s_English": "범위 증가", "exception": ""}, {"ID": "721009", "s_Korean": "공격 시 일정 확률로 기절 효과 발생", "s_English": "데미지 증가", "exception": ""}, {"ID": "721010", "s_Korean": "적 처치 시 마나 회복", "s_English": "파이어 볼트 개수 증가\n볼트 생성시간 단축", "exception": ""}, {"ID": "721011", "s_Korean": "공격 시 피격 된 적의 물리 방어력 감소", "s_English": "범위 증가", "exception": ""}, {"ID": "721012", "s_Korean": "공격 시 피격 된 적의 마법 방어력 감소", "s_English": "데미지 증가", "exception": ""}, {"ID": "721013", "s_Korean": "플레이어의 힘 스텟 증가", "s_English": "데미지 간격 좁아짐", "exception": ""}, {"ID": "721014", "s_Korean": "플레이어의 민첩 스텟 증가", "s_English": "운석 개수 많이 증가", "exception": ""}, {"ID": "721015", "s_Korean": "플레이어의 지능 스텟 증가", "s_English": "약점 공격", "exception": ""}, {"ID": "721016", "s_Korean": "플레이어의 행운 스텟 증가", "s_English": "용사의 근성", "exception": ""}, {"ID": "721017", "s_Korean": "공격 시 일정 확률로 공격 속도 증가", "s_English": "출혈", "exception": ""}, {"ID": "721018", "s_Korean": "공격 시 일정 확률로 이동 속도 증가", "s_English": "흡혈 공격", "exception": ""}, {"ID": "721019", "s_Korean": "공격 중 일정 확률로 관통력 증가 버프 발생 ", "s_English": "공격력 증가", "exception": ""}, {"ID": "721020", "s_Korean": "보스 타입에게 입히는 공격력 증가, 연산 시 추가 공격력 반영", "s_English": "생명력 강화", "exception": ""}, {"ID": "721021", "s_Korean": "일반 몬스터 공격 시 공격력 증가, 연산 시 추가 공격력 반영", "s_English": "마력 강화", "exception": ""}, {"ID": "721022", "s_Korean": "획득 골드 추가", "s_English": "스킬 효율 강화", "exception": ""}, {"ID": "721023", "s_Korean": "모든 스킬의 마나 소모량 감소", "s_English": "기절 공격", "exception": ""}, {"ID": "721024", "s_Korean": "기본 공격의 사정거리 증가", "s_English": "마나 흡수", "exception": ""}, {"ID": "722001", "s_Korean": "적에게 피해를 주고 서리 효과를 발생시킨다.", "s_English": "방어도 감소", "exception": ""}, {"ID": "722002", "s_Korean": "공중에서 고드름이 떨어진다.", "s_English": "마법 침투", "exception": ""}, {"ID": "722003", "s_Korean": "적을 즉시 불태워 일정 시간 피해를 입힌다.", "s_English": "힘 증가", "exception": ""}, {"ID": "722004", "s_Korean": "피격 된 대상에게 피해를 주고, 피격 된 대상 주위 폭파 범위에 25%의 추가 범위 피해를 입힌다.", "s_English": "민첩 증가", "exception": ""}, {"ID": "722005", "s_Korean": "직선 상으로 물 폭발 일으키고, 적을 밀쳐낸다.", "s_English": "지능 증가", "exception": ""}, {"ID": "722006", "s_Korean": "전방으로 토네이도를 날려 적에게 피해를 입히고, 잠시 띄운다.", "s_English": "행운 증가", "exception": ""}, {"ID": "722007", "s_Korean": "적에게 커다란 화염 불덩어를 발사해, 폭파할 때 주위에 범위 피해를 주고, 명중 된 모든 적을 불태운다.", "s_English": "공속 증가", "exception": ""}, {"ID": "722008", "s_Korean": "적에게 저주를 걸어 공격 속도를 크게 감소 시킨다.", "s_English": "이속 증가", "exception": ""}, {"ID": "722009", "s_Korean": "앙탈을 부려 주변을 폭발시키고, 범위 내 있는 적들을 적 방향 뒤로 민다.", "s_English": "관통력 증가", "exception": ""}, {"ID": "722010", "s_Korean": "화염 구슬이 나아갔다 되돌아 오며 추가 피해를 입힌다.", "s_English": "보스 피해 증가", "exception": ""}, {"ID": "722011", "s_Korean": "직선 거리를 관통하며 모든 적에게 피해를 입히는 레이져를 발사해 다단히트 피해를 입힌다.", "s_English": "일반몹 피해 증가", "exception": ""}, {"ID": "722012", "s_Korean": "공중에서 레이저로 적 1인을 집중 공격한다. → 공중에서 심판의 빛을 소환해 피해를 연속 피해를 입힌다. (※해비레인)", "s_English": "황금 사냥꾼", "exception": ""}, {"ID": "722013", "s_Korean": "터지는 구슬을 적에게 쏘아보내며, 범위 안에 있는 모든 적을 동결 상태로 만들고 데미지를 준다.", "s_English": "스킬 소모량 감소", "exception": ""}, {"ID": "722014", "s_Korean": "단검을 던져 피해를 입힌다.", "s_English": "공격 거리 증가", "exception": ""}, {"ID": "722015", "s_Korean": "즉시 생명력을 회복", "s_English": "치명타 피해량이 증가합니다.", "exception": ""}, {"ID": "722016", "s_Korean": "일정 시간 동안 파티의 공격력이 증가", "s_English": "버프 지속시간 체력 재생량과 방어력 증가", "exception": ""}, {"ID": "723101", "s_Korean": "매우 빠르게 연속 된 콤보 공격 형태의 동작으로 적에게 피해를 입힌다.", "s_English": "공격 시 출혈(도트 피해) 발생 확률 추가", "exception": ""}, {"ID": "723102", "s_Korean": "적을 무기로 강하게 내리치며 큰 피해를 입힌다.", "s_English": "적 처치 시 일정 확률로 생명력 회복", "exception": ""}, {"ID": "723103", "s_Korean": "타겟 된 적에게 매우 빠르게 돌진해 피해를 입히고, 잠시 기절시킨다.", "s_English": "플레이어의 공격력 증가", "exception": ""}, {"ID": "723104", "s_Korean": "캐릭터 주위를 맴도는 환영의 검을 소환해 주변 적들에게 지속적인 피해를 입힌다.", "s_English": "플레이어의 최대 생명력 증가", "exception": ""}, {"ID": "723105", "s_Korean": "반월형 검기를 날려 전방의 적들에게 피해를 입히며 날아간다.", "s_English": "플레이어의 최대 마력(MP) 증가", "exception": ""}, {"ID": "723106", "s_Korean": "전방으로 검기를 마구 난사하며 피해를 입힌다. (※관통하지 않고, 적에게 명중 시 소멸)", "s_English": "스킬 효과 계수 증가", "exception": ""}, {"ID": "723201", "s_Korean": "주변을 회전하며 주변 적들에게 범위 피해를 입힌다.", "s_English": "공격 시 일정 확률로 기절 효과 발생", "exception": ""}, {"ID": "723202", "s_Korean": "검으로 적을 찔러 높은 확률로 치명타 피해를 발생시키고, 출혈 효과를 일으킨다.", "s_English": "적 처치 시 마나 회복", "exception": ""}, {"ID": "723203", "s_Korean": "단검을 던져 명중 된 적에게 순간적 이동으로 나타나 공격하며 피해를 입히고, 잠시 기절 시킨다.", "s_English": "공격 시 피격 된 적의 방어력 감소 (누적 횟수 제한)", "exception": ""}, {"ID": "723204", "s_Korean": "적을 관통하며 순간 이동하며 지나온 경로의 모든 적에게 다단히트 피해를 발생시킨다.", "s_English": "공격 시 피격 된 적의 마법 방어력 감소 (누적 횟수 제한)", "exception": ""}, {"ID": "723205", "s_Korean": "환영의 그림자 형태로 주변 적들에게 콤보 피해를 입히고, 출혈 효과를 일으킨다.", "s_English": "플레이어의 힘 스텟 증가", "exception": ""}, {"ID": "723206", "s_Korean": "스킬 범위 내 적을 옮겨다니며, 큰 피해를 입히고, 옮겨 다닐 적이 없을 경우 스킬이 중단된다.", "s_English": "플레이어의 민첩 스텟 증가", "exception": ""}, {"ID": "723301", "s_Korean": "타격 된 적을 빨아들이며 다단 히트피해를 준 후 잠시 후 폭발하며 2차 피해를 입히는 블랙홀 소환", "s_English": "플레이어의 지능 스텟 증가", "exception": ""}, {"ID": "723302", "s_Korean": "발동 중 받는 피해를 마나로 대체", "s_English": "플레이어의 행운 스텟 증가", "exception": ""}, {"ID": "723303", "s_Korean": "여러개의 에너지 볼을 생성해 잠시 후 범위 내 적을 추적해 피해를 입히고, 대상이 적을 경우, 남은 에너지 볼을 집중 포화한다.", "s_English": "공격 시 일정 확률로 공격 속도 증가", "exception": ""}, {"ID": "723304", "s_Korean": "시전 된 범위에 강력한 눈보라를 생성해 지속적인 피해를 입히고, 피격 된 적의 이속과 공속을 낮춘다.", "s_English": "공격 시 일정 확률로 이동 속도 증가", "exception": ""}, {"ID": "723305", "s_Korean": "스킬 시전 범위 내 대상이 있던 위치에 떨어지는 메테오를 6개 소환해 피해를 입히고, 명중 된 타겟은 짧은 시간 기절 상태에 빠진다.", "s_English": "공격 중 일정 확률로 관통 피해량 버프 발생", "exception": ""}, {"ID": "723306", "s_Korean": "타겟 된 몬스터의 위치에 거대한 회오리 바람을 만들어 지속적인 피해를 입히고, 소멸하기 전까지 가장 가까운 다음 타겟을 추적하며 피해를 입히는 형태로 동작하는 데미지형 오브젝트 소환 스킬", "s_English": "보스 타입에게 입히는 최종 피해량 누적 증가 (누적 횟수 제한)", "exception": ""}, {"ID": "723307", "s_Korean": "주변에 개화하며 피해를 주며 적을 띄우고 잠시 후 폭파하며 피해를 주는 거대한 꽃을 소환한다.", "s_English": "일반 몬스터 타입에게 입히는 최종 피해량 누적 증가 (누적 횟수 제한)", "exception": ""}, {"ID": "723308", "s_Korean": "원거리 공격을 하는 소환물을 생성해 플레이어를 따라다니며 원거리 공격을 시도", "s_English": "획득 골드 추가", "exception": ""}, {"ID": "723309", "s_Korean": "근접 공격을 하는 소환물을 생성해 플레이어를 따라다니며, 근접 공격을 시도", "s_English": "모든 스킬의 마나 소모량 감소", "exception": ""}, {"ID": "723401", "s_Korean": "전방으로 빠르게 화살을 난사해 공격하며 피해를 입힐 수 있고, 움직이면서도 사용할 수 있다.", "s_English": "", "exception": ""}, {"ID": "723402", "s_Korean": "전방으로 함정을 설치해 닿은 대상이 있거나, 일정 시간 후 폭파하며 범위 피해를 입힐 수 있고, 폭탄이 던져진 상태에서 해당 스킬 아이콘을 한번 더 눌러 즉시 폭파시킬 수도 있다.", "s_English": "", "exception": ""}, {"ID": "723403", "s_Korean": "전방 부채꼴 방향으로 화살을 발사해 피해를 입히고, 명중 된 적의 이동 속도를 저하시킨다.", "s_English": "", "exception": ""}, {"ID": "723404", "s_Korean": "일정 시간 기본 공격의 투사체 수량이 증가하고, 방사형으로 발사되지만 피해량이 20% 감소", "s_English": "", "exception": ""}, {"ID": "723405", "s_Korean": "매우 빠르게 연속으로 화살을 발사해 피해를 입힌다.", "s_English": "", "exception": ""}, {"ID": "723406", "s_Korean": "하늘로 화살을 쏘아올려 주위 범위에 쏟아지는 화살로 다단 히트 화살 피해를 입힌다.", "s_English": "", "exception": ""}, {"ID": "723501", "s_Korean": "맛있는 디저트를 꺼내 먹고 생명력이 증가합니다.", "s_English": "", "exception": ""}, {"ID": "723502", "s_Korean": "방패를 휘둘러 피해를 입히고 적을 잠시 기절 시킵니다.", "s_English": "", "exception": ""}, {"ID": "723503", "s_Korean": "한손 무기를 강하게 내려치거나 올려치는 동작", "s_English": "", "exception": ""}, {"ID": "723504", "s_Korean": "적을 약올려 자신을 무조건 공격하게 하고, 도발에 빠진 적의 공격력과 방어력을 약화", "s_English": "", "exception": ""}, {"ID": "723505", "s_Korean": "십자 형태의 2회 연속 베기 공격으로 피해를 입힘", "s_English": "", "exception": ""}, {"ID": "723506", "s_Korean": "회전하는 환영 검을 던져 연속해서 피해를 입힌다.", "s_English": "", "exception": ""}, {"ID": "723601", "s_Korean": "광포화 모드에 빠져 치명타 확률과 공격 속도가 증가하고 크기가 커지지만 받는 피해가 증가한다.", "s_English": "", "exception": ""}, {"ID": "723602", "s_Korean": "양손 무기를 1초간 차징한 후 내리치며 지면을 타격해 넓은 범위에 큰 피해를 입힌다.", "s_English": "", "exception": ""}, {"ID": "723603", "s_Korean": "일정시간 양손 무기를 휘두르며 이동해 범위 내 적에게 피해를 입힌다.", "s_English": "", "exception": ""}, {"ID": "22101", "s_Korean": "개화1) 치명타 확률이 추가로 증가", "s_English": "", "exception": ""}, {"ID": "22102", "s_Korean": "개화1) 지속 시간 증가", "s_English": "", "exception": ""}, {"ID": "22103", "s_Korean": "개화1) 도트 피해량 증가", "s_English": "", "exception": ""}, {"ID": "22104", "s_Korean": "개화1) 발동 확률 증가", "s_English": "", "exception": ""}, {"ID": "22105", "s_Korean": "개화1) 공격력 증가량(%) 강화", "s_English": "", "exception": ""}, {"ID": "22106", "s_Korean": "개화1) 생명력 증가량(%) 강화", "s_English": "", "exception": ""}, {"ID": "22107", "s_Korean": "개화1) 마나 증가량(%) 강화", "s_English": "", "exception": ""}, {"ID": "22108", "s_Korean": "개화1) 스킬 치명타 확률 증가", "s_English": "", "exception": ""}, {"ID": "22109", "s_Korean": "개화1) 기절 시 추가 피해 발생", "s_English": "", "exception": ""}, {"ID": "22110", "s_Korean": "개화1) 발동 확률 증가", "s_English": "", "exception": ""}, {"ID": "22111", "s_Korean": "개화1) 누적 횟수 증가", "s_English": "", "exception": ""}, {"ID": "22112", "s_Korean": "개화1) 누적 횟수 증가", "s_English": "", "exception": ""}, {"ID": "22113", "s_Korean": "개화1) 힘 스텟 %증가", "s_English": "", "exception": ""}, {"ID": "22114", "s_Korean": "개화1) 민첩 스텟 %증가", "s_English": "", "exception": ""}, {"ID": "22115", "s_Korean": "개화1) 지능 스텟 %증가", "s_English": "", "exception": ""}, {"ID": "22116", "s_Korean": "개화1) 행운 스텟 %증가", "s_English": "", "exception": ""}, {"ID": "22117", "s_Korean": "개화1) 효과 지속 시간 증가", "s_English": "", "exception": ""}, {"ID": "22118", "s_Korean": "개화1) 효과 지속 시간 증가", "s_English": "", "exception": ""}, {"ID": "22119", "s_Korean": "개화1) 발동 확률 증가", "s_English": "", "exception": ""}, {"ID": "22120", "s_Korean": "개화1) 누적 횟수 증가", "s_English": "", "exception": ""}, {"ID": "22121", "s_Korean": "개화1) 누적 횟수 증가", "s_English": "", "exception": ""}, {"ID": "22122", "s_Korean": "개화1) 골드 획득량 증가", "s_English": "", "exception": ""}, {"ID": "22123", "s_Korean": "개화1) 마나 재생 증가", "s_English": "", "exception": ""}, {"ID": "22124", "s_Korean": "적 밀리는 거리 증가", "s_English": "", "exception": ""}, {"ID": "23101", "s_Korean": "개화2) 스킬 계수 증가(치명타 피해량)", "s_English": "", "exception": ""}, {"ID": "23102", "s_Korean": "개화2) 고정 피해 감소 증가", "s_English": "", "exception": ""}, {"ID": "23103", "s_Korean": "개화2) 도트 유지 시간 증가", "s_English": "", "exception": ""}, {"ID": "23104", "s_Korean": "개화2) 회복량 증가", "s_English": "", "exception": ""}, {"ID": "23105", "s_Korean": "개화2) 스킬 계수 증가", "s_English": "", "exception": ""}, {"ID": "23106", "s_Korean": "개화2) 스킬 계수 증가", "s_English": "", "exception": ""}, {"ID": "23107", "s_Korean": "개화2) 스킬 계수 증가", "s_English": "", "exception": ""}, {"ID": "23108", "s_Korean": "개화2) 스킬 치명타 피해량 증가", "s_English": "", "exception": ""}, {"ID": "23109", "s_Korean": "개화2) 기절 지속 시간 증가", "s_English": "", "exception": ""}, {"ID": "23110", "s_Korean": "개화2) 회복량 증가", "s_English": "", "exception": ""}, {"ID": "23111", "s_Korean": "개화2) 관통력 증가", "s_English": "", "exception": ""}, {"ID": "23112", "s_Korean": "개화2) 관통력 증가", "s_English": "", "exception": ""}, {"ID": "23113", "s_Korean": "개화2) 스킬 계수 증가", "s_English": "", "exception": ""}, {"ID": "23114", "s_Korean": "개화2) 스킬 계수 증가", "s_English": "", "exception": ""}, {"ID": "23115", "s_Korean": "개화2) 스킬 계수 증가", "s_English": "", "exception": ""}, {"ID": "23116", "s_Korean": "개화2) 스킬 계수 증가", "s_English": "", "exception": ""}, {"ID": "23117", "s_Korean": "개화2) 발동 확률 증가", "s_English": "", "exception": ""}, {"ID": "23118", "s_Korean": "개화2) 발동 확률 증가", "s_English": "", "exception": ""}, {"ID": "23119", "s_Korean": "개화2) 버프 유지시간 증가", "s_English": "", "exception": ""}, {"ID": "23120", "s_Korean": "개화2) 보스 공격 시 관통력 증가", "s_English": "", "exception": ""}, {"ID": "23121", "s_Korean": "개화2) 일반 몬스터 공격 시 관통력 증가", "s_English": "", "exception": ""}, {"ID": "23122", "s_Korean": "개화2) 경험치 획득량 증가", "s_English": "", "exception": ""}, {"ID": "23123", "s_Korean": "개화2) 마나 재생력(%) 증가", "s_English": "", "exception": ""}, {"ID": "23124", "s_Korean": "투사체 속도 증가", "s_English": "", "exception": ""}, {"ID": "24101", "s_Korean": "개화3) 치명타 공격 명중 시 관통력 적용", "s_English": "", "exception": ""}, {"ID": "24102", "s_Korean": "개화3) 받는 피해량 감소", "s_English": "", "exception": ""}, {"ID": "24103", "s_Korean": "개화3) 발생 확률 증가", "s_English": "", "exception": ""}, {"ID": "24104", "s_Korean": "개화3) 적 피격 시 발동 확률이 추가로 발생", "s_English": "", "exception": ""}, {"ID": "24105", "s_Korean": "개화3) 주 스텟당 공격력 증가량 상승", "s_English": "", "exception": ""}, {"ID": "24106", "s_Korean": "개화3) 모든 스텟당 생명력 증가 추가", "s_English": "", "exception": ""}, {"ID": "24107", "s_Korean": "개화3) 생명력의 일정 비율 만큼 마나가 증가", "s_English": "", "exception": ""}, {"ID": "24108", "s_Korean": "개화3) 주 스텟에 비례해 스킬 계수 추가 증가", "s_English": "", "exception": ""}, {"ID": "24109", "s_Korean": "개화3) 같은 대상 공격할 때마다 기절 확률 추가", "s_English": "", "exception": ""}, {"ID": "24110", "s_Korean": "개화3) 적 피격 시 발동 확률이 추가로 발생", "s_English": "", "exception": ""}, {"ID": "24111", "s_Korean": "개화3) 방어력 감소량 대폭 증가", "s_English": "", "exception": ""}, {"ID": "24112", "s_Korean": "개화3) 마법 저항력 감소량 대폭 증가", "s_English": "", "exception": ""}, {"ID": "24113", "s_Korean": "개화3) 나머지 스텟(민첩/지능/행운)의 일정 비율만큼 힘 증가", "s_English": "", "exception": ""}, {"ID": "24114", "s_Korean": "개화3) 나머지 스텟(힘/지능/행운)의 일정 비율만큼 민첩 증가", "s_English": "", "exception": ""}, {"ID": "24115", "s_Korean": "개화3) 나머지 스텟(힘/민첩/행운)의 일정 비율만큼 지능 증가", "s_English": "", "exception": ""}, {"ID": "24116", "s_Korean": "개화3) 나머지 스텟(힘/민첩/지능)의 일정 비율만큼 행운 증가", "s_English": "", "exception": ""}, {"ID": "24117", "s_Korean": "개화3) 기본 공격 속도 증가", "s_English": "", "exception": ""}, {"ID": "24118", "s_Korean": "개화3) 기본 이동 속도 증가", "s_English": "", "exception": ""}, {"ID": "24119", "s_Korean": "개화3) 관통력 크게 증가", "s_English": "", "exception": ""}, {"ID": "24120", "s_Korean": "개화3) 최종 피해량 크게 증가", "s_English": "", "exception": ""}, {"ID": "24121", "s_Korean": "개화3) 최종 피해량 크게 증가", "s_English": "", "exception": ""}, {"ID": "24122", "s_Korean": "개화3) 아이템 획득량 증가", "s_English": "", "exception": ""}, {"ID": "24123", "s_Korean": "개화3) 스킬 쿨타임 감소", "s_English": "", "exception": ""}, {"ID": "24124", "s_Korean": "투사체 크기 증가", "s_English": "", "exception": ""}, {"ID": "30001", "s_Korean": "일반", "s_English": "", "exception": ""}, {"ID": "30002", "s_Korean": "고급", "s_English": "", "exception": ""}, {"ID": "30003", "s_Korean": "희귀", "s_English": "", "exception": ""}, {"ID": "30004", "s_Korean": "영웅", "s_English": "", "exception": ""}, {"ID": "30005", "s_Korean": "전설", "s_English": "", "exception": ""}, {"ID": "30006", "s_Korean": "고대", "s_English": "", "exception": ""}, {"ID": "30007", "s_Korean": "신화", "s_English": "", "exception": ""}, {"ID": "30008", "s_Korean": "불멸", "s_English": "", "exception": ""}, {"ID": "30009", "s_Korean": "유일", "s_English": "", "exception": ""}, {"ID": "30101", "s_Korean": "무기", "s_English": "", "exception": ""}, {"ID": "30102", "s_Korean": "갑옷", "s_English": "", "exception": ""}, {"ID": "30103", "s_Korean": "장갑", "s_English": "", "exception": ""}, {"ID": "30104", "s_Korean": "신발", "s_English": "", "exception": ""}, {"ID": "30105", "s_Korean": "목걸이", "s_English": "", "exception": ""}, {"ID": "30106", "s_Korean": "반지", "s_English": "", "exception": ""}, {"ID": "40001", "s_Korean": "힘", "s_English": "", "exception": ""}, {"ID": "40002", "s_Korean": "힘 증가량", "s_English": "", "exception": ""}, {"ID": "40003", "s_Korean": "민첩", "s_English": "", "exception": ""}, {"ID": "40004", "s_Korean": "민첩 증가량", "s_English": "", "exception": ""}, {"ID": "40005", "s_Korean": "지능", "s_English": "", "exception": ""}, {"ID": "40006", "s_Korean": "지능 증가량", "s_English": "", "exception": ""}, {"ID": "40007", "s_Korean": "행운", "s_English": "", "exception": ""}, {"ID": "40008", "s_Korean": "행운 증가량", "s_English": "", "exception": ""}, {"ID": "40009", "s_Korean": "공격력", "s_English": "", "exception": ""}, {"ID": "40010", "s_Korean": "생명력", "s_English": "", "exception": ""}, {"ID": "40011", "s_Korean": "최대 생명력", "s_English": "", "exception": ""}, {"ID": "40012", "s_Korean": "물리 방어력", "s_English": "", "exception": ""}, {"ID": "40013", "s_Korean": "마법 저항력", "s_English": "", "exception": ""}, {"ID": "40014", "s_Korean": "공격력 증가량", "s_English": "", "exception": ""}, {"ID": "40015", "s_Korean": "생명력 증가량", "s_English": "", "exception": ""}, {"ID": "40016", "s_Korean": "방어력 증가량", "s_English": "", "exception": ""}, {"ID": "40017", "s_Korean": "마법 저항력 증가량", "s_English": "", "exception": ""}, {"ID": "40018", "s_Korean": "마나", "s_English": "", "exception": ""}, {"ID": "40019", "s_Korean": "최대 마나", "s_English": "", "exception": ""}, {"ID": "40020", "s_Korean": "마나 증가량", "s_English": "", "exception": ""}, {"ID": "40021", "s_Korean": "고정 피해", "s_English": "", "exception": ""}, {"ID": "40022", "s_Korean": "피해 감소", "s_English": "", "exception": ""}, {"ID": "40023", "s_Korean": "치명타 확률", "s_English": "", "exception": ""}, {"ID": "40024", "s_Korean": "치명타 데미지", "s_English": "", "exception": ""}, {"ID": "40025", "s_Korean": "마법 치명타 확률", "s_English": "", "exception": ""}, {"ID": "40026", "s_Korean": "마법 치명타 피해량", "s_English": "", "exception": ""}, {"ID": "40027", "s_Korean": "스킬 효과 증가량", "s_English": "", "exception": ""}, {"ID": "40028", "s_Korean": "스킬 쿨타임 감소량", "s_English": "", "exception": ""}, {"ID": "40029", "s_Korean": "공격속도", "s_English": "", "exception": ""}, {"ID": "40030", "s_Korean": "공격속도 증가량", "s_English": "", "exception": ""}, {"ID": "40031", "s_Korean": "이동속도", "s_English": "", "exception": ""}, {"ID": "40032", "s_Korean": "이동 속도 증가량", "s_English": "", "exception": ""}, {"ID": "40033", "s_Korean": "생명력 재생", "s_English": "", "exception": ""}, {"ID": "40034", "s_Korean": "마나 재생", "s_English": "", "exception": ""}, {"ID": "40035", "s_Korean": "생명력 재생력", "s_English": "", "exception": ""}, {"ID": "40036", "s_Korean": "마나 재생력", "s_English": "", "exception": ""}, {"ID": "40037", "s_Korean": "관통력", "s_English": "", "exception": ""}, {"ID": "40038", "s_Korean": "모든 피해량 증가", "s_English": "", "exception": ""}, {"ID": "40039", "s_Korean": "데미지 감소", "s_English": "", "exception": ""}, {"ID": "40040", "s_Korean": "골드 추가량", "s_English": "", "exception": ""}, {"ID": "40041", "s_Korean": "골드 획득량", "s_English": "", "exception": ""}, {"ID": "40042", "s_Korean": "경험치 획득률", "s_English": "", "exception": ""}, {"ID": "40043", "s_Korean": "아이템 획득 기회", "s_English": "", "exception": ""}, {"ID": "40044", "s_Korean": "공격 쿨타임", "s_English": "", "exception": ""}, {"ID": "40045", "s_Korean": "최종 데미지", "s_English": "", "exception": ""}, {"ID": "40046", "s_Korean": "최종 방어력", "s_English": "", "exception": ""}, {"ID": "40047", "s_Korean": "최종 마법 저항력", "s_English": "", "exception": ""}, {"ID": "40048", "s_Korean": "최종 체력 재생", "s_English": "", "exception": ""}, {"ID": "40049", "s_Korean": "최종 마나 재생", "s_English": "", "exception": ""}, {"ID": "40050", "s_Korean": "최종 공격속도", "s_English": "", "exception": ""}, {"ID": "40051", "s_Korean": "최종 이동속도", "s_English": "", "exception": ""}, {"ID": "40052", "s_Korean": "치명타 추가 관통력", "s_English": "", "exception": ""}, {"ID": "40053", "s_Korean": "용사의 근성 발동 HP%", "s_English": "", "exception": ""}, {"ID": "40054", "s_Korean": "용사의 근성 체력 재생력", "s_English": "", "exception": ""}, {"ID": "40055", "s_Korean": "용사의 근성 방어력", "s_English": "", "exception": ""}, {"ID": "40056", "s_Korean": "출혈확률", "s_English": "", "exception": ""}, {"ID": "40057", "s_Korean": "출혈 지속 시간", "s_English": "", "exception": ""}, {"ID": "40058", "s_Korean": "출혈 간격", "s_English": "", "exception": ""}, {"ID": "40059", "s_Korean": "출혈 데미지", "s_English": "", "exception": ""}, {"ID": "40060", "s_Korean": "적 처치 시, HP 흡수 확률", "s_English": "", "exception": ""}, {"ID": "40061", "s_Korean": "적 처치 시, HP 회복량", "s_English": "", "exception": ""}, {"ID": "40062", "s_Korean": "적 처치 시, MP 흡수 확률", "s_English": "", "exception": ""}, {"ID": "40063", "s_Korean": "적 처치 시, MP 회복량", "s_English": "", "exception": ""}, {"ID": "40064", "s_Korean": "기절 확률", "s_English": "", "exception": ""}, {"ID": "40065", "s_Korean": "기절 시간", "s_English": "", "exception": ""}, {"ID": "40066", "s_Korean": "기절 시 추가 피해", "s_English": "", "exception": ""}, {"ID": "40067", "s_Korean": "같은 대상 공격", "s_English": "", "exception": ""}, {"ID": "40068", "s_Korean": "방어력 감소값", "s_English": "", "exception": ""}, {"ID": "40069", "s_Korean": "방어력 감소 횟수 제한", "s_English": "", "exception": ""}, {"ID": "40070", "s_Korean": "방어력 감소 개화3 오픈 여부", "s_English": "", "exception": ""}, {"ID": "40071", "s_Korean": "마법저항력 감소값", "s_English": "", "exception": ""}, {"ID": "40072", "s_Korean": "마법저항력 감소 횟수 제한", "s_English": "", "exception": ""}, {"ID": "40073", "s_Korean": "마법저항력 감소 개화3 오픈 여부", "s_English": "", "exception": ""}, {"ID": "40074", "s_Korean": "공격 시 공속 증가 발동할 확률", "s_English": "", "exception": ""}, {"ID": "40075", "s_Korean": "공격 시 증가할 공속량", "s_English": "", "exception": ""}, {"ID": "40076", "s_Korean": "공격 시 공속이 증가할 시간", "s_English": "", "exception": ""}, {"ID": "40077", "s_Korean": "공격 시 이속 증가 발동할 확률", "s_English": "", "exception": ""}, {"ID": "40078", "s_Korean": "공격 시 증가할 이속량", "s_English": "", "exception": ""}, {"ID": "40079", "s_Korean": "공격 시 이속이 증가할 시간", "s_English": "", "exception": ""}, {"ID": "40080", "s_Korean": "공격 시 관통력 증가 버프가 발동할 확률", "s_English": "", "exception": ""}, {"ID": "40081", "s_Korean": "관통력 버프로 인한 추가 관통력 데미지", "s_English": "", "exception": ""}, {"ID": "40082", "s_Korean": "관통력 버프로 유지 시간", "s_English": "", "exception": ""}, {"ID": "40083", "s_Korean": "소모 MP 감소량", "s_English": "", "exception": ""}, {"ID": "40084", "s_Korean": "보스 데미지", "s_English": "", "exception": ""}, {"ID": "40085", "s_Korean": "보스몹 관통 데미지", "s_English": "", "exception": ""}, {"ID": "40086", "s_Korean": "보스 데미지 누적 제한", "s_English": "", "exception": ""}, {"ID": "40087", "s_Korean": "일반몹 데미지", "s_English": "", "exception": ""}, {"ID": "40088", "s_Korean": "보스몹 관통 데미지", "s_English": "", "exception": ""}, {"ID": "40089", "s_Korean": "일반몹 데미지 누적 제한", "s_English": "", "exception": ""}, {"ID": "40090", "s_Korean": "공격 사거리 증가", "s_English": "", "exception": ""}, {"ID": "40091", "s_Korean": "밀리는 거리 증가", "s_English": "", "exception": ""}, {"ID": "40092", "s_Korean": "투사체 속도 증가", "s_English": "", "exception": ""}, {"ID": "40093", "s_Korean": "투사체 크기 증가", "s_English": "", "exception": ""}, {"ID": "40094", "s_Korean": "모든 펫 스탯 증가량%", "s_English": "", "exception": ""}, {"ID": "40095", "s_Korean": "펫 공격력 증가%", "s_English": "", "exception": ""}, {"ID": "40096", "s_Korean": "펫 생명력 증가%", "s_English": "", "exception": ""}, {"ID": "40097", "s_Korean": "펫 물리 방어력 증가%", "s_English": "", "exception": ""}, {"ID": "40098", "s_Korean": "펫 마법 저항력 증가%", "s_English": "", "exception": ""}, {"ID": "40099", "s_Korean": "펫 스킬 쿨타임 감소%", "s_English": "", "exception": ""}, {"ID": "40100", "s_Korean": "짐꾼 이동 속도 증가%", "s_English": "", "exception": ""}, {"ID": "40101", "s_Korean": "임의의 스킬 레벨 증가+", "s_English": "", "exception": ""}, {"ID": "40102", "s_Korean": "모든 스킬 레벨 증가+", "s_English": "", "exception": ""}, {"ID": "40103", "s_Korean": "적 방어력 일정 수치만큼 무시(※감소 시킨 상태로 연산)", "s_English": "", "exception": ""}, {"ID": "40104", "s_Korean": "적 공격 시 주 스텟의 일정 비율만큼 적의 방어력 감소 (누적X)", "s_English": "", "exception": ""}, {"ID": "40105", "s_Korean": "적의 관통력에 대한 효과를 Multiplier 형태로 차감", "s_English": "", "exception": ""}, {"ID": "40106", "s_Korean": "받는 피해량 증가(%)하는 대신 모든 피해량 증가(%)", "s_English": "", "exception": ""}, {"ID": "40107", "s_Korean": "주 스텟비례 데미지", "s_English": "", "exception": ""}, {"ID": "40108", "s_Korean": "공격 시 일정 확률로 적 기절 및 힘에 비례한 피해 발생", "s_English": "", "exception": ""}, {"ID": "40109", "s_Korean": "공격 시 일정 확률로 민첩에 비례한 출혈 효과 발생", "s_English": "", "exception": ""}, {"ID": "40110", "s_Korean": "공격 시 일정 확률로 적 이동 속도 감소 시키고 지력에 비례한 피해 발생", "s_English": "", "exception": ""}, {"ID": "40111", "s_Korean": "기본 획득 골드가 증가하고, 적 공격 시 일정 확률로 행운에 비례한 %만큼 적에게 순수 피해를 입히는 효과가 발동", "s_English": "", "exception": ""}, {"ID": "40118", "s_Korean": "모든 능력치", "s_English": "", "exception": ""}, {"ID": "60001", "s_Korean": "농부1", "s_English": "", "exception": ""}, {"ID": "60002", "s_Korean": "농부2", "s_English": "", "exception": ""}, {"ID": "60003", "s_Korean": "농부3", "s_English": "", "exception": ""}, {"ID": "60004", "s_Korean": "농부4", "s_English": "", "exception": ""}, {"ID": "60005", "s_Korean": "농부5", "s_English": "", "exception": ""}, {"ID": "60006", "s_Korean": "농부6", "s_English": "", "exception": ""}, {"ID": "60007", "s_Korean": "농부7", "s_English": "", "exception": ""}, {"ID": "60008", "s_Korean": "농부8", "s_English": "", "exception": ""}, {"ID": "60009", "s_Korean": "농부9", "s_English": "", "exception": ""}, {"ID": "60010", "s_Korean": "농부10", "s_English": "", "exception": ""}, {"ID": "60011", "s_Korean": "농부11", "s_English": "", "exception": ""}, {"ID": "60012", "s_Korean": "농부12", "s_English": "", "exception": ""}, {"ID": "60013", "s_Korean": "농부13", "s_English": "", "exception": ""}, {"ID": "61001", "s_Korean": "농부 1 설명", "s_English": "", "exception": ""}, {"ID": "61002", "s_Korean": "농부 2 설명", "s_English": "", "exception": ""}, {"ID": "61003", "s_Korean": "농부 3 설명", "s_English": "", "exception": ""}, {"ID": "61004", "s_Korean": "농부 4 설명", "s_English": "", "exception": ""}, {"ID": "61005", "s_Korean": "농부 5 설명", "s_English": "", "exception": ""}, {"ID": "61006", "s_Korean": "농부 6 설명", "s_English": "", "exception": ""}, {"ID": "61007", "s_Korean": "농부 7 설명", "s_English": "", "exception": ""}, {"ID": "61008", "s_Korean": "농부 8 설명", "s_English": "", "exception": ""}, {"ID": "61009", "s_Korean": "농부 9 설명", "s_English": "", "exception": ""}, {"ID": "61010", "s_Korean": "농부 10 설명", "s_English": "", "exception": ""}, {"ID": "61011", "s_Korean": "농부 11 설명", "s_English": "", "exception": ""}, {"ID": "61012", "s_Korean": "농부 12 설명", "s_English": "", "exception": ""}, {"ID": "61013", "s_Korean": "농부 13 설명", "s_English": "", "exception": ""}, {"ID": "10101", "s_Korean": "풋내기 전사", "s_English": "", "exception": ""}, {"ID": "10102", "s_Korean": "마검사", "s_English": "", "exception": ""}, {"ID": "10201", "s_Korean": "블레이드 댄서", "s_English": "", "exception": ""}, {"ID": "10202", "s_Korean": "암살자", "s_English": "", "exception": ""}, {"ID": "10301", "s_Korean": "견습 마법사", "s_English": "", "exception": ""}, {"ID": "10302", "s_Korean": "숙련 마도사", "s_English": "", "exception": ""}, {"ID": "10303", "s_Korean": "소환사", "s_English": "", "exception": ""}, {"ID": "10401", "s_Korean": "견습 사냥꾼", "s_English": "", "exception": ""}, {"ID": "10402", "s_Korean": "궁수", "s_English": "", "exception": ""}, {"ID": "10501", "s_Korean": "모험가", "s_English": "", "exception": ""}, {"ID": "10502", "s_Korean": "수호 기사", "s_English": "", "exception": ""}, {"ID": "10601", "s_Korean": "워리어", "s_English": "", "exception": ""}, {"ID": "400001", "s_Korean": "유물1", "s_English": "", "exception": ""}, {"ID": "400002", "s_Korean": "유물2", "s_English": "", "exception": ""}, {"ID": "400003", "s_Korean": "유물3", "s_English": "", "exception": ""}, {"ID": "400004", "s_Korean": "유물4", "s_English": "", "exception": ""}, {"ID": "400005", "s_Korean": "유물5", "s_English": "", "exception": ""}, {"ID": "400006", "s_Korean": "유물6", "s_English": "", "exception": ""}, {"ID": "400007", "s_Korean": "유물7", "s_English": "", "exception": ""}, {"ID": "400008", "s_Korean": "유물8", "s_English": "", "exception": ""}, {"ID": "400009", "s_Korean": "유물9", "s_English": "", "exception": ""}, {"ID": "400010", "s_Korean": "유물10", "s_English": "", "exception": ""}, {"ID": "400011", "s_Korean": "유물11", "s_English": "", "exception": ""}, {"ID": "400012", "s_Korean": "유물12", "s_English": "", "exception": ""}, {"ID": "400013", "s_Korean": "유물13", "s_English": "", "exception": ""}, {"ID": "400014", "s_Korean": "유물14", "s_English": "", "exception": ""}, {"ID": "2000001", "s_Korean": "정수1", "s_English": "", "exception": ""}, {"ID": "2000002", "s_Korean": "정수2", "s_English": "", "exception": ""}, {"ID": "2000003", "s_Korean": "정수3", "s_English": "", "exception": ""}, {"ID": "2000004", "s_Korean": "정수4", "s_English": "", "exception": ""}, {"ID": "2000005", "s_Korean": "정수5", "s_English": "", "exception": ""}, {"ID": "2000006", "s_Korean": "정수6", "s_English": "", "exception": ""}, {"ID": "1", "s_Korean": "ID복사", "s_English": "ID복사", "exception": ""}, {"ID": "2", "s_Korean": "데미지 텍스트", "s_English": "", "exception": ""}, {"ID": "3", "s_Korean": "빛", "s_English": "", "exception": ""}, {"ID": "4", "s_Korean": "카메라 적 자동 추적", "s_English": "", "exception": ""}, {"ID": "5", "s_Korean": "알림", "s_English": "", "exception": ""}, {"ID": "6", "s_Korean": "알림(밤)", "s_English": "", "exception": ""}, {"ID": "7", "s_Korean": "그래픽", "s_English": "", "exception": ""}, {"ID": "8", "s_Korean": "상", "s_English": "", "exception": ""}, {"ID": "9", "s_Korean": "중", "s_English": "", "exception": ""}, {"ID": "10", "s_Korean": "하", "s_English": "", "exception": ""}, {"ID": "11", "s_Korean": "저장", "s_English": "", "exception": ""}, {"ID": "12", "s_Korean": "저장 후 종료", "s_English": "", "exception": ""}, {"ID": "13", "s_Korean": "문의하기", "s_English": "", "exception": ""}, {"ID": "14", "s_Korean": "개인정보보호", "s_English": "", "exception": ""}, {"ID": "15", "s_Korean": "최종사용자 사용권계약", "s_English": "", "exception": ""}, {"ID": "16", "s_Korean": "로그아웃", "s_English": "", "exception": ""}, {"ID": "17", "s_Korean": "계정삭제", "s_English": "", "exception": ""}, {"ID": "18", "s_Korean": "계정을 삭제합니다. 계정 삭제 후, 복구가 불가능합니다. 계정을 삭제하시려면, 아래에 diff --git a/Assets/ResWork/Table/Server/server_CollectionList.txt b/Assets/ResWork/Table/Server/server_CollectionList.txt new file mode 100644 index 000000000..0dca188cb --- /dev/null +++ b/Assets/ResWork/Table/Server/server_CollectionList.txt @@ -0,0 +1,2930 @@ +[ + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "101", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "102", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "103", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "104", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "105", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "106", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "107", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "108", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "109", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "110", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "111", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "112", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "113", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "114", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "115", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "116", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "117", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "118", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "119", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "120", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "121", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "122", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "123", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "124", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "125", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "126", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "127", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "128", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "129", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "130", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "131", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "132", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "133", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "134", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "135", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "136", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "137", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "138", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "139", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "140", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "141", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "142", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "143", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "144", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "145", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "146", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "147", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "148", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "149", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "150", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "151", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "152", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "153", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "154", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "155", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "156", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "157", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "158", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "159", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "160", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "161", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "162", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "163", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "164", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "165", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "166", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "167", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "168", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "169", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "170", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "171", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "172", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "173", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "174", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "175", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "176", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "177", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "178", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "179", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "180", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "181", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "182", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "183", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "184", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "185", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "186", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "187", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "188", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "189", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "190", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "191", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "192", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "193", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "194", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "195", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "196", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "197", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "198", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "199", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "200", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "201", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "202", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "203", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "204", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "205", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "206", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "207", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "208", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "209", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "210", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "211", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "212", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "213", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "214", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "215", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "216", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "217", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "218", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "219", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "220", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "221", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "222", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "223", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "224", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "225", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "226", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "227", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "228", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "229", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "230", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "231", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "232", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "233", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "234", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "235", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "236", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "237", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "238", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "239", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "240", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "241", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "242", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "243", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "244", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "245", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "246", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "247", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "248", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "249", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "250", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "251", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "252", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "253", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "254", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "255", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "256", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "257", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "258", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "259", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "260", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "261", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "262", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "263", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "264", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "265", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "266", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "267", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "268", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "269", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "270", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "271", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "272", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "273", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "274", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "275", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "276", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "277", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "278", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "279", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "280", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "281", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "282", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "283", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "284", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "285", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "286", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "287", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "288", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "289", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "290", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "291", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "292", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "293", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "294", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "295", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "296", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "297", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "298", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "299", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "300", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "301", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "302", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "303", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "304", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "305", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "306", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "307", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "308", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "309", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "310", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "311", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "312", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "313", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "314", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "315", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "316", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "317", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "318", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "319", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "320", + "n_ConditionCount": "20" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "321", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "322", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "323", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "324", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "325", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "326", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "327", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "328", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "329", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "330", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "331", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "332", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "333", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "334", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "335", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "336", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "337", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "338", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "339", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "340", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "341", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "342", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "343", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "344", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "345", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "346", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "347", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "348", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "349", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "350", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "351", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1001", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1002", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1003", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1004", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1005", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1006", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1007", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1008", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1009", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1010", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1011", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1012", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1013", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1014", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1015", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1016", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1017", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1018", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1019", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1020", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1021", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1022", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1023", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1024", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1025", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1026", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1027", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1028", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1029", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1030", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1031", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1032", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1033", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1034", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1035", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "1036", + "n_ConditionCount": "10" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "10001", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "10002", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "10003", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "10004", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "10005", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "10006", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "10007", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "10008", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "10009", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "10010", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "10011", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "KillMonster", + "n_TargetValue": "10012", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101001", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101002", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101003", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101004", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101005", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101006", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101007", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101008", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101009", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101010", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101011", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101012", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101013", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101014", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101015", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101016", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101017", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101018", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101019", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101020", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101021", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101022", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101023", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101024", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101025", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101026", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101027", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101028", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101029", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101030", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101031", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101032", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101033", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101034", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10101035", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102001", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102002", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102003", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102004", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102005", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102006", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102007", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102008", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102009", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102010", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102011", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102012", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102013", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102014", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102015", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102016", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102017", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102018", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102019", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102020", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102021", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102022", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102023", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102024", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102025", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102026", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102027", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102028", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102029", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102030", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102031", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102032", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102033", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102034", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10102035", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103001", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103002", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103003", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103004", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103005", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103006", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103007", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103008", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103009", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103010", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103011", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103012", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103013", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103014", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103015", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103016", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103017", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103018", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103019", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103020", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103021", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103022", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103023", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103024", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103025", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103026", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103027", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103028", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103029", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103030", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103031", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103032", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103033", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103034", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "1", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10103035", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201001", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201002", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201003", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201004", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201005", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201006", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201007", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201008", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201009", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201010", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201011", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201012", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201013", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10201014", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202001", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202002", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202003", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202004", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202005", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202006", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202007", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202008", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202009", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202010", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202011", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202012", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202013", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10202014", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203001", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203002", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203003", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203004", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203005", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203006", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203007", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203008", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203009", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203010", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203011", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203012", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203013", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "2", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10203014", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301001", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301002", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301003", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301004", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301005", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301006", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301007", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301008", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301009", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301010", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301011", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301012", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301013", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10301014", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302001", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302002", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302003", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302004", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302005", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302006", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302007", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302008", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302009", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302010", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302011", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302012", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302013", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10302014", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303001", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303002", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303003", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303004", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303005", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303006", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303007", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303008", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303009", + "n_ConditionCount": "6" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303010", + "n_ConditionCount": "7" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303011", + "n_ConditionCount": "8" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303012", + "n_ConditionCount": "9" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303013", + "n_ConditionCount": "5" + }, + { + "e_MenuCategory": "3", + "e_TargetCondition": "TakeEquip", + "n_TargetValue": "10303014", + "n_ConditionCount": "6" + } +] \ No newline at end of file diff --git a/Assets/ResWork/Table/Server/server_CollectionList.txt.meta b/Assets/ResWork/Table/Server/server_CollectionList.txt.meta new file mode 100644 index 000000000..133f1f96e --- /dev/null +++ b/Assets/ResWork/Table/Server/server_CollectionList.txt.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 6ee03251aff1405449535554621038be +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResWork/Table/Server/server_OptionConfig.txt b/Assets/ResWork/Table/Server/server_OptionConfig.txt index ba193e24d..4f9c88573 100644 --- a/Assets/ResWork/Table/Server/server_OptionConfig.txt +++ b/Assets/ResWork/Table/Server/server_OptionConfig.txt @@ -109,19 +109,19 @@ }, { "n_OptionID": "340001", - "n_DefaultValue": "1", + "n_DefaultValue": "10000", "f_LevelPerValue": "1", "f_BalanceConstant": "0.1" }, { "n_OptionID": "340002", - "n_DefaultValue": "2", + "n_DefaultValue": "20000", "f_LevelPerValue": "2", "f_BalanceConstant": "0.2" }, { "n_OptionID": "340003", - "n_DefaultValue": "3", + "n_DefaultValue": "30000", "f_LevelPerValue": "3", "f_BalanceConstant": "0.3" } diff --git a/Assets/ResWork/Table/butler.xlsm b/Assets/ResWork/Table/butler.xlsm index 4d8ad69c5..2f4d910f8 100644 Binary files a/Assets/ResWork/Table/butler.xlsm and b/Assets/ResWork/Table/butler.xlsm differ diff --git a/Assets/ResWork/UI/Image/Hero Awaken/awaken_DEX icon.png b/Assets/ResWork/UI/Image/Hero Awaken/awaken_DEX icon.png deleted file mode 100644 index 56e5cd7de..000000000 Binary files a/Assets/ResWork/UI/Image/Hero Awaken/awaken_DEX icon.png and /dev/null differ diff --git a/Assets/ResWork/UI/Image/Hero Awaken/awaken_INT icon.png b/Assets/ResWork/UI/Image/Hero Awaken/awaken_INT icon.png deleted file mode 100644 index 81da73f7f..000000000 Binary files a/Assets/ResWork/UI/Image/Hero Awaken/awaken_INT icon.png and /dev/null differ diff --git a/Assets/ResWork/UI/Image/Hero Awaken/awaken_LUK icon.png b/Assets/ResWork/UI/Image/Hero Awaken/awaken_LUK icon.png deleted file mode 100644 index 53c8ecdaa..000000000 Binary files a/Assets/ResWork/UI/Image/Hero Awaken/awaken_LUK icon.png and /dev/null differ diff --git a/Assets/ResWork/UI/Image/Hero Awaken/awaken_STR icon.png b/Assets/ResWork/UI/Image/Hero Awaken/awaken_STR icon.png deleted file mode 100644 index 184d00989..000000000 Binary files a/Assets/ResWork/UI/Image/Hero Awaken/awaken_STR icon.png and /dev/null differ diff --git a/Assets/ResWork/UI/Image/Hero.meta b/Assets/ResWork/UI/Image/Hero.meta new file mode 100644 index 000000000..67b45bbd6 --- /dev/null +++ b/Assets/ResWork/UI/Image/Hero.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7a0d3ec2372db9c4bae510e2ca0d90ca +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResWork/UI/Image/Hero/Awaken.meta b/Assets/ResWork/UI/Image/Hero/Awaken.meta new file mode 100644 index 000000000..842d5d1ef --- /dev/null +++ b/Assets/ResWork/UI/Image/Hero/Awaken.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 776035f98dcfe8e40b04f583aba8bae3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/awaken_dex_icon.png b/Assets/ResWork/UI/Image/Hero/Awaken/awaken_dex_icon.png new file mode 100644 index 000000000..d47265809 Binary files /dev/null and b/Assets/ResWork/UI/Image/Hero/Awaken/awaken_dex_icon.png differ diff --git a/Assets/ResWork/UI/Image/Hero Awaken/awaken_LUK icon.png.meta b/Assets/ResWork/UI/Image/Hero/Awaken/awaken_dex_icon.png.meta similarity index 98% rename from Assets/ResWork/UI/Image/Hero Awaken/awaken_LUK icon.png.meta rename to Assets/ResWork/UI/Image/Hero/Awaken/awaken_dex_icon.png.meta index 496c69507..b06ee62c8 100644 --- a/Assets/ResWork/UI/Image/Hero Awaken/awaken_LUK icon.png.meta +++ b/Assets/ResWork/UI/Image/Hero/Awaken/awaken_dex_icon.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: c665aeca2326e8447987e7bbc9c7b08d +guid: 124a38391a7708b4cbf2ba84d6df4250 TextureImporter: internalIDToNameTable: [] externalObjects: {} diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/awaken_int_icon.png b/Assets/ResWork/UI/Image/Hero/Awaken/awaken_int_icon.png new file mode 100644 index 000000000..e4d9b7411 Binary files /dev/null and b/Assets/ResWork/UI/Image/Hero/Awaken/awaken_int_icon.png differ diff --git a/Assets/ResWork/UI/Image/Hero Awaken/awaken_DEX icon.png.meta b/Assets/ResWork/UI/Image/Hero/Awaken/awaken_int_icon.png.meta similarity index 98% rename from Assets/ResWork/UI/Image/Hero Awaken/awaken_DEX icon.png.meta rename to Assets/ResWork/UI/Image/Hero/Awaken/awaken_int_icon.png.meta index 43a936c8f..216c2e219 100644 --- a/Assets/ResWork/UI/Image/Hero Awaken/awaken_DEX icon.png.meta +++ b/Assets/ResWork/UI/Image/Hero/Awaken/awaken_int_icon.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: e270a7e01804a7c4daa53c637852e7d8 +guid: c1280536ab6e66a47b1b43750ab5c173 TextureImporter: internalIDToNameTable: [] externalObjects: {} diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/awaken_luk_icon.png b/Assets/ResWork/UI/Image/Hero/Awaken/awaken_luk_icon.png new file mode 100644 index 000000000..877ce7d74 Binary files /dev/null and b/Assets/ResWork/UI/Image/Hero/Awaken/awaken_luk_icon.png differ diff --git a/Assets/ResWork/UI/Image/Hero Awaken/awaken_STR icon.png.meta b/Assets/ResWork/UI/Image/Hero/Awaken/awaken_luk_icon.png.meta similarity index 98% rename from Assets/ResWork/UI/Image/Hero Awaken/awaken_STR icon.png.meta rename to Assets/ResWork/UI/Image/Hero/Awaken/awaken_luk_icon.png.meta index 1a70c46b7..575e98376 100644 --- a/Assets/ResWork/UI/Image/Hero Awaken/awaken_STR icon.png.meta +++ b/Assets/ResWork/UI/Image/Hero/Awaken/awaken_luk_icon.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: ccea7ae921c59b842b029b2528444369 +guid: 6fc2abc1c1c62ba47a6f5cd1020ab50b TextureImporter: internalIDToNameTable: [] externalObjects: {} diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/awaken_str_icon.png b/Assets/ResWork/UI/Image/Hero/Awaken/awaken_str_icon.png new file mode 100644 index 000000000..21571a408 Binary files /dev/null and b/Assets/ResWork/UI/Image/Hero/Awaken/awaken_str_icon.png differ diff --git a/Assets/ResWork/UI/Image/Hero Awaken/awaken_INT icon.png.meta b/Assets/ResWork/UI/Image/Hero/Awaken/awaken_str_icon.png.meta similarity index 98% rename from Assets/ResWork/UI/Image/Hero Awaken/awaken_INT icon.png.meta rename to Assets/ResWork/UI/Image/Hero/Awaken/awaken_str_icon.png.meta index 71f25f0c1..0121cc970 100644 --- a/Assets/ResWork/UI/Image/Hero Awaken/awaken_INT icon.png.meta +++ b/Assets/ResWork/UI/Image/Hero/Awaken/awaken_str_icon.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: d93a9d6f45a6ddd4894cc583d8052565 +guid: d91a94c9d969a804282a7ad50a37f98a TextureImporter: internalIDToNameTable: [] externalObjects: {} diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/btn_white.png b/Assets/ResWork/UI/Image/Hero/Awaken/btn_white.png new file mode 100644 index 000000000..1042703a9 Binary files /dev/null and b/Assets/ResWork/UI/Image/Hero/Awaken/btn_white.png differ diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/btn_white.png.meta b/Assets/ResWork/UI/Image/Hero/Awaken/btn_white.png.meta new file mode 100644 index 000000000..7eeda46bc --- /dev/null +++ b/Assets/ResWork/UI/Image/Hero/Awaken/btn_white.png.meta @@ -0,0 +1,153 @@ +fileFormatVersion: 2 +guid: 0427ca06361e97941a82b6f398c3042d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 1 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 45, y: 45, z: 45, w: 45} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 1537655665 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/btn_yellow.png b/Assets/ResWork/UI/Image/Hero/Awaken/btn_yellow.png new file mode 100644 index 000000000..4d8574be5 Binary files /dev/null and b/Assets/ResWork/UI/Image/Hero/Awaken/btn_yellow.png differ diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/btn_yellow.png.meta b/Assets/ResWork/UI/Image/Hero/Awaken/btn_yellow.png.meta new file mode 100644 index 000000000..c8454192d --- /dev/null +++ b/Assets/ResWork/UI/Image/Hero/Awaken/btn_yellow.png.meta @@ -0,0 +1,153 @@ +fileFormatVersion: 2 +guid: 70b6642616821ac4f92f46e23f41a47f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 1 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 45, y: 45, z: 45, w: 45} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 1537655665 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/label 1.png b/Assets/ResWork/UI/Image/Hero/Awaken/label 1.png new file mode 100644 index 000000000..4387cb7a8 Binary files /dev/null and b/Assets/ResWork/UI/Image/Hero/Awaken/label 1.png differ diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/label 1.png.meta b/Assets/ResWork/UI/Image/Hero/Awaken/label 1.png.meta new file mode 100644 index 000000000..8531d3f50 --- /dev/null +++ b/Assets/ResWork/UI/Image/Hero/Awaken/label 1.png.meta @@ -0,0 +1,153 @@ +fileFormatVersion: 2 +guid: b5b02bcc53245ec4fb4d313b65c17cea +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 1 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 45, y: 45, z: 45, w: 45} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 1537655665 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/label 2.png b/Assets/ResWork/UI/Image/Hero/Awaken/label 2.png new file mode 100644 index 000000000..756d548cb Binary files /dev/null and b/Assets/ResWork/UI/Image/Hero/Awaken/label 2.png differ diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/label 2.png.meta b/Assets/ResWork/UI/Image/Hero/Awaken/label 2.png.meta new file mode 100644 index 000000000..48e00b3cb --- /dev/null +++ b/Assets/ResWork/UI/Image/Hero/Awaken/label 2.png.meta @@ -0,0 +1,153 @@ +fileFormatVersion: 2 +guid: 623cb403a7e04df42b0f3706b4e3a411 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 1 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 64, y: 64, z: 64, w: 64} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 1537655665 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/label 3.png b/Assets/ResWork/UI/Image/Hero/Awaken/label 3.png new file mode 100644 index 000000000..1d1739312 Binary files /dev/null and b/Assets/ResWork/UI/Image/Hero/Awaken/label 3.png differ diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/label 3.png.meta b/Assets/ResWork/UI/Image/Hero/Awaken/label 3.png.meta new file mode 100644 index 000000000..ba2e52520 --- /dev/null +++ b/Assets/ResWork/UI/Image/Hero/Awaken/label 3.png.meta @@ -0,0 +1,153 @@ +fileFormatVersion: 2 +guid: 2a328e6a4c5557546bf78786dcd1d497 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 1 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 45, y: 45, z: 45, w: 45} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 1537655665 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/label_new.png b/Assets/ResWork/UI/Image/Hero/Awaken/label_new.png new file mode 100644 index 000000000..17f63c135 Binary files /dev/null and b/Assets/ResWork/UI/Image/Hero/Awaken/label_new.png differ diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/label_new.png.meta b/Assets/ResWork/UI/Image/Hero/Awaken/label_new.png.meta new file mode 100644 index 000000000..23c7f9010 --- /dev/null +++ b/Assets/ResWork/UI/Image/Hero/Awaken/label_new.png.meta @@ -0,0 +1,153 @@ +fileFormatVersion: 2 +guid: 9252029c0376a22418c5fc11b2204644 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 1 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 25, y: 25, z: 25, w: 25} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 1537655665 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/level icon.png b/Assets/ResWork/UI/Image/Hero/Awaken/level icon.png new file mode 100644 index 000000000..5e106a617 Binary files /dev/null and b/Assets/ResWork/UI/Image/Hero/Awaken/level icon.png differ diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/level icon.png.meta b/Assets/ResWork/UI/Image/Hero/Awaken/level icon.png.meta new file mode 100644 index 000000000..587e12b58 --- /dev/null +++ b/Assets/ResWork/UI/Image/Hero/Awaken/level icon.png.meta @@ -0,0 +1,153 @@ +fileFormatVersion: 2 +guid: 8dd0e63032365414abd09327a8b8655a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 1 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/main window.png b/Assets/ResWork/UI/Image/Hero/Awaken/main window.png new file mode 100644 index 000000000..43305af71 Binary files /dev/null and b/Assets/ResWork/UI/Image/Hero/Awaken/main window.png differ diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/main window.png.meta b/Assets/ResWork/UI/Image/Hero/Awaken/main window.png.meta new file mode 100644 index 000000000..4e37cc7b5 --- /dev/null +++ b/Assets/ResWork/UI/Image/Hero/Awaken/main window.png.meta @@ -0,0 +1,153 @@ +fileFormatVersion: 2 +guid: 514fba7e342918441a7024c71844a09b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 1 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 126, y: 129, z: 130, w: 127} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 1537655665 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/main window_close btn.png b/Assets/ResWork/UI/Image/Hero/Awaken/main window_close btn.png new file mode 100644 index 000000000..0d39f2941 Binary files /dev/null and b/Assets/ResWork/UI/Image/Hero/Awaken/main window_close btn.png differ diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/main window_close btn.png.meta b/Assets/ResWork/UI/Image/Hero/Awaken/main window_close btn.png.meta new file mode 100644 index 000000000..fe3a88f1a --- /dev/null +++ b/Assets/ResWork/UI/Image/Hero/Awaken/main window_close btn.png.meta @@ -0,0 +1,153 @@ +fileFormatVersion: 2 +guid: 10a3c682395ee1747b283d991e5ad763 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 1 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 100, y: 100, z: 100, w: 100} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 1537655665 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/progress bar back.png b/Assets/ResWork/UI/Image/Hero/Awaken/progress bar back.png new file mode 100644 index 000000000..3de03415a Binary files /dev/null and b/Assets/ResWork/UI/Image/Hero/Awaken/progress bar back.png differ diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/progress bar back.png.meta b/Assets/ResWork/UI/Image/Hero/Awaken/progress bar back.png.meta new file mode 100644 index 000000000..185bbf28a --- /dev/null +++ b/Assets/ResWork/UI/Image/Hero/Awaken/progress bar back.png.meta @@ -0,0 +1,153 @@ +fileFormatVersion: 2 +guid: 011264d785fbe964eb3bd160bbfcdb22 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 1 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 29, y: 0, z: 30, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 1537655665 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/progress bar color.png b/Assets/ResWork/UI/Image/Hero/Awaken/progress bar color.png new file mode 100644 index 000000000..c7628883b Binary files /dev/null and b/Assets/ResWork/UI/Image/Hero/Awaken/progress bar color.png differ diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/progress bar color.png.meta b/Assets/ResWork/UI/Image/Hero/Awaken/progress bar color.png.meta new file mode 100644 index 000000000..0a6f31af9 --- /dev/null +++ b/Assets/ResWork/UI/Image/Hero/Awaken/progress bar color.png.meta @@ -0,0 +1,153 @@ +fileFormatVersion: 2 +guid: 410de795ee05ec649a61da73ae257c9b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 1 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 29, y: 0, z: 30, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 1537655665 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/reset icon.png b/Assets/ResWork/UI/Image/Hero/Awaken/reset icon.png new file mode 100644 index 000000000..cf19ec2ed Binary files /dev/null and b/Assets/ResWork/UI/Image/Hero/Awaken/reset icon.png differ diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/reset icon.png.meta b/Assets/ResWork/UI/Image/Hero/Awaken/reset icon.png.meta new file mode 100644 index 000000000..71bac1ced --- /dev/null +++ b/Assets/ResWork/UI/Image/Hero/Awaken/reset icon.png.meta @@ -0,0 +1,153 @@ +fileFormatVersion: 2 +guid: e30559c8d46d80745bce7c5af12eac49 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 1 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/sub window.png b/Assets/ResWork/UI/Image/Hero/Awaken/sub window.png new file mode 100644 index 000000000..d9b9beefc Binary files /dev/null and b/Assets/ResWork/UI/Image/Hero/Awaken/sub window.png differ diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/sub window.png.meta b/Assets/ResWork/UI/Image/Hero/Awaken/sub window.png.meta new file mode 100644 index 000000000..9242d720d --- /dev/null +++ b/Assets/ResWork/UI/Image/Hero/Awaken/sub window.png.meta @@ -0,0 +1,153 @@ +fileFormatVersion: 2 +guid: 3e7766dd89dfbfd469d8a3c3c2effe5a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 1 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/tab menu_selected.png b/Assets/ResWork/UI/Image/Hero/Awaken/tab menu_selected.png new file mode 100644 index 000000000..401c31115 Binary files /dev/null and b/Assets/ResWork/UI/Image/Hero/Awaken/tab menu_selected.png differ diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/tab menu_selected.png.meta b/Assets/ResWork/UI/Image/Hero/Awaken/tab menu_selected.png.meta new file mode 100644 index 000000000..539b842f0 --- /dev/null +++ b/Assets/ResWork/UI/Image/Hero/Awaken/tab menu_selected.png.meta @@ -0,0 +1,153 @@ +fileFormatVersion: 2 +guid: 601df51e90937754a84bad8c9c53dfce +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 1 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/tab menu_unselected.png b/Assets/ResWork/UI/Image/Hero/Awaken/tab menu_unselected.png new file mode 100644 index 000000000..9f06560cb Binary files /dev/null and b/Assets/ResWork/UI/Image/Hero/Awaken/tab menu_unselected.png differ diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/tab menu_unselected.png.meta b/Assets/ResWork/UI/Image/Hero/Awaken/tab menu_unselected.png.meta new file mode 100644 index 000000000..948ee05a6 --- /dev/null +++ b/Assets/ResWork/UI/Image/Hero/Awaken/tab menu_unselected.png.meta @@ -0,0 +1,153 @@ +fileFormatVersion: 2 +guid: 54ac0b7bd53a07943898d6a36e98715a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 1 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/title acc.png b/Assets/ResWork/UI/Image/Hero/Awaken/title acc.png new file mode 100644 index 000000000..92541ed3f Binary files /dev/null and b/Assets/ResWork/UI/Image/Hero/Awaken/title acc.png differ diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/title acc.png.meta b/Assets/ResWork/UI/Image/Hero/Awaken/title acc.png.meta new file mode 100644 index 000000000..abd2ca010 --- /dev/null +++ b/Assets/ResWork/UI/Image/Hero/Awaken/title acc.png.meta @@ -0,0 +1,153 @@ +fileFormatVersion: 2 +guid: a4c7ce7d3b33b1349874f801b374a418 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 1 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/top bar.png b/Assets/ResWork/UI/Image/Hero/Awaken/top bar.png new file mode 100644 index 000000000..008d763b8 Binary files /dev/null and b/Assets/ResWork/UI/Image/Hero/Awaken/top bar.png differ diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/top bar.png.meta b/Assets/ResWork/UI/Image/Hero/Awaken/top bar.png.meta new file mode 100644 index 000000000..f4e29278a --- /dev/null +++ b/Assets/ResWork/UI/Image/Hero/Awaken/top bar.png.meta @@ -0,0 +1,153 @@ +fileFormatVersion: 2 +guid: 0e67e474f8785574597afcd2895765d9 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 1 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/window black.png b/Assets/ResWork/UI/Image/Hero/Awaken/window black.png new file mode 100644 index 000000000..fceb2439d Binary files /dev/null and b/Assets/ResWork/UI/Image/Hero/Awaken/window black.png differ diff --git a/Assets/ResWork/UI/Image/Hero/Awaken/window black.png.meta b/Assets/ResWork/UI/Image/Hero/Awaken/window black.png.meta new file mode 100644 index 000000000..98c536a73 --- /dev/null +++ b/Assets/ResWork/UI/Image/Hero/Awaken/window black.png.meta @@ -0,0 +1,153 @@ +fileFormatVersion: 2 +guid: d6614171eee16ad4e8142c3e5898c305 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 1 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 50, y: 50, z: 50, w: 50} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 1537655665 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResWork/UIPrefabs/PC/Awaken/PCAwakenCard.prefab b/Assets/ResWork/UIPrefabs/PC/Awaken/PCAwakenCard.prefab index 6fbe80f38..4ea387e21 100644 --- a/Assets/ResWork/UIPrefabs/PC/Awaken/PCAwakenCard.prefab +++ b/Assets/ResWork/UIPrefabs/PC/Awaken/PCAwakenCard.prefab @@ -9,10 +9,8 @@ GameObject: serializedVersion: 6 m_Component: - component: {fileID: 1922603098054248003} - - component: {fileID: 3672026664770803817} - - component: {fileID: 8322541227853373553} m_Layer: 5 - m_Name: New Image + m_Name: title m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 @@ -31,53 +29,17 @@ RectTransform: m_ConstrainProportionsScale: 0 m_Children: - {fileID: 3296152157140977511} + - {fileID: 3715164489237709481} - {fileID: 6904619321993005165} - {fileID: 7110536794628296366} + - {fileID: 6262696938209866476} m_Father: {fileID: 5852490434265076672} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 1} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -154.5, y: -57.3} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: -57.3} m_SizeDelta: {x: 309, y: 65} m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &3672026664770803817 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 591662889883859177} - m_CullTransparentMesh: 1 ---- !u!114 &8322541227853373553 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 591662889883859177} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 8c910df4585efad43bd233bb61efe072, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 --- !u!1 &1146706132478193040 GameObject: m_ObjectHideFlags: 0 @@ -112,8 +74,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -237.3, y: 0} - m_SizeDelta: {x: 9, y: 45} + m_AnchoredPosition: {x: -105, y: 18.1} + m_SizeDelta: {x: 64, y: 64} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &6798876975315182496 CanvasRenderer: @@ -143,7 +105,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: b4feec83e9ca7ff449408367e4038876, type: 3} + m_Sprite: {fileID: 21300000, guid: a4c7ce7d3b33b1349874f801b374a418, type: 3} m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 @@ -187,8 +149,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 1} m_AnchorMax: {x: 0.5, y: 1} - m_AnchoredPosition: {x: 0, y: -214} - m_SizeDelta: {x: 123, y: 126} + m_AnchoredPosition: {x: -0, y: -182.22} + m_SizeDelta: {x: 137.18, y: 153.75} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &7209114331931366572 CanvasRenderer: @@ -218,7 +180,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: ccea7ae921c59b842b029b2528444369, type: 3} + m_Sprite: {fileID: 21300000, guid: 6fc2abc1c1c62ba47a6f5cd1020ab50b, type: 3} m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 @@ -265,8 +227,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 1, y: 0} m_AnchorMax: {x: 1, y: 0} - m_AnchoredPosition: {x: -143.94, y: 42.6} - m_SizeDelta: {x: 173.55, y: 59} + m_AnchoredPosition: {x: -220.3, y: 94.599976} + m_SizeDelta: {x: 219.68, y: 83.36} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &4587998222682491848 CanvasRenderer: @@ -296,7 +258,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 446ecb32d450bdf46b1187b2d99254ab, type: 3} + m_Sprite: {fileID: 21300000, guid: 70b6642616821ac4f92f46e23f41a47f, type: 3} m_Type: 1 m_PreserveAspect: 0 m_FillCenter: 1 @@ -534,7 +496,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: -1.2499847, y: 0} + m_AnchoredPosition: {x: -1.25, y: 0} m_SizeDelta: {x: -2.5, y: -4} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &2363576377926059936 @@ -565,7 +527,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: e39ad356dbc0e9649b5cca8d00a0a8d5, type: 3} + m_Sprite: {fileID: 21300000, guid: 410de795ee05ec649a61da73ae257c9b, type: 3} m_Type: 1 m_PreserveAspect: 0 m_FillCenter: 1 @@ -609,7 +571,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: -14.8} m_SizeDelta: {x: 150, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &2805506541020763122 @@ -668,8 +630,8 @@ MonoBehaviour: m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_fontSize: 35 - m_fontSizeBase: 35 + m_fontSize: 25 + m_fontSizeBase: 25 m_fontWeight: 400 m_enableAutoSizing: 0 m_fontSizeMin: 10 @@ -747,8 +709,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 10.74, y: 12.5} - m_SizeDelta: {x: 294.46, y: 28} + m_AnchoredPosition: {x: 3.3, y: 58} + m_SizeDelta: {x: 220, y: 28} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2779687976860854352 MonoBehaviour: @@ -797,7 +759,7 @@ MonoBehaviour: m_MinValue: 0 m_MaxValue: 1 m_WholeNumbers: 0 - m_Value: 0.326 + m_Value: 1 m_OnValueChanged: m_PersistentCalls: m_Calls: [] @@ -835,7 +797,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -139.8, y: 0} + m_AnchoredPosition: {x: 0, y: 18.8} m_SizeDelta: {x: 150, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &5365642571552916545 @@ -894,14 +856,14 @@ MonoBehaviour: m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_fontSize: 55 - m_fontSizeBase: 55 + m_fontSize: 30 + m_fontSizeBase: 30 m_fontWeight: 400 m_enableAutoSizing: 0 m_fontSizeMin: 10 m_fontSizeMax: 40 m_fontStyle: 0 - m_HorizontalAlignment: 1 + m_HorizontalAlignment: 2 m_VerticalAlignment: 4096 m_textAlignment: 65535 m_characterSpacing: 0 @@ -971,15 +933,15 @@ RectTransform: - {fileID: 1922603098054248003} - {fileID: 3611001103241445239} - {fileID: 5949060851685020944} - - {fileID: 5901629354347175684} - {fileID: 8874865963589611492} - {fileID: 3056985944752872380} + - {fileID: 5901629354347175684} m_Father: {fileID: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 445.88, y: 726.77} + m_SizeDelta: {x: 445.88, y: 690.62} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1795356023270639513 MonoBehaviour: @@ -1079,14 +1041,14 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.8235295, g: 0.81568635, b: 0.8470589, a: 1} + m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 0 m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 1f4213f1679e640478b781d492e2283d, type: 3} + m_Sprite: {fileID: 21300000, guid: 514fba7e342918441a7024c71844a09b, type: 3} m_Type: 1 m_PreserveAspect: 0 m_FillCenter: 1 @@ -1131,8 +1093,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -155, y: 3.4} - m_SizeDelta: {x: 58, y: 55} + m_AnchoredPosition: {x: -119.55, y: -0.32} + m_SizeDelta: {x: 37.42, y: 38.27} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &8473217375889849832 CanvasRenderer: @@ -1162,7 +1124,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: b48764112d07eec4491e5d63453c9a49, type: 3} + m_Sprite: {fileID: 21300000, guid: 8dd0e63032365414abd09327a8b8655a, type: 3} m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 @@ -1206,7 +1168,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: -2} + m_AnchoredPosition: {x: 0, y: -1} m_SizeDelta: {x: 150, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &1241488669987682650 @@ -1265,8 +1227,8 @@ MonoBehaviour: m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_fontSize: 30 - m_fontSizeBase: 30 + m_fontSize: 25 + m_fontSizeBase: 25 m_fontWeight: 400 m_enableAutoSizing: 0 m_fontSizeMin: 10 @@ -1307,6 +1269,81 @@ MonoBehaviour: m_hasFontAssetChanged: 0 m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!1 &6470222896403979559 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6262696938209866476} + - component: {fileID: 3342417428349238591} + - component: {fileID: 3002271489980881480} + m_Layer: 5 + m_Name: New Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6262696938209866476 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6470222896403979559} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1922603098054248003} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 105, y: 18.1} + m_SizeDelta: {x: 64, y: 64} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &3342417428349238591 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6470222896403979559} + m_CullTransparentMesh: 1 +--- !u!114 &3002271489980881480 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6470222896403979559} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: a4c7ce7d3b33b1349874f801b374a418, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!1 &6796658515490341815 GameObject: m_ObjectHideFlags: 0 @@ -1372,7 +1409,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 203175cd949d22c4291717ac68bc962a, type: 3} + m_Sprite: {fileID: 21300000, guid: 011264d785fbe964eb3bd160bbfcdb22, type: 3} m_Type: 1 m_PreserveAspect: 0 m_FillCenter: 1 @@ -1417,7 +1454,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: -12.8} m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &353380988717692274 @@ -1451,8 +1488,7 @@ MonoBehaviour: m_text: "\uAC15\uD654" m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: a387e325271126742ad15569dba1ac57, type: 2} - m_sharedMaterial: {fileID: -6459762427321423278, guid: a387e325271126742ad15569dba1ac57, - type: 2} + m_sharedMaterial: {fileID: 2100000, guid: 6d7cd7be388f7ca40a8ad4491be308b8, type: 2} m_fontSharedMaterials: [] m_fontMaterial: {fileID: 0} m_fontMaterials: [] @@ -1568,8 +1604,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 1, y: 0} m_AnchorMax: {x: 1, y: 0} - m_AnchoredPosition: {x: -143.94, y: 42.6} - m_SizeDelta: {x: 173.55, y: 59} + m_AnchoredPosition: {x: -220.3, y: 94.6} + m_SizeDelta: {x: 219.68, y: 83.36} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &144300666927787157 CanvasRenderer: @@ -1599,7 +1635,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 446ecb32d450bdf46b1187b2d99254ab, type: 3} + m_Sprite: {fileID: 21300000, guid: 70b6642616821ac4f92f46e23f41a47f, type: 3} m_Type: 1 m_PreserveAspect: 0 m_FillCenter: 1 @@ -1732,7 +1768,7 @@ MonoBehaviour: m_Top: 0 m_Bottom: 0 m_ChildAlignment: 0 - m_Spacing: 8 + m_Spacing: -3 m_ChildForceExpandWidth: 0 m_ChildForceExpandHeight: 0 m_ChildControlWidth: 0 @@ -1754,6 +1790,81 @@ MonoBehaviour: m_EditorClassIdentifier: m_HorizontalFit: 0 m_VerticalFit: 2 +--- !u!1 &7560934862462687474 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3715164489237709481} + - component: {fileID: 5292522551824868332} + - component: {fileID: 1142372090086568837} + m_Layer: 5 + m_Name: statbg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3715164489237709481 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7560934862462687474} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1922603098054248003} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -0.94, y: -14.9} + m_SizeDelta: {x: 112.36, y: 29.8} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &5292522551824868332 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7560934862462687474} + m_CullTransparentMesh: 1 +--- !u!114 &1142372090086568837 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7560934862462687474} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 623cb403a7e04df42b0f3706b4e3a411, type: 3} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!1 &8538509757781054255 GameObject: m_ObjectHideFlags: 0 @@ -1788,7 +1899,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -36.4, y: 0} + m_AnchoredPosition: {x: -5, y: 0} m_SizeDelta: {x: 150, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &1185011815391674648 @@ -1822,15 +1933,14 @@ MonoBehaviour: m_text: 000/000 m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: a387e325271126742ad15569dba1ac57, type: 2} - m_sharedMaterial: {fileID: -6459762427321423278, guid: a387e325271126742ad15569dba1ac57, - type: 2} + m_sharedMaterial: {fileID: 2100000, guid: 6d7cd7be388f7ca40a8ad4491be308b8, type: 2} m_fontSharedMaterials: [] m_fontMaterial: {fileID: 0} m_fontMaterials: [] m_fontColor32: serializedVersion: 2 - rgba: 4278190080 - m_fontColor: {r: 0, g: 0, b: 0, a: 1} + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} m_enableVertexGradient: 0 m_colorMode: 3 m_fontColorGradient: @@ -1847,14 +1957,14 @@ MonoBehaviour: m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_fontSize: 20 - m_fontSizeBase: 20 + m_fontSize: 15 + m_fontSizeBase: 15 m_fontWeight: 400 m_enableAutoSizing: 0 m_fontSizeMin: 10 m_fontSizeMax: 40 m_fontStyle: 0 - m_HorizontalAlignment: 4 + m_HorizontalAlignment: 2 m_VerticalAlignment: 4096 m_textAlignment: 65535 m_characterSpacing: -3 @@ -1924,7 +2034,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: -12.799999} m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &505437835460253539 @@ -1958,8 +2068,7 @@ MonoBehaviour: m_text: "\uAC01" m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: a387e325271126742ad15569dba1ac57, type: 2} - m_sharedMaterial: {fileID: -6459762427321423278, guid: a387e325271126742ad15569dba1ac57, - type: 2} + m_sharedMaterial: {fileID: 2100000, guid: 6d7cd7be388f7ca40a8ad4491be308b8, type: 2} m_fontSharedMaterials: [] m_fontMaterial: {fileID: 0} m_fontMaterials: [] @@ -2074,8 +2183,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: -133.57} - m_SizeDelta: {x: 300, y: 226.93} + m_AnchoredPosition: {x: 0, y: -99.3} + m_SizeDelta: {x: 340, y: 226.93} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &904374875674523046 CanvasRenderer: @@ -2092,7 +2201,7 @@ MonoBehaviour: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 8879281557895214689} - m_Enabled: 1 + m_Enabled: 0 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 1aa08ab6e0800fa44ae55d278d1423e3, type: 3} m_Name: @@ -2137,7 +2246,7 @@ PrefabInstance: m_Modifications: - target: {fileID: 2913569658229331, guid: 150bed98d110cb24292c78f18534decd, type: 3} propertyPath: m_AnchoredPosition.x - value: 45.5 + value: 33.5 objectReference: {fileID: 0} - target: {fileID: 3590403063326329916, guid: 150bed98d110cb24292c78f18534decd, type: 3} @@ -2169,10 +2278,35 @@ PrefabInstance: propertyPath: m_SizeDelta.y value: 26 objectReference: {fileID: 0} + - target: {fileID: 6864738522005250112, guid: 150bed98d110cb24292c78f18534decd, + type: 3} + propertyPath: m_LocalScale.x + value: 0.8 + objectReference: {fileID: 0} + - target: {fileID: 6864738522005250112, guid: 150bed98d110cb24292c78f18534decd, + type: 3} + propertyPath: m_LocalScale.y + value: 0.8 + objectReference: {fileID: 0} + - target: {fileID: 6864738522005250112, guid: 150bed98d110cb24292c78f18534decd, + type: 3} + propertyPath: m_LocalScale.z + value: 0.8 + objectReference: {fileID: 0} - target: {fileID: 6864738522005250112, guid: 150bed98d110cb24292c78f18534decd, type: 3} propertyPath: m_AnchoredPosition.x - value: 56.2 + value: 58.9 + objectReference: {fileID: 0} + - target: {fileID: 6864738522005250112, guid: 150bed98d110cb24292c78f18534decd, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -0.8 + objectReference: {fileID: 0} + - target: {fileID: 6864738522005250112, guid: 150bed98d110cb24292c78f18534decd, + type: 3} + propertyPath: m_ConstrainProportionsScale + value: 1 objectReference: {fileID: 0} - target: {fileID: 7765070059004976338, guid: 150bed98d110cb24292c78f18534decd, type: 3} @@ -2252,12 +2386,12 @@ PrefabInstance: - target: {fileID: 7765070059004976338, guid: 150bed98d110cb24292c78f18534decd, type: 3} propertyPath: m_AnchoredPosition.x - value: 118.7 + value: 215 objectReference: {fileID: 0} - target: {fileID: 7765070059004976338, guid: 150bed98d110cb24292c78f18534decd, type: 3} propertyPath: m_AnchoredPosition.y - value: 44.6 + value: 116.9 objectReference: {fileID: 0} - target: {fileID: 7765070059004976338, guid: 150bed98d110cb24292c78f18534decd, type: 3} diff --git a/Assets/ResWork/UIPrefabs/PC/Awaken/PCAwakenCardStatCard.prefab b/Assets/ResWork/UIPrefabs/PC/Awaken/PCAwakenCardStatCard.prefab index 0e5d7272f..88fd5bc82 100644 --- a/Assets/ResWork/UIPrefabs/PC/Awaken/PCAwakenCardStatCard.prefab +++ b/Assets/ResWork/UIPrefabs/PC/Awaken/PCAwakenCardStatCard.prefab @@ -29,14 +29,15 @@ RectTransform: m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: - - {fileID: 41189854298208498} - {fileID: 3036524648783085176} + - {fileID: 41189854298208498} + - {fileID: 7135843812301722545} m_Father: {fileID: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 300, y: 50} + m_SizeDelta: {x: 300, y: 40} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &3299557531922663690 MonoBehaviour: @@ -86,7 +87,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchoredPosition: {x: -60, y: 0} m_SizeDelta: {x: 150, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &5985774237982994431 @@ -117,7 +118,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: "\uC2A4\uD0EF 0 \uC99D\uAC00" + m_text: "\uD798 0" m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: a387e325271126742ad15569dba1ac57, type: 2} m_sharedMaterial: {fileID: -6459762427321423278, guid: a387e325271126742ad15569dba1ac57, @@ -127,8 +128,8 @@ MonoBehaviour: m_fontMaterials: [] m_fontColor32: serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} + rgba: 4284624941 + m_fontColor: {r: 0.1764706, g: 0.18823531, b: 0.38431376, a: 1} m_enableVertexGradient: 0 m_colorMode: 3 m_fontColorGradient: @@ -145,14 +146,14 @@ MonoBehaviour: m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_fontSize: 35 - m_fontSizeBase: 35 + m_fontSize: 25 + m_fontSizeBase: 25 m_fontWeight: 400 m_enableAutoSizing: 0 m_fontSizeMin: 10 m_fontSizeMax: 40 m_fontStyle: 0 - m_HorizontalAlignment: 2 + m_HorizontalAlignment: 1 m_VerticalAlignment: 4096 m_textAlignment: 65535 m_characterSpacing: -3 @@ -216,7 +217,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 - m_Children: [] + m_Children: + - {fileID: 6574169472529093581} m_Father: {fileID: 9712959063946537} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} @@ -252,7 +254,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 3b06875645f1f514391ec9f651113d0a, type: 3} + m_Sprite: {fileID: 21300000, guid: 623cb403a7e04df42b0f3706b4e3a411, type: 3} m_Type: 1 m_PreserveAspect: 0 m_FillCenter: 1 @@ -262,3 +264,212 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 +--- !u!1 &7907227155225776192 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6574169472529093581} + - component: {fileID: 5334693729215555263} + - component: {fileID: 1243523267760358924} + m_Layer: 5 + m_Name: New Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6574169472529093581 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7907227155225776192} + m_LocalRotation: {x: -0, y: 0, z: -0.7071068, w: -0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.3, y: 0.3, z: 0.3} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 3036524648783085176} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: -270} + m_AnchorMin: {x: 1, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 21.4, y: 0} + m_SizeDelta: {x: 128, y: 128} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &5334693729215555263 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7907227155225776192} + m_CullTransparentMesh: 1 +--- !u!114 &1243523267760358924 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7907227155225776192} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 54ac0b7bd53a07943898d6a36e98715a, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &8853341191681035835 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7135843812301722545} + - component: {fileID: 5022113809322980861} + - component: {fileID: 7349522827588989767} + m_Layer: 5 + m_Name: t_statval + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &7135843812301722545 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8853341191681035835} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 9712959063946537} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 55, y: 0} + m_SizeDelta: {x: 150, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &5022113809322980861 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8853341191681035835} + m_CullTransparentMesh: 1 +--- !u!114 &7349522827588989767 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8853341191681035835} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: +0 + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: a387e325271126742ad15569dba1ac57, type: 2} + m_sharedMaterial: {fileID: 2100000, guid: 6d7cd7be388f7ca40a8ad4491be308b8, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 25 + m_fontSizeBase: 25 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 10 + m_fontSizeMax: 40 + m_fontStyle: 0 + m_HorizontalAlignment: 4 + m_VerticalAlignment: 4096 + m_textAlignment: 65535 + m_characterSpacing: -3 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} diff --git a/Assets/Res_Addr/MainUI/NewGameUI.prefab b/Assets/Res_Addr/MainUI/NewGameUI.prefab index ddfbef668..1187143bd 100644 --- a/Assets/Res_Addr/MainUI/NewGameUI.prefab +++ b/Assets/Res_Addr/MainUI/NewGameUI.prefab @@ -1926,7 +1926,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 55, y: -30} + m_AnchoredPosition: {x: 960.00006, y: 0} m_SizeDelta: {x: 110, y: 60} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &3140077106984028941 @@ -1942,14 +1942,14 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_TabType: 1 - BGImage_on: menu button selected - BGImage_off: menu button + BGImage_on: btn_yellow + BGImage_off: btn_white gos_off: [] m_btn: {fileID: 5070920712555401613} images: - {fileID: 514891671830049397} - {fileID: 7204653064025071116} - TextCol_on: {r: 0.28627452, g: 0.16078432, b: 0.09019608, a: 1} + TextCol_on: {r: 1, g: 1, b: 1, a: 1} TextCol_off: {r: 1, g: 1, b: 1, a: 1} texts: - {fileID: 6986174286048149442} @@ -7725,15 +7725,14 @@ MonoBehaviour: m_text: "\uC815\uBCF4" m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: a387e325271126742ad15569dba1ac57, type: 2} - m_sharedMaterial: {fileID: -6459762427321423278, guid: a387e325271126742ad15569dba1ac57, - type: 2} + m_sharedMaterial: {fileID: 2100000, guid: 6d7cd7be388f7ca40a8ad4491be308b8, type: 2} m_fontSharedMaterials: [] m_fontMaterial: {fileID: 0} m_fontMaterials: [] m_fontColor32: serializedVersion: 2 - rgba: 4280427072 - m_fontColor: {r: 0.2509804, g: 0.13333334, b: 0.13333334, a: 1} + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} m_enableVertexGradient: 0 m_colorMode: 3 m_fontColorGradient: @@ -7750,8 +7749,8 @@ MonoBehaviour: m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_fontSize: 23 - m_fontSizeBase: 23 + m_fontSize: 30 + m_fontSizeBase: 30 m_fontWeight: 400 m_enableAutoSizing: 0 m_fontSizeMin: 10 @@ -15601,9 +15600,9 @@ RectTransform: - {fileID: 4043065717834482137} m_Father: {fileID: 7404742651207184332} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 0} + m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 0} - m_AnchoredPosition: {x: -837.3008, y: 146.7998} + m_AnchoredPosition: {x: 24, y: 76} m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &6973622397672271697 @@ -15623,8 +15622,8 @@ MonoBehaviour: m_Right: 0 m_Top: 0 m_Bottom: 0 - m_ChildAlignment: 0 - m_Spacing: 60 + m_ChildAlignment: 4 + m_Spacing: 5 m_ChildForceExpandWidth: 0 m_ChildForceExpandHeight: 0 m_ChildControlWidth: 0 @@ -23439,7 +23438,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 152, y: 151} + m_SizeDelta: {x: 110, y: 103} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &6703834618911386145 CanvasRenderer: @@ -23469,8 +23468,8 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: b5b8679e73e64b84f909dfeeed423b92, type: 3} - m_Type: 0 + m_Sprite: {fileID: 21300000, guid: 0427ca06361e97941a82b6f398c3042d, type: 3} + m_Type: 1 m_PreserveAspect: 0 m_FillCenter: 1 m_FillMethod: 4 @@ -39880,12 +39879,13 @@ RectTransform: m_ConstrainProportionsScale: 0 m_Children: - {fileID: 7120004827962788774} + - {fileID: 2747533434786159007} m_Father: {fileID: 6810771494914655753} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -95.7, y: 14.6} - m_SizeDelta: {x: 93, y: 92} + m_AnchoredPosition: {x: -157.96, y: 18.65} + m_SizeDelta: {x: 174.66, y: 169.61} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &1527034919196459279 CanvasRenderer: @@ -39915,8 +39915,8 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 0bfebb8b3a4a2724fb6e275ba73dd30e, type: 3} - m_Type: 0 + m_Sprite: {fileID: 21300000, guid: b5b02bcc53245ec4fb4d313b65c17cea, type: 3} + m_Type: 1 m_PreserveAspect: 0 m_FillCenter: 1 m_FillMethod: 4 @@ -48874,16 +48874,16 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 3304830966759791422} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: [] - m_Father: {fileID: 6810771494914655753} + m_Father: {fileID: 3028170226213933175} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -95.4, y: -45.9} + m_AnchoredPosition: {x: 0, y: -61.45} m_SizeDelta: {x: 150, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &5880050016607467312 @@ -48917,8 +48917,7 @@ MonoBehaviour: m_text: "\uD55C\uC190\uBB34\uAE30" m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: a387e325271126742ad15569dba1ac57, type: 2} - m_sharedMaterial: {fileID: -6459762427321423278, guid: a387e325271126742ad15569dba1ac57, - type: 2} + m_sharedMaterial: {fileID: 2100000, guid: 6d7cd7be388f7ca40a8ad4491be308b8, type: 2} m_fontSharedMaterials: [] m_fontMaterial: {fileID: 0} m_fontMaterials: [] @@ -49094,7 +49093,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 70.3, y: -1.5} + m_AnchoredPosition: {x: 126, y: 15.8} m_SizeDelta: {x: 150, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &8297267112803839546 @@ -57719,8 +57718,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 63.17, y: 40.56} - m_SizeDelta: {x: 132.93, y: 36.75} + m_AnchoredPosition: {x: 127.36, y: 77.93} + m_SizeDelta: {x: 168.75, y: 51.05} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &118772414703926653 CanvasRenderer: @@ -57750,7 +57749,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 866770029e6e57b4fb019f3df8da0134, type: 3} + m_Sprite: {fileID: 21300000, guid: 9252029c0376a22418c5fc11b2204644, type: 3} m_Type: 1 m_PreserveAspect: 0 m_FillCenter: 1 @@ -61353,14 +61352,14 @@ RectTransform: m_GameObject: {fileID: 4171149036910023589} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 + m_LocalScale: {x: 0.7, y: 0.7, z: 0.7} + m_ConstrainProportionsScale: 1 m_Children: [] m_Father: {fileID: 5797929273451651801} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 66.19922, y: -49.100586} + m_AnchoredPosition: {x: 47.7, y: -48.1} m_SizeDelta: {x: 41, y: 50} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &8868120760071909668 @@ -63441,7 +63440,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 70.3, y: -38.1} + m_AnchoredPosition: {x: 126.000015, y: -24.6} m_SizeDelta: {x: 150, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &5323538296947336345 @@ -67764,8 +67763,8 @@ MonoBehaviour: m_fontMaterials: [] m_fontColor32: serializedVersion: 2 - rgba: 4280427072 - m_fontColor: {r: 0.2509804, g: 0.13333334, b: 0.13333334, a: 1} + rgba: 4286599246 + m_fontColor: {r: 0.30588236, g: 0.3137255, b: 0.5019608, a: 1} m_enableVertexGradient: 0 m_colorMode: 3 m_fontColorGradient: @@ -71255,7 +71254,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0} m_AnchorMax: {x: 0.5, y: 0} - m_AnchoredPosition: {x: 0, y: -39.4} + m_AnchoredPosition: {x: 0, y: -19.6} m_SizeDelta: {x: 132.93, y: 36.75} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &1586191740012969715 @@ -71273,7 +71272,7 @@ MonoBehaviour: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 4852335921837052241} - m_Enabled: 1 + m_Enabled: 0 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: @@ -91768,7 +91767,7 @@ MonoBehaviour: m_Top: 0 m_Bottom: 0 m_ChildAlignment: 0 - m_Spacing: 18 + m_Spacing: 30 m_ChildForceExpandWidth: 0 m_ChildForceExpandHeight: 0 m_ChildControlWidth: 0 @@ -92966,8 +92965,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} + m_AnchoredPosition: {x: -19.650024, y: -35.09} + m_SizeDelta: {x: 19.65, y: -42.11} m_Pivot: {x: 0, y: 1} --- !u!222 &7338261898388767539 CanvasRenderer: @@ -93409,7 +93408,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 28e72c4db9020b044931b075277b3dca, type: 3} + m_Sprite: {fileID: 21300000, guid: 2d5f695aea5c42549b29fbe412ed97bf, type: 3} m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 @@ -94318,8 +94317,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} + m_AnchoredPosition: {x: 48.85, y: 19.16} + m_SizeDelta: {x: 114.87, y: 44.25} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &4152399868421002409 CanvasRenderer: @@ -94349,7 +94348,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 80799ed183877dc4f9f688bee435a8a8, type: 3} + m_Sprite: {fileID: 21300000, guid: d6614171eee16ad4e8142c3e5898c305, type: 3} m_Type: 1 m_PreserveAspect: 0 m_FillCenter: 1 @@ -96060,8 +96059,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: -54.530273} - m_SizeDelta: {x: 0, y: 109.04} + m_AnchoredPosition: {x: 0, y: -50.93} + m_SizeDelta: {x: 0, y: 101.87} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &6197593273248818495 CanvasRenderer: @@ -96091,7 +96090,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: db4737f5035fe4e409bfda7ee770bb8d, type: 3} + m_Sprite: {fileID: 21300000, guid: 0e67e474f8785574597afcd2895765d9, type: 3} m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 @@ -119755,7 +119754,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -683.9, y: 5.3} + m_AnchoredPosition: {x: -734.4, y: 5.3} m_SizeDelta: {x: 150, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &9082979483752945475 @@ -130711,7 +130710,6 @@ RectTransform: m_Children: - {fileID: 1754695923417094228} - {fileID: 3028170226213933175} - - {fileID: 2747533434786159007} - {fileID: 3397315887010639214} - {fileID: 3717121939629042655} - {fileID: 5280675726368018411} diff --git a/Assets/Script/Server/ServerClass.cs b/Assets/Script/Server/ServerClass.cs index c59cf36ae..69caf88d3 100644 --- a/Assets/Script/Server/ServerClass.cs +++ b/Assets/Script/Server/ServerClass.cs @@ -811,12 +811,12 @@ public partial class ServerData return Collection[key]; return 0; } - public void Add_CollectionLv(int id) + public void Add_CollectionLv(int id, int lv = 1) { var key = Get_Key(id); if (!Collection.ContainsKey(key)) Collection.Add(key, 0); - ++Collection[key]; + Collection[key] += lv; Collection[key].RandomizeCryptoKey(); } public double Get_CollectionMobKill(int id) @@ -2995,4 +2995,12 @@ public class SC_EssenceResult public int mileage; public List items; } +public class SC_CollectionResult +{ + public List result; +} +public class SC_CollectionResultData +{ + public int id, addvalue; +} #endregion \ No newline at end of file diff --git a/Assets/Script/Server/ServerInfo.cs b/Assets/Script/Server/ServerInfo.cs index bc14cc5ca..14ab4c2b3 100644 --- a/Assets/Script/Server/ServerInfo.cs +++ b/Assets/Script/Server/ServerInfo.cs @@ -1974,6 +1974,43 @@ public class ServerInfo : MyCoroutine Set_Coroutine(() => { Save_Relic_LvUp(relicid, _act); }, 2f); }); } + + public void Save_Collection_GetAll(eTargetCondition condition, int eMenuCategory, Action _act) + { + NetWait.Ins.Set(true); + PlayFabClientAPI.ExecuteCloudScript(new ExecuteCloudScriptRequest + { + FunctionName = MethodBase.GetCurrentMethod().Name, + GeneratePlayStreamEvent = true, + FunctionParameter = new + { + Token = m_LoginInfo.EntityToken.EntityToken, + Condition = condition, + Category = eMenuCategory, + } + }, + result => + { + if (result.Error == null) + { + NetWait.Ins.Set(false); + var str_result = result.FunctionResult.ToString(); + var error = MyErrorCheck(str_result); + // (0 성공, 1 실패 (유물 부족), 2 실패 (재료 부족), 3 실패 (최고 레벨), 4 실패 (없는 유물), 5 실패 (성급 0)) + switch (error) + { + case 0: _act?.Invoke(JsonConvert.DeserializeObject(str_result)); break; + case 1: ToastUI.Ins.Set(999900031); break; + } + } + else + Set_Coroutine(() => { Save_Collection_GetAll(condition, eMenuCategory, _act); }, 2f); + }, + fail => + { + Set_Coroutine(() => { Save_Collection_GetAll(condition, eMenuCategory, _act); }, 2f); + }); + } #endregion #region 우편 diff --git a/Assets/Script/UI/Collection/Equipment_Monster/Equipment/CollectionEquipmentCard.cs b/Assets/Script/UI/Collection/Equipment_Monster/Equipment/CollectionEquipmentCard.cs index 72d1fcd81..489560975 100644 --- a/Assets/Script/UI/Collection/Equipment_Monster/Equipment/CollectionEquipmentCard.cs +++ b/Assets/Script/UI/Collection/Equipment_Monster/Equipment/CollectionEquipmentCard.cs @@ -22,7 +22,8 @@ public class CollectionEquipmentCard : CollectionEMCardBase texts[2].text = $"{amount}/{count}"; slider_proc.value = DSUtil.Get_SliderValue((float)(amount / count)); - go_getreward.SetActive(amount >= count); + //go_getreward.SetActive(amount >= count); + go_getreward.SetActive(false); } bool CanGet(bool showtoast) diff --git a/Assets/Script/UI/Collection/Equipment_Monster/Equipment/CollectionEquipmentUI_Info.cs b/Assets/Script/UI/Collection/Equipment_Monster/Equipment/CollectionEquipmentUI_Info.cs index de7ffb037..51c856a5c 100644 --- a/Assets/Script/UI/Collection/Equipment_Monster/Equipment/CollectionEquipmentUI_Info.cs +++ b/Assets/Script/UI/Collection/Equipment_Monster/Equipment/CollectionEquipmentUI_Info.cs @@ -21,6 +21,27 @@ public class CollectionEquipmentUI_Info : CollectionEM_InfoBase } public void OnClick_GetAll() + { + var data = m_SelectCard.Get_Data() as CollectionListTableData; + ServerInfo.Ins.Save_Collection_GetAll(data.e_TargetCondition, data.e_MenuCategory, result => + { + var sdata = ServerInfo.Ins.m_ServerData; + for (int i = 0; i < result.result.Count; i++) + { + var temp = result.result[i]; + var Tdata = table_collectionlist.Ins.Get_Data(temp.id); + sdata.Use_Item(temp.id, temp.addvalue * Tdata.n_ConditionCount); + sdata.Add_CollectionLv(temp.id, temp.addvalue); + sdata.Add_MissionCount(ePurpose.EQUIP_ENCYCLOPEDIA_REWARDS); + sdata.Add_MissionCount(ePurpose.EQUIP_ENCYCLOPEDIA_REWARDS_ACC); + } + + CollectionEquipmentUI.Ins.Set_UI(); + MyValue.Get_ActorStatInfoorNull(eRole.PC); + }); + } + + void oldgetall() { var sdata = ServerInfo.Ins.m_ServerData; var data = m_SelectCard.Get_Data() as CollectionListTableData; diff --git a/Assets/Script/UI/Collection/Equipment_Monster/Monster/CollectionMonsterCard.cs b/Assets/Script/UI/Collection/Equipment_Monster/Monster/CollectionMonsterCard.cs index 8db4168a9..b856794ff 100644 --- a/Assets/Script/UI/Collection/Equipment_Monster/Monster/CollectionMonsterCard.cs +++ b/Assets/Script/UI/Collection/Equipment_Monster/Monster/CollectionMonsterCard.cs @@ -10,10 +10,12 @@ public class CollectionMonsterCard : CollectionEMCardBase var amount = sdata.Get_CollectionMobKill(m_Data.n_TargetValue); var lv = sdata.Get_CollectionLv(m_Data.n_TargetValue); var count = m_Data.Get_ConditionCount(lv); + texts[0].text = mobData.Get_Name(); texts[2].text = $"{amount}/{count}"; slider_proc.value = DSUtil.Get_SliderValue((float)(amount / count)); - go_getreward.SetActive(amount >= count); + //go_getreward.SetActive(amount >= count); + go_getreward.SetActive(false); } bool CanGet(bool showtoast) diff --git a/Assets/Script/UI/Collection/Equipment_Monster/Monster/CollectionMonsterUI_Info.cs b/Assets/Script/UI/Collection/Equipment_Monster/Monster/CollectionMonsterUI_Info.cs index f8ba3d050..575cb3a6c 100644 --- a/Assets/Script/UI/Collection/Equipment_Monster/Monster/CollectionMonsterUI_Info.cs +++ b/Assets/Script/UI/Collection/Equipment_Monster/Monster/CollectionMonsterUI_Info.cs @@ -1,6 +1,27 @@ public class CollectionMonsterUI_Info : CollectionEM_InfoBase { public void OnClick_GetAll() + { + var data = m_SelectCard.Get_Data() as CollectionListTableData; + ServerInfo.Ins.Save_Collection_GetAll(data.e_TargetCondition, data.e_MenuCategory, result => + { + var sdata = ServerInfo.Ins.m_ServerData; + for (int i = 0; i < result.result.Count; i++) + { + var temp = result.result[i]; + var Tdata = table_collectionlist.Ins.Get_Data(temp.id); + sdata.Use_CollectionMobKill(temp.id, temp.addvalue * Tdata.n_ConditionCount); + sdata.Add_CollectionLv(temp.id, temp.addvalue); + sdata.Add_MissionCount(ePurpose.EQUIP_ENCYCLOPEDIA_REWARDS); + sdata.Add_MissionCount(ePurpose.EQUIP_ENCYCLOPEDIA_REWARDS_ACC); + } + + CollectionMonsterUI.Ins.Set_UI(); + MyValue.Get_ActorStatInfoorNull(eRole.PC); + }); + } + + void oldgetall() { var sdata = ServerInfo.Ins.m_ServerData; var data = m_SelectCard.Get_Data() as CollectionListTableData; diff --git a/Assets/Script/UI/PC/Awaken/PCAwakenCard.cs b/Assets/Script/UI/PC/Awaken/PCAwakenCard.cs index 375458446..c1ee2246a 100644 --- a/Assets/Script/UI/PC/Awaken/PCAwakenCard.cs +++ b/Assets/Script/UI/PC/Awaken/PCAwakenCard.cs @@ -20,7 +20,7 @@ public class PCAwakenCard : CardBase { base.Set(_base); m_Stat = DSUtil.StringToEnum(_base.ToString()); - images[0].sprite = UIAtlasMgr.Ins.Get_Sprite($"awaken_{m_Stat} icon"); + images[0].sprite = UIAtlasMgr.Ins.Get_Sprite($"awaken_{m_Stat.ToString().ToLower()}_icon"); Set_UI(); }