boss_rush

This commit is contained in:
xiekaidong 2023-08-30 19:11:38 +08:00
parent 71709504a7
commit 211d7cc71e
162 changed files with 42849 additions and 4004 deletions

View File

@ -362,6 +362,23 @@ function table.shuffle(t)
return tab return tab
end end
function table.shuffleBySeed(t, seed)
if type(t)~="table" then
return
end
local tab = {}
local index = 1
while #t ~= 0 do
local n = GFunc.getRandomIndexBySeed(seed, 1, #t)
if t[n] ~= nil then
tab[index] = t[n]
table.remove(t,n)
index = index + 1
end
end
return tab
end
function table.clear(t) function table.clear(t)
if not t then if not t then
return return

View File

@ -140,6 +140,9 @@ BIReport.ITEM_GET_TYPE = {
OFFLINE_RECOVERY = "OfflineRecovery", OFFLINE_RECOVERY = "OfflineRecovery",
ACT_SUMMER = "ActSummer", ACT_SUMMER = "ActSummer",
ACT_HERO_FUND = "ActHeroFund", ACT_HERO_FUND = "ActHeroFund",
ACT_BOSS_RUSH_FIGHT_START = "ActBossRushFightStart",
ACT_BOSS_RUSH_FIGHT = "ActBossRushFight",
ACT_BOSS_RUSH_FUND = "ActBossRushFund",
} }
BIReport.ADS_CLICK_TYPE = { BIReport.ADS_CLICK_TYPE = {
@ -188,6 +191,7 @@ BIReport.BATTLE_TYPE = {
["5"] = "Arena", ["5"] = "Arena",
["6"] = "DungeonWeapon", ["6"] = "DungeonWeapon",
["7"] = "DungeonArmor", ["7"] = "DungeonArmor",
["8"] = "ActBossRush",
} }
BIReport.GIFT_TYPE = { BIReport.GIFT_TYPE = {
@ -950,6 +954,11 @@ function BIReport:postFightBegin(battleType, wave, chapterId, maxChapter, startT
fight_max_chapter = maxChapter, fight_max_chapter = maxChapter,
start_times = startTimes, start_times = startTimes,
} }
if EDITOR_MODE then
if not args.battle_type then
Logger.logFatal("============report postFightBegin 没有battle_type 请检查===========")
end
end
args.formation, args.famation_level = DataManager.FormationData:getStageFormationBIStr() args.formation, args.famation_level = DataManager.FormationData:getStageFormationBIStr()
self:report(EVENT_NAME_FIGHT, args) self:report(EVENT_NAME_FIGHT, args)
end end
@ -988,6 +997,11 @@ function BIReport:postFightEnd(battleType, battleData, chapterId, wave, duration
is_first_win = isFirstWin, is_first_win = isFirstWin,
isFianlStep = isFianlStep, isFianlStep = isFianlStep,
} }
if EDITOR_MODE then
if not args.battle_type then
Logger.logFatal("============report postFightEnd 没有battle_type 请检查===========")
end
end
args.formation, args.famation_level = DataManager.FormationData:getStageFormationBIStr() args.formation, args.famation_level = DataManager.FormationData:getStageFormationBIStr()
args.max_link_count = maxLinkCount args.max_link_count = maxLinkCount
@ -1020,6 +1034,11 @@ function BIReport:postShowFightSkillSelect(battleType, battleData, skillList, ch
skill = skillStr, skill = skillStr,
skill_num = skillNum, skill_num = skillNum,
} }
if EDITOR_MODE then
if not args.battle_type then
Logger.logFatal("============report postShowFightSkillSelect 没有battle_type 请检查===========")
end
end
self:report(EVENT_NAME_FIGHT, args) self:report(EVENT_NAME_FIGHT, args)
end end
@ -1048,6 +1067,11 @@ function BIReport:postFightSkillSelect(battleType, battleData, skillList, chapte
skill = skillStr, skill = skillStr,
skill_num = skillNum, skill_num = skillNum,
} }
if EDITOR_MODE then
if not args.battle_type then
Logger.logFatal("============report postFightSkillSelect 没有battle_type 请检查===========")
end
end
self:report(EVENT_NAME_FIGHT, args) self:report(EVENT_NAME_FIGHT, args)
end end

View File

@ -34,6 +34,7 @@ function DataManager:init()
self:initManager("SummonData", "app/userdata/summon/summon_data") self:initManager("SummonData", "app/userdata/summon/summon_data")
self:initManager("AIHelperData", "app/userdata/game_setting/ai_helper_data") self:initManager("AIHelperData", "app/userdata/game_setting/ai_helper_data")
self:initManager("HeroFundData", "app/userdata/activity/hero_fund/hero_fund_data") self:initManager("HeroFundData", "app/userdata/activity/hero_fund/hero_fund_data")
self:initManager("ActBossRushData", "app/userdata/activity/act_boss_rush/act_boss_rush_data")
end end
function DataManager:initManager(name, path) function DataManager:initManager(name, path)
@ -120,8 +121,10 @@ function DataManager:clear()
self.TaskData:clear() self.TaskData:clear()
self.AIHelperData:clear() self.AIHelperData:clear()
self.HeroFundData:clear() self.HeroFundData:clear()
self.ActBossRushData:clear()
ModuleManager.TaskManager:clear() ModuleManager.TaskManager:clear()
self:clearTryOpenFunc() self:clearTryOpenFunc()
self.activityBountyLevelMap = nil
end end
function DataManager:initWithServerData(data) function DataManager:initWithServerData(data)
@ -181,6 +184,7 @@ function DataManager:initWithServerData(data)
self.GrowthFundData:init(data.fund.funds) self.GrowthFundData:init(data.fund.funds)
end end
self.HeroFundData:init(data.hero_fund) self.HeroFundData:init(data.hero_fund)
self.ActBossRushData:init(data.boss_rush)
-- 任务数据最后初始化,依赖其他模块的数据 -- 任务数据最后初始化,依赖其他模块的数据
self.TaskData:init() self.TaskData:init()
@ -409,4 +413,21 @@ function DataManager:getManager(name, path)
return self[name] return self[name]
end end
---- 缓存一下活动战令
function DataManager:getActivityBountyLevelByActId(actId)
if not self.activityBountyLevelMap then
self.activityBountyLevelMap = {}
local cfg = ConfigManager:getConfig("activity_bounty_level")
for id, info in pairs(cfg) do
if info.act_id then
if not self.activityBountyLevelMap[info.act_id] then
self.activityBountyLevelMap[info.act_id] = {}
end
table.insert(self.activityBountyLevelMap[info.act_id], id)
end
end
end
return self.activityBountyLevelMap[actId]
end
return DataManager return DataManager

View File

@ -71,6 +71,8 @@ local MODULE_PATHS = {
SkinManager = "app/module/skin/skin_manager", SkinManager = "app/module/skin/skin_manager",
-- 英雄基金 -- 英雄基金
HeroFundManager = "app/module/activity/hero_fund/hero_fund_manager", HeroFundManager = "app/module/activity/hero_fund/hero_fund_manager",
-- 世界首领活动
ActBossRushManager = "app/module/activity/act_boss_rush/act_boss_rush_manager",
} }
-- 这里的key对应func_open里的id -- 这里的key对应func_open里的id

View File

@ -0,0 +1,132 @@
local act_fourteen_bounty = {
[1]={
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=1100,
["num_for_nothing"]="VwlcAw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=3,
["id_for_nothing"]="VQ==",
["num"]=1100,
["num_for_nothing"]="VwlcAw=="
}
},
[2]={
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=1101,
["num_for_nothing"]="VwlcAg=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=3,
["id_for_nothing"]="VQ==",
["num"]=1101,
["num_for_nothing"]="VwlcAg=="
}
},
[3]={
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=1102,
["num_for_nothing"]="VwlcAQ=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=3,
["id_for_nothing"]="VQ==",
["num"]=1102,
["num_for_nothing"]="VwlcAQ=="
}
},
[4]={
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=1103,
["num_for_nothing"]="VwlcAA=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=3,
["id_for_nothing"]="VQ==",
["num"]=1103,
["num_for_nothing"]="VwlcAA=="
}
},
[5]={
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=1104,
["num_for_nothing"]="VwlcBw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=3,
["id_for_nothing"]="VQ==",
["num"]=1104,
["num_for_nothing"]="VwlcBw=="
}
},
[6]={
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=1105,
["num_for_nothing"]="VwlcBg=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=3,
["id_for_nothing"]="VQ==",
["num"]=1105,
["num_for_nothing"]="VwlcBg=="
}
},
[7]={
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=1106,
["num_for_nothing"]="VwlcBQ=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=3,
["id_for_nothing"]="VQ==",
["num"]=1106,
["num_for_nothing"]="VwlcBQ=="
}
}
}
local config = {
data=act_fourteen_bounty,count=7
}
return config

View File

@ -0,0 +1,10 @@
fileFormatVersion: 2
guid: 98e6ac4cce3094f4ca2032007239b1f9
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}

View File

@ -0,0 +1,166 @@
local act_fourteen_exchange = {
[1]={
["stage"]=1,
["cost"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=51,
["id_for_nothing"]="Uwk=",
["num"]=100,
["num_for_nothing"]="Vwhc"
},
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=100,
["num_for_nothing"]="Vwhc"
},
["limit"]=1
},
[2]={
["stage"]=2,
["cost"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=51,
["id_for_nothing"]="Uwk=",
["num"]=101,
["num_for_nothing"]="Vwhd"
},
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=101,
["num_for_nothing"]="Vwhd"
},
["limit"]=1
},
[3]={
["stage"]=3,
["cost"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=51,
["id_for_nothing"]="Uwk=",
["num"]=102,
["num_for_nothing"]="Vwhe"
},
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=102,
["num_for_nothing"]="Vwhe"
},
["limit"]=1
},
[4]={
["stage"]=4,
["cost"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=51,
["id_for_nothing"]="Uwk=",
["num"]=103,
["num_for_nothing"]="Vwhf"
},
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=103,
["num_for_nothing"]="Vwhf"
},
["limit"]=1
},
[5]={
["stage"]=5,
["cost"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=51,
["id_for_nothing"]="Uwk=",
["num"]=104,
["num_for_nothing"]="VwhY"
},
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=104,
["num_for_nothing"]="VwhY"
},
["limit"]=1
},
[6]={
["stage"]=6,
["cost"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=51,
["id_for_nothing"]="Uwk=",
["num"]=105,
["num_for_nothing"]="VwhZ"
},
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=105,
["num_for_nothing"]="VwhZ"
},
["limit"]=1
},
[7]={
["stage"]=7,
["cost"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=51,
["id_for_nothing"]="Uwk=",
["num"]=106,
["num_for_nothing"]="Vwha"
},
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=106,
["num_for_nothing"]="Vwha"
},
["limit"]=1
},
[8]={
["stage"]=8,
["cost"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=51,
["id_for_nothing"]="Uwk=",
["num"]=107,
["num_for_nothing"]="Vwhb"
},
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=107,
["num_for_nothing"]="Vwhb"
},
["limit"]=1
}
}
local config = {
data=act_fourteen_exchange,count=8
}
return config

View File

@ -0,0 +1,10 @@
fileFormatVersion: 2
guid: 057f6606cfb30ab43a95c25d2f0639a9
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}

View File

@ -0,0 +1,798 @@
local act_fourteen_quest = {
[1]={
["stage"]=1,
["quest"]=23,
["none"]="深渊挑战 8",
["num"]=1,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=100,
["num_for_nothing"]="Vwhc"
}
}
},
[2]={
["stage"]=1,
["quest"]=23,
["none"]="角色升到40级",
["num"]=2,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=200,
["num_for_nothing"]="VAhc"
}
}
},
[3]={
["stage"]=1,
["quest"]=23,
["none"]="竞技场达到白银I",
["num"]=3,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=300,
["num_for_nothing"]="VQhc"
}
}
},
[4]={
["stage"]=1,
["quest"]=23,
["none"]="广告次数累计达3",
["num"]=4,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=400,
["num_for_nothing"]="Ughc"
}
}
},
[5]={
["stage"]=1,
["quest"]=23,
["none"]="完成所有任务",
["num"]=5,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=1000,
["num_for_nothing"]="VwhcAw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=3,
["id_for_nothing"]="VQ==",
["num"]=100,
["num_for_nothing"]="Vwhc"
}
}
},
[6]={
["stage"]=2,
["quest"]=23,
["none"]="武器升级 x次",
["num"]=6,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=500,
["num_for_nothing"]="Uwhc"
}
}
},
[7]={
["stage"]=2,
["quest"]=23,
["none"]="时空裂隙3-6",
["num"]=7,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=600,
["num_for_nothing"]="UAhc"
}
}
},
[8]={
["stage"]=2,
["quest"]=23,
["none"]="开启主线宝箱 x个",
["num"]=8,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=700,
["num_for_nothing"]="UQhc"
}
}
},
[9]={
["stage"]=2,
["quest"]=23,
["none"]="矿车拦截 7",
["num"]=9,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=800,
["num_for_nothing"]="Xghc"
}
}
},
[10]={
["stage"]=2,
["quest"]=23,
["none"]="完成所有任务",
["num"]=10,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=200,
["num_for_nothing"]="VAhc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=3,
["id_for_nothing"]="VQ==",
["num"]=100,
["num_for_nothing"]="Vwhc"
}
}
},
[11]={
["stage"]=3,
["quest"]=23,
["none"]="灯神之塔 9",
["num"]=11,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=1100,
["num_for_nothing"]="VwlcAw=="
}
}
},
[12]={
["stage"]=3,
["quest"]=23,
["none"]="角色升级x次",
["num"]=12,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=1200,
["num_for_nothing"]="VwpcAw=="
}
}
},
[13]={
["stage"]=3,
["quest"]=23,
["none"]="深渊挑战 10",
["num"]=13,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=1300,
["num_for_nothing"]="VwtcAw=="
}
}
},
[14]={
["stage"]=3,
["quest"]=23,
["none"]="广告次数累计达8",
["num"]=14,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=1400,
["num_for_nothing"]="VwxcAw=="
}
}
},
[15]={
["stage"]=3,
["quest"]=23,
["none"]="完成所有任务",
["num"]=15,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=3000,
["num_for_nothing"]="VQhcAw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=3,
["id_for_nothing"]="VQ==",
["num"]=100,
["num_for_nothing"]="Vwhc"
}
}
},
[16]={
["stage"]=4,
["quest"]=23,
["none"]="每日挑战 胜利x次",
["num"]=16,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=1500,
["num_for_nothing"]="Vw1cAw=="
}
}
},
[17]={
["stage"]=4,
["quest"]=23,
["none"]="矿车拦截 10",
["num"]=17,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=1600,
["num_for_nothing"]="Vw5cAw=="
}
}
},
[18]={
["stage"]=4,
["quest"]=23,
["none"]="时空裂隙4-3",
["num"]=18,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=1700,
["num_for_nothing"]="Vw9cAw=="
}
}
},
[19]={
["stage"]=4,
["quest"]=23,
["none"]="开宝箱 x次",
["num"]=19,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=1800,
["num_for_nothing"]="VwBcAw=="
}
}
},
[20]={
["stage"]=4,
["quest"]=23,
["none"]="完成所有任务",
["num"]=20,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=4000,
["num_for_nothing"]="UghcAw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=3,
["id_for_nothing"]="VQ==",
["num"]=100,
["num_for_nothing"]="Vwhc"
}
}
},
[21]={
["stage"]=5,
["quest"]=23,
["none"]="广告次数累计达15",
["num"]=21,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=2100,
["num_for_nothing"]="VAlcAw=="
}
}
},
[22]={
["stage"]=5,
["quest"]=23,
["none"]="通关波次 x次",
["num"]=22,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=2200,
["num_for_nothing"]="VApcAw=="
}
}
},
[23]={
["stage"]=5,
["quest"]=23,
["none"]="灯神之塔 10",
["num"]=23,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=2300,
["num_for_nothing"]="VAtcAw=="
}
}
},
[24]={
["stage"]=5,
["quest"]=23,
["none"]="竞技场达到白银III",
["num"]=24,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=2400,
["num_for_nothing"]="VAxcAw=="
}
}
},
[25]={
["stage"]=5,
["quest"]=23,
["none"]="完成所有任务",
["num"]=25,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=5000,
["num_for_nothing"]="UwhcAw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=3,
["id_for_nothing"]="VQ==",
["num"]=100,
["num_for_nothing"]="Vwhc"
}
}
},
[26]={
["stage"]=6,
["quest"]=23,
["none"]="击杀BOSS x次",
["num"]=26,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=2500,
["num_for_nothing"]="VA1cAw=="
}
}
},
[27]={
["stage"]=6,
["quest"]=23,
["none"]="深渊挑战 13",
["num"]=27,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=2600,
["num_for_nothing"]="VA5cAw=="
}
}
},
[28]={
["stage"]=6,
["quest"]=23,
["none"]="开启主线宝箱 x个",
["num"]=28,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=2700,
["num_for_nothing"]="VA9cAw=="
}
}
},
[29]={
["stage"]=6,
["quest"]=23,
["none"]="矿车拦截 13",
["num"]=29,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=2800,
["num_for_nothing"]="VABcAw=="
}
}
},
[30]={
["stage"]=6,
["quest"]=23,
["none"]="完成所有任务",
["num"]=30,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=6000,
["num_for_nothing"]="UAhcAw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=3,
["id_for_nothing"]="VQ==",
["num"]=100,
["num_for_nothing"]="Vwhc"
}
}
},
[31]={
["stage"]=7,
["quest"]=23,
["none"]="时空裂隙5-2",
["num"]=31,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=3100,
["num_for_nothing"]="VQlcAw=="
}
}
},
[32]={
["stage"]=7,
["quest"]=23,
["none"]="每日挑战 胜利x次",
["num"]=32,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=3200,
["num_for_nothing"]="VQpcAw=="
}
}
},
[33]={
["stage"]=7,
["quest"]=23,
["none"]="开宝箱x次",
["num"]=33,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=3300,
["num_for_nothing"]="VQtcAw=="
}
}
},
[34]={
["stage"]=7,
["quest"]=23,
["none"]="广告次数累计达20",
["num"]=34,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=3400,
["num_for_nothing"]="VQxcAw=="
}
}
},
[35]={
["stage"]=7,
["quest"]=23,
["none"]="完成所有任务",
["num"]=35,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=7000,
["num_for_nothing"]="UQhcAw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=3,
["id_for_nothing"]="VQ==",
["num"]=100,
["num_for_nothing"]="Vwhc"
}
}
},
[36]={
["stage"]=8,
["quest"]=23,
["none"]="装备升级 x次",
["num"]=36,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=3500,
["num_for_nothing"]="VQ1cAw=="
}
}
},
[37]={
["stage"]=8,
["quest"]=23,
["none"]="灯神之塔 12",
["num"]=37,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=3600,
["num_for_nothing"]="VQ5cAw=="
}
}
},
[38]={
["stage"]=8,
["quest"]=23,
["none"]="通关波次 x次",
["num"]=38,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=3700,
["num_for_nothing"]="VQ9cAw=="
}
}
},
[39]={
["stage"]=8,
["quest"]=23,
["none"]="矿车拦截 15",
["num"]=39,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=3800,
["num_for_nothing"]="VQBcAw=="
}
}
},
[40]={
["stage"]=8,
["quest"]=23,
["none"]="完成所有任务",
["num"]=40,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=8000,
["num_for_nothing"]="XghcAw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=3,
["id_for_nothing"]="VQ==",
["num"]=100,
["num_for_nothing"]="Vwhc"
}
}
},
[41]={
["stage"]=9,
["quest"]=23,
["none"]="竞技场达到黄金段位",
["num"]=41,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=4100,
["num_for_nothing"]="UglcAw=="
}
}
},
[42]={
["stage"]=9,
["quest"]=23,
["none"]="广告次数累计达30",
["num"]=42,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=4200,
["num_for_nothing"]="UgpcAw=="
}
}
},
[43]={
["stage"]=9,
["quest"]=23,
["none"]="角色升到50级",
["num"]=43,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=4300,
["num_for_nothing"]="UgtcAw=="
}
}
},
[44]={
["stage"]=9,
["quest"]=23,
["none"]="深渊挑战 15",
["num"]=44,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=4400,
["num_for_nothing"]="UgxcAw=="
}
}
},
[45]={
["stage"]=9,
["quest"]=23,
["none"]="完成所有任务",
["num"]=45,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=9000,
["num_for_nothing"]="XwhcAw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=3,
["id_for_nothing"]="VQ==",
["num"]=100,
["num_for_nothing"]="Vwhc"
}
}
}
}
local config = {
data=act_fourteen_quest,count=45
}
return config

View File

@ -0,0 +1,10 @@
fileFormatVersion: 2
guid: ae4732ca8e76a1243ad3c6e8d72d01b3
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}

View File

@ -429,8 +429,8 @@ local act_gift = {
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=53001, ["id"]=5,
["id_for_nothing"]="UwtcA2Q=", ["id_for_nothing"]="Uw==",
["num"]=20, ["num"]=20,
["num_for_nothing"]="VAg=" ["num_for_nothing"]="VAg="
}, },
@ -1568,6 +1568,16 @@ local act_gift = {
["cd"]=1, ["cd"]=1,
["value"]=1000 ["value"]=1000
}, },
[140403]={
["type"]=14,
["recharge_id"]=11,
["limit"]=1
},
[140404]={
["type"]=14,
["recharge_id"]=12,
["limit"]=1
},
[130002]={ [130002]={
["type"]=13, ["type"]=13,
["recharge_id"]=11, ["recharge_id"]=11,
@ -1676,874 +1686,13 @@ local act_gift = {
["limit"]=1, ["limit"]=1,
["value"]=1100 ["value"]=1100
}, },
[140403]={ [150403]={
["type"]=14, ["type"]=14,
["recharge_id"]=10, ["recharge_id"]=11,
["limit"]=1 ["limit"]=1
},
[140404]={
["type"]=14,
["recharge_id"]=12,
["limit"]=1
},
[150102]={
["type"]=15,
["parameter_pro"]={
0,
10
},
["recharge_id"]=5,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=6000,
["num_for_nothing"]="UAhcAw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1001,
["id_for_nothing"]="VwhcAg==",
["num"]=60,
["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1002,
["id_for_nothing"]="VwhcAQ==",
["num"]=5,
["num_for_nothing"]="Uw=="
}
},
["time_type"]=1,
["limit_time"]=6,
["cd"]=1,
["value"]=800
},
[150202]={
["type"]=15,
["parameter_pro"]={
20,
30
},
["recharge_id"]=7,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=6000,
["num_for_nothing"]="UAhcAw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1001,
["id_for_nothing"]="VwhcAg==",
["num"]=60,
["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1002,
["id_for_nothing"]="VwhcAQ==",
["num"]=40,
["num_for_nothing"]="Ugg="
}
},
["time_type"]=1,
["limit_time"]=6,
["cd"]=1,
["value"]=800
},
[150302]={
["type"]=15,
["parameter_pro"]={
40,
50
},
["recharge_id"]=8,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=10000,
["num_for_nothing"]="VwhcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1002,
["id_for_nothing"]="VwhcAQ==",
["num"]=60,
["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1003,
["id_for_nothing"]="VwhcAA==",
["num"]=40,
["num_for_nothing"]="Ugg="
}
},
["time_type"]=1,
["limit_time"]=6,
["cd"]=1,
["value"]=800
},
[150402]={
["type"]=15,
["parameter_pro"]={
60,
70
},
["recharge_id"]=8,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=10000,
["num_for_nothing"]="VwhcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1002,
["id_for_nothing"]="VwhcAQ==",
["num"]=60,
["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1003,
["id_for_nothing"]="VwhcAA==",
["num"]=40,
["num_for_nothing"]="Ugg="
}
},
["time_type"]=1,
["limit_time"]=6,
["cd"]=1,
["value"]=800
},
[150502]={
["type"]=15,
["parameter_pro"]={
80,
90
},
["recharge_id"]=12,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=16000,
["num_for_nothing"]="Vw5cA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1002,
["id_for_nothing"]="VwhcAQ==",
["num"]=40,
["num_for_nothing"]="Ugg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1003,
["id_for_nothing"]="VwhcAA==",
["num"]=60,
["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1004,
["id_for_nothing"]="VwhcBw==",
["num"]=60,
["num_for_nothing"]="UAg="
}
},
["time_type"]=1,
["limit_time"]=6,
["cd"]=1,
["value"]=800
},
[150602]={
["type"]=15,
["parameter_pro"]={
100,
110
},
["recharge_id"]=12,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=16000,
["num_for_nothing"]="Vw5cA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1002,
["id_for_nothing"]="VwhcAQ==",
["num"]=40,
["num_for_nothing"]="Ugg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1003,
["id_for_nothing"]="VwhcAA==",
["num"]=60,
["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1004,
["id_for_nothing"]="VwhcBw==",
["num"]=60,
["num_for_nothing"]="UAg="
}
},
["time_type"]=1,
["limit_time"]=6,
["cd"]=1,
["value"]=800
},
[150702]={
["type"]=15,
["parameter_pro"]={
120,
130
},
["recharge_id"]=13,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=24000,
["num_for_nothing"]="VAxcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1003,
["id_for_nothing"]="VwhcAA==",
["num"]=40,
["num_for_nothing"]="Ugg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1004,
["id_for_nothing"]="VwhcBw==",
["num"]=60,
["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1005,
["id_for_nothing"]="VwhcBg==",
["num"]=60,
["num_for_nothing"]="UAg="
}
},
["time_type"]=1,
["limit_time"]=6,
["cd"]=1,
["value"]=800
},
[150802]={
["type"]=15,
["parameter_pro"]={
140,
150
},
["recharge_id"]=13,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=24000,
["num_for_nothing"]="VAxcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1003,
["id_for_nothing"]="VwhcAA==",
["num"]=40,
["num_for_nothing"]="Ugg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1004,
["id_for_nothing"]="VwhcBw==",
["num"]=60,
["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1005,
["id_for_nothing"]="VwhcBg==",
["num"]=60,
["num_for_nothing"]="UAg="
}
},
["time_type"]=1,
["limit_time"]=6,
["cd"]=1,
["value"]=800
},
[150902]={
["type"]=15,
["parameter_pro"]={
160,
170
},
["recharge_id"]=15,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=40000,
["num_for_nothing"]="UghcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1004,
["id_for_nothing"]="VwhcBw==",
["num"]=40,
["num_for_nothing"]="Ugg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1005,
["id_for_nothing"]="VwhcBg==",
["num"]=100,
["num_for_nothing"]="Vwhc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1006,
["id_for_nothing"]="VwhcBQ==",
["num"]=80,
["num_for_nothing"]="Xgg="
}
},
["time_type"]=1,
["limit_time"]=6,
["cd"]=1,
["value"]=800
},
[151002]={
["type"]=15,
["parameter_pro"]={
180,
190
},
["recharge_id"]=15,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=40000,
["num_for_nothing"]="UghcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1004,
["id_for_nothing"]="VwhcBw==",
["num"]=40,
["num_for_nothing"]="Ugg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1005,
["id_for_nothing"]="VwhcBg==",
["num"]=100,
["num_for_nothing"]="Vwhc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1006,
["id_for_nothing"]="VwhcBQ==",
["num"]=80,
["num_for_nothing"]="Xgg="
}
},
["time_type"]=1,
["limit_time"]=6,
["cd"]=1,
["value"]=800
},
[160102]={
["type"]=16,
["parameter_pro"]={
0,
10
},
["recharge_id"]=7,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=12000,
["num_for_nothing"]="VwpcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=38,
["id_for_nothing"]="VQA=",
["num"]=60,
["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=39,
["id_for_nothing"]="VQE=",
["num"]=5,
["num_for_nothing"]="Uw=="
}
},
["time_type"]=1,
["limit_time"]=6,
["cd"]=1,
["value"]=800
},
[160202]={
["type"]=16,
["parameter_pro"]={
20,
30
},
["recharge_id"]=10,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=12000,
["num_for_nothing"]="VwpcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=38,
["id_for_nothing"]="VQA=",
["num"]=60,
["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=39,
["id_for_nothing"]="VQE=",
["num"]=40,
["num_for_nothing"]="Ugg="
}
},
["time_type"]=1,
["limit_time"]=6,
["cd"]=1,
["value"]=800
},
[160302]={
["type"]=16,
["parameter_pro"]={
40,
50
},
["recharge_id"]=12,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=20000,
["num_for_nothing"]="VAhcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=39,
["id_for_nothing"]="VQE=",
["num"]=60,
["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=40,
["id_for_nothing"]="Ugg=",
["num"]=40,
["num_for_nothing"]="Ugg="
}
},
["time_type"]=1,
["limit_time"]=6,
["cd"]=1,
["value"]=800
},
[160402]={
["type"]=16,
["parameter_pro"]={
60,
70
},
["recharge_id"]=12,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=20000,
["num_for_nothing"]="VAhcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=39,
["id_for_nothing"]="VQE=",
["num"]=60,
["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=40,
["id_for_nothing"]="Ugg=",
["num"]=40,
["num_for_nothing"]="Ugg="
}
},
["time_type"]=1,
["limit_time"]=6,
["cd"]=1,
["value"]=800
},
[160502]={
["type"]=16,
["parameter_pro"]={
80,
90
},
["recharge_id"]=14,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=32000,
["num_for_nothing"]="VQpcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=39,
["id_for_nothing"]="VQE=",
["num"]=40,
["num_for_nothing"]="Ugg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=40,
["id_for_nothing"]="Ugg=",
["num"]=60,
["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=41,
["id_for_nothing"]="Ugk=",
["num"]=60,
["num_for_nothing"]="UAg="
}
},
["time_type"]=1,
["limit_time"]=6,
["cd"]=1,
["value"]=800
},
[160602]={
["type"]=16,
["parameter_pro"]={
100,
110
},
["recharge_id"]=14,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=32000,
["num_for_nothing"]="VQpcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=39,
["id_for_nothing"]="VQE=",
["num"]=40,
["num_for_nothing"]="Ugg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=40,
["id_for_nothing"]="Ugg=",
["num"]=60,
["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=41,
["id_for_nothing"]="Ugk=",
["num"]=60,
["num_for_nothing"]="UAg="
}
},
["time_type"]=1,
["limit_time"]=6,
["cd"]=1,
["value"]=800
},
[160702]={
["type"]=16,
["parameter_pro"]={
120,
130
},
["recharge_id"]=15,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=48000,
["num_for_nothing"]="UgBcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=40,
["id_for_nothing"]="Ugg=",
["num"]=40,
["num_for_nothing"]="Ugg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=41,
["id_for_nothing"]="Ugk=",
["num"]=60,
["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=42,
["id_for_nothing"]="Ugo=",
["num"]=60,
["num_for_nothing"]="UAg="
}
},
["time_type"]=1,
["limit_time"]=6,
["cd"]=1,
["value"]=800
},
[160802]={
["type"]=16,
["parameter_pro"]={
140,
150
},
["recharge_id"]=15,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=48000,
["num_for_nothing"]="UgBcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=40,
["id_for_nothing"]="Ugg=",
["num"]=40,
["num_for_nothing"]="Ugg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=41,
["id_for_nothing"]="Ugk=",
["num"]=60,
["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=42,
["id_for_nothing"]="Ugo=",
["num"]=60,
["num_for_nothing"]="UAg="
}
},
["time_type"]=1,
["limit_time"]=6,
["cd"]=1,
["value"]=800
},
[160902]={
["type"]=16,
["parameter_pro"]={
160,
170
},
["recharge_id"]=17,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=80000,
["num_for_nothing"]="XghcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=41,
["id_for_nothing"]="Ugk=",
["num"]=40,
["num_for_nothing"]="Ugg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=42,
["id_for_nothing"]="Ugo=",
["num"]=100,
["num_for_nothing"]="Vwhc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=43,
["id_for_nothing"]="Ugs=",
["num"]=80,
["num_for_nothing"]="Xgg="
}
},
["time_type"]=1,
["limit_time"]=6,
["cd"]=1,
["value"]=800
},
[161002]={
["type"]=16,
["parameter_pro"]={
180,
190
},
["recharge_id"]=17,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=80000,
["num_for_nothing"]="XghcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=41,
["id_for_nothing"]="Ugk=",
["num"]=40,
["num_for_nothing"]="Ugg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=42,
["id_for_nothing"]="Ugo=",
["num"]=100,
["num_for_nothing"]="Vwhc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=43,
["id_for_nothing"]="Ugs=",
["num"]=80,
["num_for_nothing"]="Xgg="
}
},
["time_type"]=1,
["limit_time"]=6,
["cd"]=1,
["value"]=800
} }
} }
local config = { local config = {
data=act_gift,count=76 data=act_gift,count=57
} }
return config return config

View File

@ -3,9 +3,14 @@ local activity = {
["act_type"]=1, ["act_type"]=1,
["start_time"]="2023-08-22 00:00:00", ["start_time"]="2023-08-22 00:00:00",
["end_time"]="2023-08-29 00:00:00" ["end_time"]="2023-08-29 00:00:00"
},
[206]={
["act_type"]=2,
["start_time"]="2023-09-08 00:00:00",
["end_time"]="2023-09-16 00:00:00"
} }
} }
local config = { local config = {
data=activity,count=1 data=activity,count=2
} }
return config return config

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,10 @@
fileFormatVersion: 2
guid: 3b9c06b8307dd0b4cb53ae035d53aa11
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}

View File

@ -0,0 +1,158 @@
local activity_boss_rush_exchange = {
[1]={
["cost"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=52,
["id_for_nothing"]="Uwo=",
["num"]=100,
["num_for_nothing"]="Vwhc"
},
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=100,
["num_for_nothing"]="Vwhc"
},
["limit"]=1
},
[2]={
["cost"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=52,
["id_for_nothing"]="Uwo=",
["num"]=101,
["num_for_nothing"]="Vwhd"
},
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=101,
["num_for_nothing"]="Vwhd"
},
["limit"]=1
},
[3]={
["cost"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=52,
["id_for_nothing"]="Uwo=",
["num"]=102,
["num_for_nothing"]="Vwhe"
},
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=102,
["num_for_nothing"]="Vwhe"
},
["limit"]=1
},
[4]={
["cost"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=52,
["id_for_nothing"]="Uwo=",
["num"]=103,
["num_for_nothing"]="Vwhf"
},
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=103,
["num_for_nothing"]="Vwhf"
},
["limit"]=1
},
[5]={
["cost"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=52,
["id_for_nothing"]="Uwo=",
["num"]=104,
["num_for_nothing"]="VwhY"
},
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=104,
["num_for_nothing"]="VwhY"
},
["limit"]=1
},
[6]={
["cost"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=52,
["id_for_nothing"]="Uwo=",
["num"]=105,
["num_for_nothing"]="VwhZ"
},
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=105,
["num_for_nothing"]="VwhZ"
},
["limit"]=1
},
[7]={
["cost"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=52,
["id_for_nothing"]="Uwo=",
["num"]=106,
["num_for_nothing"]="Vwha"
},
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=106,
["num_for_nothing"]="Vwha"
},
["limit"]=1
},
[8]={
["cost"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=52,
["id_for_nothing"]="Uwo=",
["num"]=107,
["num_for_nothing"]="Vwhb"
},
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=107,
["num_for_nothing"]="Vwhb"
},
["limit"]=1
}
}
local config = {
data=activity_boss_rush_exchange,count=8
}
return config

View File

@ -0,0 +1,10 @@
fileFormatVersion: 2
guid: 8c8d75a1f2e364844b081ef20888e140
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}

View File

@ -0,0 +1,222 @@
local activity_boss_rush_rank = {
[1]={
["ranking"]={
1,
1
},
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=160,
["num_for_nothing"]="Vw5c"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
["num"]=220,
["num_for_nothing"]="VApc"
}
}
},
[2]={
["ranking"]={
2,
2
},
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=40000,
["num_for_nothing"]="UghcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=13,
["id_for_nothing"]="Vws=",
["num"]=3,
["num_for_nothing"]="VQ=="
}
}
},
[3]={
["ranking"]={
3,
3
},
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=35000,
["num_for_nothing"]="VQ1cA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=200,
["num_for_nothing"]="VAhc"
}
}
},
[4]={
["ranking"]={
4,
10
},
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=150,
["num_for_nothing"]="Vw1c"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
["num"]=180,
["num_for_nothing"]="VwBc"
}
}
},
[5]={
["ranking"]={
11,
50
},
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=25000,
["num_for_nothing"]="VA1cA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=13,
["id_for_nothing"]="Vws=",
["num"]=3,
["num_for_nothing"]="VQ=="
}
}
},
[6]={
["ranking"]={
51,
100
},
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=25000,
["num_for_nothing"]="VA1cA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=200,
["num_for_nothing"]="VAhc"
}
}
},
[7]={
["ranking"]={
101,
500
},
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=120,
["num_for_nothing"]="Vwpc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
["num"]=120,
["num_for_nothing"]="Vwpc"
}
}
},
[8]={
["ranking"]={
501,
1000
},
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=18000,
["num_for_nothing"]="VwBcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=13,
["id_for_nothing"]="Vws=",
["num"]=3,
["num_for_nothing"]="VQ=="
}
}
},
[9]={
["ranking"]={
1001,
99999999
},
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=18000,
["num_for_nothing"]="VwBcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=100,
["num_for_nothing"]="Vwhc"
}
}
}
}
local config = {
data=activity_boss_rush_rank,count=9
}
return config

View File

@ -0,0 +1,10 @@
fileFormatVersion: 2
guid: 472bee3e9223f3c4aa8b407e72891bc3
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}

View File

@ -1,6 +1,6 @@
local activity_herofund = { local activity_herofund = {
[1]={ [1]={
["exp"]=0, ["exp"]=30,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
@ -14,8 +14,8 @@ local activity_herofund = {
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=44003, ["id"]=44003,
["id_for_nothing"]="UgxcA2Y=", ["id_for_nothing"]="UgxcA2Y=",
["num"]=3, ["num"]=1,
["num_for_nothing"]="VQ==" ["num_for_nothing"]="Vw=="
}, },
["reward_pro_max"]={ ["reward_pro_max"]={
["type"]=1, ["type"]=1,
@ -27,8 +27,16 @@ local activity_herofund = {
} }
}, },
[2]={ [2]={
["exp"]=30, ["exp"]=60,
["reward"]={ ["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=1000,
["num_for_nothing"]="VwhcAw=="
},
["reward_pro"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
@ -36,52 +44,44 @@ local activity_herofund = {
["num"]=1500, ["num"]=1500,
["num_for_nothing"]="Vw1cAw==" ["num_for_nothing"]="Vw1cAw=="
}, },
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2000,
["num_for_nothing"]="VAhcAw=="
},
["reward_pro_max"]={ ["reward_pro_max"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=4000, ["num"]=3000,
["num_for_nothing"]="UghcAw==" ["num_for_nothing"]="VQhcAw=="
} }
}, },
[3]={ [3]={
["exp"]=60, ["exp"]=90,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=3, ["id"]=8,
["id_for_nothing"]="VQ==", ["id_for_nothing"]="Xg==",
["num"]=10, ["num"]=1,
["num_for_nothing"]="Vwg=" ["num_for_nothing"]="Vw=="
}, },
["reward_pro"]={ ["reward_pro"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=3, ["id"]=9,
["id_for_nothing"]="VQ==", ["id_for_nothing"]="Xw==",
["num"]=15, ["num"]=1,
["num_for_nothing"]="Vw0=" ["num_for_nothing"]="Vw=="
}, },
["reward_pro_max"]={ ["reward_pro_max"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=3, ["id"]=9,
["id_for_nothing"]="VQ==", ["id_for_nothing"]="Xw==",
["num"]=20, ["num"]=2,
["num_for_nothing"]="VAg=" ["num_for_nothing"]="VA=="
} }
}, },
[4]={ [4]={
["exp"]=90, ["exp"]=120,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
@ -108,49 +108,22 @@ local activity_herofund = {
} }
}, },
[5]={ [5]={
["exp"]=120,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=1500,
["num_for_nothing"]="Vw1cAw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2000,
["num_for_nothing"]="VAhcAw=="
},
["reward_pro_max"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=4000,
["num_for_nothing"]="UghcAw=="
}
},
[6]={
["exp"]=150, ["exp"]=150,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=2, ["id"]=10,
["id_for_nothing"]="VA==", ["id_for_nothing"]="Vwg=",
["num"]=30, ["num"]=1,
["num_for_nothing"]="VQg=" ["num_for_nothing"]="Vw=="
}, },
["reward_pro"]={ ["reward_pro"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=44003, ["id"]=11,
["id_for_nothing"]="UgxcA2Y=", ["id_for_nothing"]="Vwk=",
["num"]=2, ["num"]=1,
["num_for_nothing"]="VA==" ["num_for_nothing"]="Vw=="
}, },
["reward_pro_max"]={ ["reward_pro_max"]={
["type"]=1, ["type"]=1,
@ -161,36 +134,17 @@ local activity_herofund = {
["num_for_nothing"]="VQ==" ["num_for_nothing"]="VQ=="
} }
}, },
[7]={ [6]={
["exp"]=180, ["exp"]=180,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=3, ["id"]=1,
["id_for_nothing"]="VQ==", ["id_for_nothing"]="Vw==",
["num"]=10, ["num"]=1000,
["num_for_nothing"]="Vwg=" ["num_for_nothing"]="VwhcAw=="
}, },
["reward_pro"]={ ["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=3,
["id_for_nothing"]="VQ==",
["num"]=15,
["num_for_nothing"]="Vw0="
},
["reward_pro_max"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=3,
["id_for_nothing"]="VQ==",
["num"]=20,
["num_for_nothing"]="VAg="
}
},
[8]={
["exp"]=210,
["reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
@ -198,25 +152,71 @@ local activity_herofund = {
["num"]=1500, ["num"]=1500,
["num_for_nothing"]="Vw1cAw==" ["num_for_nothing"]="Vw1cAw=="
}, },
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2000,
["num_for_nothing"]="VAhcAw=="
},
["reward_pro_max"]={ ["reward_pro_max"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=4000, ["num"]=3000,
["num_for_nothing"]="UghcAw==" ["num_for_nothing"]="VQhcAw=="
}
},
[7]={
["exp"]=210,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=8,
["id_for_nothing"]="Xg==",
["num"]=1,
["num_for_nothing"]="Vw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=9,
["id_for_nothing"]="Xw==",
["num"]=1,
["num_for_nothing"]="Vw=="
},
["reward_pro_max"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=9,
["id_for_nothing"]="Xw==",
["num"]=2,
["num_for_nothing"]="VA=="
}
},
[8]={
["exp"]=240,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=20,
["num_for_nothing"]="VAg="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=50,
["num_for_nothing"]="Uwg="
},
["reward_pro_max"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=100,
["num_for_nothing"]="Vwhc"
} }
}, },
[9]={ [9]={
["exp"]=240, ["exp"]=270,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
@ -243,7 +243,7 @@ local activity_herofund = {
} }
}, },
[10]={ [10]={
["exp"]=270, ["exp"]=300,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
@ -270,7 +270,7 @@ local activity_herofund = {
} }
}, },
[11]={ [11]={
["exp"]=300, ["exp"]=330,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
@ -297,116 +297,124 @@ local activity_herofund = {
} }
}, },
[12]={ [12]={
["exp"]=330,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=30,
["num_for_nothing"]="VQg="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=50,
["num_for_nothing"]="Uwg="
},
["reward_pro_max"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=100,
["num_for_nothing"]="Vwhc"
}
},
[13]={
["exp"]=360, ["exp"]=360,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=1500, ["num"]=1000,
["num_for_nothing"]="Vw1cAw==" ["num_for_nothing"]="VwhcAw=="
}, },
["reward_pro"]={ ["reward_pro"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=2000, ["num"]=1500,
["num_for_nothing"]="VAhcAw==" ["num_for_nothing"]="Vw1cAw=="
}, },
["reward_pro_max"]={ ["reward_pro_max"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=4000, ["num"]=3000,
["num_for_nothing"]="UghcAw==" ["num_for_nothing"]="VQhcAw=="
} }
}, },
[14]={ [13]={
["exp"]=390, ["exp"]=390,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=3, ["id"]=8,
["id_for_nothing"]="VQ==", ["id_for_nothing"]="Xg==",
["num"]=10,
["num_for_nothing"]="Vwg="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=3,
["id_for_nothing"]="VQ==",
["num"]=15,
["num_for_nothing"]="Vw0="
},
["reward_pro_max"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=3,
["id_for_nothing"]="VQ==",
["num"]=20,
["num_for_nothing"]="VAg="
}
},
[15]={
["exp"]=420,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=44003,
["id_for_nothing"]="UgxcA2Y=",
["num"]=1, ["num"]=1,
["num_for_nothing"]="Vw==" ["num_for_nothing"]="Vw=="
}, },
["reward_pro"]={ ["reward_pro"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=44003, ["id"]=9,
["id_for_nothing"]="UgxcA2Y=", ["id_for_nothing"]="Xw==",
["num"]=1,
["num_for_nothing"]="Vw=="
},
["reward_pro_max"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=9,
["id_for_nothing"]="Xw==",
["num"]=2,
["num_for_nothing"]="VA=="
}
},
[14]={
["exp"]=420,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=13,
["id_for_nothing"]="Vws=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=13,
["id_for_nothing"]="Vws=",
["num"]=2, ["num"]=2,
["num_for_nothing"]="VA==" ["num_for_nothing"]="VA=="
}, },
["reward_pro_max"]={ ["reward_pro_max"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=44003, ["id"]=13,
["id_for_nothing"]="UgxcA2Y=", ["id_for_nothing"]="Vws=",
["num"]=3, ["num"]=2,
["num_for_nothing"]="VQ==" ["num_for_nothing"]="VA=="
}
},
[15]={
["exp"]=450,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=10,
["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=11,
["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
["reward_pro_max"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=18,
["id_for_nothing"]="VwA=",
["num"]=1,
["num_for_nothing"]="Vw=="
} }
}, },
[16]={ [16]={
["exp"]=450, ["exp"]=480,
["reward"]={ ["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=1000,
["num_for_nothing"]="VwhcAw=="
},
["reward_pro"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
@ -414,59 +422,51 @@ local activity_herofund = {
["num"]=1500, ["num"]=1500,
["num_for_nothing"]="Vw1cAw==" ["num_for_nothing"]="Vw1cAw=="
}, },
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2000,
["num_for_nothing"]="VAhcAw=="
},
["reward_pro_max"]={ ["reward_pro_max"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=4000, ["num"]=3000,
["num_for_nothing"]="UghcAw==" ["num_for_nothing"]="VQhcAw=="
} }
}, },
[17]={ [17]={
["exp"]=480, ["exp"]=510,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=3, ["id"]=8,
["id_for_nothing"]="VQ==", ["id_for_nothing"]="Xg==",
["num"]=10, ["num"]=1,
["num_for_nothing"]="Vwg=" ["num_for_nothing"]="Vw=="
}, },
["reward_pro"]={ ["reward_pro"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=3, ["id"]=9,
["id_for_nothing"]="VQ==", ["id_for_nothing"]="Xw==",
["num"]=15, ["num"]=1,
["num_for_nothing"]="Vw0=" ["num_for_nothing"]="Vw=="
}, },
["reward_pro_max"]={ ["reward_pro_max"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=3, ["id"]=9,
["id_for_nothing"]="VQ==", ["id_for_nothing"]="Xw==",
["num"]=20, ["num"]=2,
["num_for_nothing"]="VAg=" ["num_for_nothing"]="VA=="
} }
}, },
[18]={ [18]={
["exp"]=510, ["exp"]=540,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=2, ["id"]=2,
["id_for_nothing"]="VA==", ["id_for_nothing"]="VA==",
["num"]=30, ["num"]=20,
["num_for_nothing"]="VQg=" ["num_for_nothing"]="VAg="
}, },
["reward_pro"]={ ["reward_pro"]={
["type"]=1, ["type"]=1,
@ -486,7 +486,34 @@ local activity_herofund = {
} }
}, },
[19]={ [19]={
["exp"]=540, ["exp"]=570,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=10,
["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=10,
["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
["reward_pro_max"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=10,
["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
},
[20]={
["exp"]=600,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
@ -512,35 +539,8 @@ local activity_herofund = {
["num_for_nothing"]="VQ==" ["num_for_nothing"]="VQ=="
} }
}, },
[20]={
["exp"]=570,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=1500,
["num_for_nothing"]="Vw1cAw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2000,
["num_for_nothing"]="VAhcAw=="
},
["reward_pro_max"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=4000,
["num_for_nothing"]="UghcAw=="
}
},
[21]={ [21]={
["exp"]=600, ["exp"]=630,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
@ -567,8 +567,16 @@ local activity_herofund = {
} }
}, },
[22]={ [22]={
["exp"]=630, ["exp"]=660,
["reward"]={ ["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=1000,
["num_for_nothing"]="VwhcAw=="
},
["reward_pro"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
@ -576,52 +584,17 @@ local activity_herofund = {
["num"]=1500, ["num"]=1500,
["num_for_nothing"]="Vw1cAw==" ["num_for_nothing"]="Vw1cAw=="
}, },
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2000,
["num_for_nothing"]="VAhcAw=="
},
["reward_pro_max"]={ ["reward_pro_max"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=4000, ["num"]=3000,
["num_for_nothing"]="UghcAw==" ["num_for_nothing"]="VQhcAw=="
}
},
[23]={
["exp"]=660,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=44003,
["id_for_nothing"]="UgxcA2Y=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=44003,
["id_for_nothing"]="UgxcA2Y=",
["num"]=2,
["num_for_nothing"]="VA=="
},
["reward_pro_max"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=44003,
["id_for_nothing"]="UgxcA2Y=",
["num"]=3,
["num_for_nothing"]="VQ=="
} }
} }
} }
local config = { local config = {
data=activity_herofund,count=23 data=activity_herofund,count=22
} }
return config return config

View File

@ -20227,7 +20227,7 @@ local arena_board = {
}, },
{ {
35, 35,
0 35
}, },
{ {
35, 35,

View File

@ -1,6 +1,32 @@
local arena_gift = { local arena_gift = {
[1]={ [101]={
["score"]=900, ["score"]=950,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=500,
["num_for_nothing"]="Uwhc"
}
}
},
[102]={
["score"]=1000,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=22,
["id_for_nothing"]="VAo=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[103]={
["score"]=1050,
["reward"]={ ["reward"]={
{ {
["type"]=1, ["type"]=1,
@ -12,47 +38,92 @@ local arena_gift = {
} }
} }
}, },
[2]={ [104]={
["score"]=950, ["score"]=1100,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=23002,
["id_for_nothing"]="VAtcA2c=",
["num"]=10,
["num_for_nothing"]="Vwg="
}
}
},
[3]={
["score"]=1000,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=10,
["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[4]={
["score"]=1050,
["reward"]={ ["reward"]={
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=5000, ["num"]=500,
["num_for_nothing"]="UwhcAw==" ["num_for_nothing"]="Uwhc"
}
},
["unlock_hero"]={
54003
}
},
[105]={
["score"]=1150,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=8,
["id_for_nothing"]="Xg==",
["num"]=1,
["num_for_nothing"]="Vw=="
} }
} }
}, },
[5]={ [106]={
["score"]=1100, ["score"]=1200,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=13,
["id_for_nothing"]="Vws=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
},
["unlock_hero"]={
34003
}
},
[107]={
["score"]=1250,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=22,
["id_for_nothing"]="VAo=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[108]={
["score"]=1300,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=30,
["num_for_nothing"]="VQg="
}
}
},
[109]={
["score"]=1350,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=8,
["id_for_nothing"]="Xg==",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[110]={
["score"]=1400,
["reward"]={ ["reward"]={
{ {
["type"]=1, ["type"]=1,
@ -64,11 +135,63 @@ local arena_gift = {
} }
}, },
["unlock_hero"]={ ["unlock_hero"]={
54003 24003
} }
}, },
[6]={ [111]={
["score"]=1150, ["score"]=1450,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=8,
["id_for_nothing"]="Xg==",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[112]={
["score"]=1500,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=500,
["num_for_nothing"]="Uwhc"
}
}
},
[113]={
["score"]=1550,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=8,
["id_for_nothing"]="Xg==",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[114]={
["score"]=1600,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=13,
["id_for_nothing"]="Vws=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[115]={
["score"]=1650,
["reward"]={ ["reward"]={
{ {
["type"]=1, ["type"]=1,
@ -80,156 +203,20 @@ local arena_gift = {
} }
} }
}, },
[7]={ [116]={
["score"]=1200,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=6,
["id_for_nothing"]="UA==",
["num"]=1,
["num_for_nothing"]="Vw=="
}
},
["unlock_hero"]={
34003
}
},
[8]={
["score"]=1250,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=10000,
["num_for_nothing"]="VwhcA2U="
}
}
},
[9]={
["score"]=1300,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=11,
["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[10]={
["score"]=1350,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=60,
["num_for_nothing"]="UAg="
}
}
},
[11]={
["score"]=1400,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=54003,
["id_for_nothing"]="UwxcA2Y=",
["num"]=3,
["num_for_nothing"]="VQ=="
}
},
["unlock_hero"]={
24003
}
},
[12]={
["score"]=1450,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=15000,
["num_for_nothing"]="Vw1cA2U="
}
}
},
[13]={
["score"]=1500,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=11,
["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[14]={
["score"]=1550,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=80,
["num_for_nothing"]="Xgg="
}
}
},
[15]={
["score"]=1600,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=34003,
["id_for_nothing"]="VQxcA2Y=",
["num"]=3,
["num_for_nothing"]="VQ=="
}
}
},
[16]={
["score"]=1650,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=18000,
["num_for_nothing"]="VwBcA2U="
}
}
},
[17]={
["score"]=1700, ["score"]=1700,
["reward"]={ ["reward"]={
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=18, ["id"]=22,
["id_for_nothing"]="VwA=", ["id_for_nothing"]="VAo=",
["num"]=1, ["num"]=1,
["num_for_nothing"]="Vw==" ["num_for_nothing"]="Vw=="
} }
} }
}, },
[18]={ [117]={
["score"]=1750, ["score"]=1750,
["reward"]={ ["reward"]={
{ {
@ -237,25 +224,25 @@ local arena_gift = {
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=2, ["id"]=2,
["id_for_nothing"]="VA==", ["id_for_nothing"]="VA==",
["num"]=100, ["num"]=30,
["num_for_nothing"]="Vwhc" ["num_for_nothing"]="VQg="
} }
} }
}, },
[19]={ [118]={
["score"]=1800, ["score"]=1800,
["reward"]={ ["reward"]={
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=24003, ["id"]=8,
["id_for_nothing"]="VAxcA2Y=", ["id_for_nothing"]="Xg==",
["num"]=3, ["num"]=1,
["num_for_nothing"]="VQ==" ["num_for_nothing"]="Vw=="
} }
} }
}, },
[20]={ [119]={
["score"]=1850, ["score"]=1850,
["reward"]={ ["reward"]={
{ {
@ -263,298 +250,298 @@ local arena_gift = {
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=20000, ["num"]=500,
["num_for_nothing"]="VAhcA2U=" ["num_for_nothing"]="Uwhc"
} }
} }
}, },
[21]={ [120]={
["score"]=1900, ["score"]=1900,
["reward"]={ ["reward"]={
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=18, ["id"]=11,
["id_for_nothing"]="VwA=", ["id_for_nothing"]="Vwk=",
["num"]=1, ["num"]=1,
["num_for_nothing"]="Vw==" ["num_for_nothing"]="Vw=="
} }
} }
}, },
[22]={ [121]={
["score"]=1950, ["score"]=1950,
["reward"]={ ["reward"]={
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=2, ["id"]=8,
["id_for_nothing"]="VA==", ["id_for_nothing"]="Xg==",
["num"]=120, ["num"]=1,
["num_for_nothing"]="Vwpc" ["num_for_nothing"]="Vw=="
} }
} }
}, },
[23]={ [122]={
["score"]=2000, ["score"]=2000,
["reward"]={ ["reward"]={
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=47, ["id"]=1,
["id_for_nothing"]="Ug8=", ["id_for_nothing"]="Vw==",
["num"]=5, ["num"]=500,
["num_for_nothing"]="Uw==" ["num_for_nothing"]="Uwhc"
} }
} }
}, },
[24]={ [123]={
["score"]=2050, ["score"]=2050,
["reward"]={ ["reward"]={
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=8,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Xg==",
["num"]=24000, ["num"]=1,
["num_for_nothing"]="VAxcA2U=" ["num_for_nothing"]="Vw=="
} }
} }
}, },
[25]={ [124]={
["score"]=2100, ["score"]=2100,
["reward"]={ ["reward"]={
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=18, ["id"]=13,
["id_for_nothing"]="VwA=", ["id_for_nothing"]="Vws=",
["num"]=1, ["num"]=1,
["num_for_nothing"]="Vw==" ["num_for_nothing"]="Vw=="
} }
} }
}, },
[26]={ [125]={
["score"]=2150, ["score"]=2150,
["reward"]={ ["reward"]={
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=2, ["id"]=10,
["id_for_nothing"]="VA==", ["id_for_nothing"]="Vwg=",
["num"]=150, ["num"]=1,
["num_for_nothing"]="Vw1c" ["num_for_nothing"]="Vw=="
} }
} }
}, },
[27]={ [126]={
["score"]=2200, ["score"]=2200,
["reward"]={ ["reward"]={
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=47, ["id"]=22,
["id_for_nothing"]="Ug8=", ["id_for_nothing"]="VAo=",
["num"]=8, ["num"]=1,
["num_for_nothing"]="Xg==" ["num_for_nothing"]="Vw=="
} }
} }
}, },
[28]={ [127]={
["score"]=2250, ["score"]=2250,
["reward"]={ ["reward"]={
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=2,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="VA==",
["num"]=30000, ["num"]=30,
["num_for_nothing"]="VQhcA2U=" ["num_for_nothing"]="VQg="
} }
} }
}, },
[29]={ [128]={
["score"]=2300, ["score"]=2300,
["reward"]={ ["reward"]={
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=18, ["id"]=8,
["id_for_nothing"]="VwA=", ["id_for_nothing"]="Xg==",
["num"]=1, ["num"]=1,
["num_for_nothing"]="Vw==" ["num_for_nothing"]="Vw=="
} }
} }
}, },
[30]={ [129]={
["score"]=2350, ["score"]=2350,
["reward"]={ ["reward"]={
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=2, ["id"]=1,
["id_for_nothing"]="VA==", ["id_for_nothing"]="Vw==",
["num"]=180, ["num"]=500,
["num_for_nothing"]="VwBc" ["num_for_nothing"]="Uwhc"
} }
} }
}, },
[31]={ [130]={
["score"]=2400, ["score"]=2400,
["reward"]={ ["reward"]={
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=2,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="VA==",
["num"]=30000, ["num"]=50,
["num_for_nothing"]="VQhcA2U=" ["num_for_nothing"]="Uwg="
} }
} }
}, },
[32]={ [131]={
["score"]=2450, ["score"]=2450,
["reward"]={ ["reward"]={
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=14, ["id"]=8,
["id_for_nothing"]="Vww=", ["id_for_nothing"]="Xg==",
["num"]=1, ["num"]=1,
["num_for_nothing"]="Vw==" ["num_for_nothing"]="Vw=="
} }
} }
}, },
[33]={ [132]={
["score"]=2500, ["score"]=2500,
["reward"]={ ["reward"]={
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=47, ["id"]=1,
["id_for_nothing"]="Ug8=", ["id_for_nothing"]="Vw==",
["num"]=10, ["num"]=500,
["num_for_nothing"]="Vwg=" ["num_for_nothing"]="Uwhc"
} }
} }
}, },
[34]={ [133]={
["score"]=2550, ["score"]=2550,
["reward"]={ ["reward"]={
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=8,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Xg==",
["num"]=40000, ["num"]=1,
["num_for_nothing"]="UghcA2U=" ["num_for_nothing"]="Vw=="
} }
} }
}, },
[35]={ [134]={
["score"]=2600, ["score"]=2600,
["reward"]={ ["reward"]={
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=18, ["id"]=10,
["id_for_nothing"]="VwA=", ["id_for_nothing"]="Vwg=",
["num"]=1, ["num"]=1,
["num_for_nothing"]="Vw==" ["num_for_nothing"]="Vw=="
} }
} }
}, },
[36]={ [135]={
["score"]=2650, ["score"]=2650,
["reward"]={ ["reward"]={
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=2, ["id"]=13,
["id_for_nothing"]="VA==", ["id_for_nothing"]="Vws=",
["num"]=200, ["num"]=1,
["num_for_nothing"]="VAhc" ["num_for_nothing"]="Vw=="
} }
} }
}, },
[37]={ [136]={
["score"]=2700, ["score"]=2700,
["reward"]={ ["reward"]={
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=22,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="VAo=",
["num"]=40000, ["num"]=1,
["num_for_nothing"]="UghcA2U=" ["num_for_nothing"]="Vw=="
} }
} }
}, },
[38]={ [137]={
["score"]=2750, ["score"]=2750,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=15,
["id_for_nothing"]="Vw0=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[39]={
["score"]=2800,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=47,
["id_for_nothing"]="Ug8=",
["num"]=12,
["num_for_nothing"]="Vwo="
}
}
},
[40]={
["score"]=2850,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=50000,
["num_for_nothing"]="UwhcA2U="
}
}
},
[41]={
["score"]=2900,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=18,
["id_for_nothing"]="VwA=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[42]={
["score"]=2950,
["reward"]={ ["reward"]={
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=2, ["id"]=2,
["id_for_nothing"]="VA==", ["id_for_nothing"]="VA==",
["num"]=300, ["num"]=30,
["num_for_nothing"]="VQhc" ["num_for_nothing"]="VQg="
} }
} }
}, },
[43]={ [138]={
["score"]=2800,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=8,
["id_for_nothing"]="Xg==",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[139]={
["score"]=2850,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=10,
["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[140]={
["score"]=2900,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=11,
["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[141]={
["score"]=2950,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=8,
["id_for_nothing"]="Xg==",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[142]={
["score"]=3000, ["score"]=3000,
["reward"]={ ["reward"]={
{ {
@ -562,39 +549,39 @@ local arena_gift = {
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=50000, ["num"]=500,
["num_for_nothing"]="UwhcA2U=" ["num_for_nothing"]="Uwhc"
} }
} }
}, },
[44]={ [143]={
["score"]=3050, ["score"]=3050,
["reward"]={ ["reward"]={
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=15, ["id"]=8,
["id_for_nothing"]="Vw0=", ["id_for_nothing"]="Xg==",
["num"]=1, ["num"]=1,
["num_for_nothing"]="Vw==" ["num_for_nothing"]="Vw=="
} }
} }
}, },
[45]={ [144]={
["score"]=3100, ["score"]=3100,
["reward"]={ ["reward"]={
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=47, ["id"]=8,
["id_for_nothing"]="Ug8=", ["id_for_nothing"]="Xg==",
["num"]=15, ["num"]=1,
["num_for_nothing"]="Vw0=" ["num_for_nothing"]="Vw=="
} }
} }
} }
} }
local config = { local config = {
data=arena_gift,count=45 data=arena_gift,count=44
} }
return config return config

View File

@ -2,17 +2,20 @@ local arena_time = {
[1]={ [1]={
["season"]=1, ["season"]=1,
["start_time"]="2023-6-25 00:00:00", ["start_time"]="2023-6-25 00:00:00",
["end_time"]="2023-8-16 00:00:00" ["end_time"]="2023-8-16 00:00:00",
["ui_banner"]="ui_arena_bounty_banner"
}, },
[2]={ [2]={
["season"]=2, ["season"]=2,
["start_time"]="2023-8-16 00:00:00", ["start_time"]="2023-8-16 00:00:00",
["end_time"]="2023-9-15 00:00:00" ["end_time"]="2023-9-15 00:00:00",
["ui_banner"]="ui_arena_bounty_banner"
}, },
[3]={ [3]={
["season"]=3, ["season"]=3,
["start_time"]="2023-9-15 00:00:00", ["start_time"]="2023-9-15 00:00:00",
["end_time"]="2023-10-16 00:00:00" ["end_time"]="2023-10-16 00:00:00",
["ui_banner"]="ui_arena_bounty_banner_1"
} }
} }
local config = { local config = {

View File

@ -3669,16 +3669,16 @@ local bounty_level = {
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=1000, ["num"]=500,
["num_for_nothing"]="VwhcAw==" ["num_for_nothing"]="Uwhc"
}, },
["reward_pro"]={ ["reward_pro"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=3000, ["num"]=1500,
["num_for_nothing"]="VQhcAw==" ["num_for_nothing"]="Vw1cAw=="
} }
}, },
[323]={ [323]={
@ -3870,16 +3870,16 @@ local bounty_level = {
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=1000, ["num"]=500,
["num_for_nothing"]="VwhcAw==" ["num_for_nothing"]="Uwhc"
}, },
["reward_pro"]={ ["reward_pro"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=3000, ["num"]=1500,
["num_for_nothing"]="VQhcAw==" ["num_for_nothing"]="Vw1cAw=="
} }
}, },
[333]={ [333]={
@ -4071,16 +4071,16 @@ local bounty_level = {
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=1000, ["num"]=500,
["num_for_nothing"]="VwhcAw==" ["num_for_nothing"]="Uwhc"
}, },
["reward_pro"]={ ["reward_pro"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=3000, ["num"]=1500,
["num_for_nothing"]="VQhcAw==" ["num_for_nothing"]="Vw1cAw=="
} }
}, },
[343]={ [343]={
@ -4211,8 +4211,8 @@ local bounty_level = {
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=1500, ["num"]=1000,
["num_for_nothing"]="Vw1cAw==" ["num_for_nothing"]="VwhcAw=="
}, },
["reward_pro"]={ ["reward_pro"]={
["type"]=1, ["type"]=1,
@ -4272,16 +4272,16 @@ local bounty_level = {
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=1500, ["num"]=500,
["num_for_nothing"]="Vw1cAw==" ["num_for_nothing"]="Uwhc"
}, },
["reward_pro"]={ ["reward_pro"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=4500, ["num"]=1500,
["num_for_nothing"]="Ug1cAw==" ["num_for_nothing"]="Vw1cAw=="
} }
}, },
[353]={ [353]={
@ -4473,16 +4473,16 @@ local bounty_level = {
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=1500, ["num"]=500,
["num_for_nothing"]="Vw1cAw==" ["num_for_nothing"]="Uwhc"
}, },
["reward_pro"]={ ["reward_pro"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=4500, ["num"]=1500,
["num_for_nothing"]="Ug1cAw==" ["num_for_nothing"]="Vw1cAw=="
} }
}, },
[363]={ [363]={
@ -4674,16 +4674,16 @@ local bounty_level = {
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=1500, ["num"]=500,
["num_for_nothing"]="Vw1cAw==" ["num_for_nothing"]="Uwhc"
}, },
["reward_pro"]={ ["reward_pro"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=4500, ["num"]=1500,
["num_for_nothing"]="Ug1cAw==" ["num_for_nothing"]="Vw1cAw=="
} }
}, },
[373]={ [373]={
@ -4774,16 +4774,16 @@ local bounty_level = {
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=1500, ["num"]=500,
["num_for_nothing"]="Vw1cAw==" ["num_for_nothing"]="Uwhc"
}, },
["reward_pro"]={ ["reward_pro"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=4500, ["num"]=1500,
["num_for_nothing"]="Ug1cAw==" ["num_for_nothing"]="Vw1cAw=="
} }
}, },
[378]={ [378]={

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,10 @@
fileFormatVersion: 2
guid: f136cacb0fc4a2e47b93053e37dcf71b
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}

File diff suppressed because it is too large Load Diff

View File

@ -58,7 +58,7 @@ local chapter_dungeon_equip = {
["weight"]=100 ["weight"]=100
} }
}, },
["bao_drop_num"]=1, ["bao_drop_num"]=2,
["item_show"]={ ["item_show"]={
{ {
["type"]=1, ["type"]=1,
@ -191,13 +191,13 @@ local chapter_dungeon_equip = {
["type"]=1, ["type"]=1,
["id"]=1001, ["id"]=1001,
["num"]=1, ["num"]=1,
["weight"]=90 ["weight"]=80
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1002, ["id"]=1002,
["num"]=1, ["num"]=1,
["weight"]=10 ["weight"]=20
} }
}, },
["rand_drop_num"]=10, ["rand_drop_num"]=10,
@ -205,12 +205,12 @@ local chapter_dungeon_equip = {
["bao_drop"]={ ["bao_drop"]={
{ {
["type"]=1, ["type"]=1,
["id"]=1002, ["id"]=1001,
["num"]=1, ["num"]=1,
["weight"]=100 ["weight"]=100
} }
}, },
["bao_drop_num"]=1, ["bao_drop_num"]=2,
["item_show"]={ ["item_show"]={
{ {
["type"]=1, ["type"]=1,
@ -278,13 +278,13 @@ local chapter_dungeon_equip = {
["type"]=1, ["type"]=1,
["id"]=1001, ["id"]=1001,
["num"]=1, ["num"]=1,
["weight"]=85 ["weight"]=60
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1002, ["id"]=1002,
["num"]=1, ["num"]=1,
["weight"]=15 ["weight"]=40
} }
}, },
["rand_drop_num"]=10, ["rand_drop_num"]=10,
@ -365,13 +365,13 @@ local chapter_dungeon_equip = {
["type"]=1, ["type"]=1,
["id"]=1001, ["id"]=1001,
["num"]=1, ["num"]=1,
["weight"]=80 ["weight"]=35
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1002, ["id"]=1002,
["num"]=1, ["num"]=1,
["weight"]=20 ["weight"]=65
} }
}, },
["rand_drop_num"]=10, ["rand_drop_num"]=10,
@ -384,7 +384,7 @@ local chapter_dungeon_equip = {
["weight"]=100 ["weight"]=100
} }
}, },
["bao_drop_num"]=3, ["bao_drop_num"]=2,
["item_show"]={ ["item_show"]={
{ {
["type"]=1, ["type"]=1,
@ -452,19 +452,19 @@ local chapter_dungeon_equip = {
["type"]=1, ["type"]=1,
["id"]=1001, ["id"]=1001,
["num"]=1, ["num"]=1,
["weight"]=60 ["weight"]=15
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1002, ["id"]=1002,
["num"]=1, ["num"]=1,
["weight"]=30 ["weight"]=70
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1003, ["id"]=1003,
["num"]=1, ["num"]=1,
["weight"]=10 ["weight"]=15
} }
}, },
["rand_drop_num"]=10, ["rand_drop_num"]=10,
@ -472,12 +472,12 @@ local chapter_dungeon_equip = {
["bao_drop"]={ ["bao_drop"]={
{ {
["type"]=1, ["type"]=1,
["id"]=1003, ["id"]=1002,
["num"]=1, ["num"]=1,
["weight"]=100 ["weight"]=100
} }
}, },
["bao_drop_num"]=1, ["bao_drop_num"]=2,
["item_show"]={ ["item_show"]={
{ {
["type"]=1, ["type"]=1,
@ -545,19 +545,19 @@ local chapter_dungeon_equip = {
["type"]=1, ["type"]=1,
["id"]=1001, ["id"]=1001,
["num"]=1, ["num"]=1,
["weight"]=45 ["weight"]=5
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1002, ["id"]=1002,
["num"]=1, ["num"]=1,
["weight"]=40 ["weight"]=65
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1003, ["id"]=1003,
["num"]=1, ["num"]=1,
["weight"]=15 ["weight"]=30
} }
}, },
["rand_drop_num"]=10, ["rand_drop_num"]=10,
@ -565,7 +565,7 @@ local chapter_dungeon_equip = {
["bao_drop"]={ ["bao_drop"]={
{ {
["type"]=1, ["type"]=1,
["id"]=1003, ["id"]=1002,
["num"]=1, ["num"]=1,
["weight"]=100 ["weight"]=100
} }
@ -634,23 +634,17 @@ local chapter_dungeon_equip = {
} }
}, },
["rand_drop"]={ ["rand_drop"]={
{
["type"]=1,
["id"]=1001,
["num"]=1,
["weight"]=30
},
{ {
["type"]=1, ["type"]=1,
["id"]=1002, ["id"]=1002,
["num"]=1, ["num"]=1,
["weight"]=50 ["weight"]=40
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1003, ["id"]=1003,
["num"]=1, ["num"]=1,
["weight"]=20 ["weight"]=60
} }
}, },
["rand_drop_num"]=10, ["rand_drop_num"]=10,
@ -663,7 +657,7 @@ local chapter_dungeon_equip = {
["weight"]=100 ["weight"]=100
} }
}, },
["bao_drop_num"]=3, ["bao_drop_num"]=2,
["item_show"]={ ["item_show"]={
{ {
["type"]=1, ["type"]=1,
@ -731,13 +725,13 @@ local chapter_dungeon_equip = {
["type"]=1, ["type"]=1,
["id"]=1002, ["id"]=1002,
["num"]=1, ["num"]=1,
["weight"]=60 ["weight"]=20
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1003, ["id"]=1003,
["num"]=1, ["num"]=1,
["weight"]=30 ["weight"]=70
}, },
{ {
["type"]=1, ["type"]=1,
@ -751,12 +745,12 @@ local chapter_dungeon_equip = {
["bao_drop"]={ ["bao_drop"]={
{ {
["type"]=1, ["type"]=1,
["id"]=1004, ["id"]=1003,
["num"]=1, ["num"]=1,
["weight"]=100 ["weight"]=100
} }
}, },
["bao_drop_num"]=1, ["bao_drop_num"]=2,
["item_show"]={ ["item_show"]={
{ {
["type"]=1, ["type"]=1,
@ -824,19 +818,19 @@ local chapter_dungeon_equip = {
["type"]=1, ["type"]=1,
["id"]=1002, ["id"]=1002,
["num"]=1, ["num"]=1,
["weight"]=45 ["weight"]=10
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1003, ["id"]=1003,
["num"]=1, ["num"]=1,
["weight"]=40 ["weight"]=65
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1004, ["id"]=1004,
["num"]=1, ["num"]=1,
["weight"]=15 ["weight"]=25
} }
}, },
["rand_drop_num"]=10, ["rand_drop_num"]=10,
@ -844,7 +838,7 @@ local chapter_dungeon_equip = {
["bao_drop"]={ ["bao_drop"]={
{ {
["type"]=1, ["type"]=1,
["id"]=1004, ["id"]=1003,
["num"]=1, ["num"]=1,
["weight"]=100 ["weight"]=100
} }
@ -913,23 +907,17 @@ local chapter_dungeon_equip = {
} }
}, },
["rand_drop"]={ ["rand_drop"]={
{
["type"]=1,
["id"]=1002,
["num"]=1,
["weight"]=30
},
{ {
["type"]=1, ["type"]=1,
["id"]=1003, ["id"]=1003,
["num"]=1, ["num"]=1,
["weight"]=50 ["weight"]=55
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1004, ["id"]=1004,
["num"]=1, ["num"]=1,
["weight"]=20 ["weight"]=45
} }
}, },
["rand_drop_num"]=10, ["rand_drop_num"]=10,
@ -937,12 +925,12 @@ local chapter_dungeon_equip = {
["bao_drop"]={ ["bao_drop"]={
{ {
["type"]=1, ["type"]=1,
["id"]=1004, ["id"]=1003,
["num"]=1, ["num"]=1,
["weight"]=100 ["weight"]=100
} }
}, },
["bao_drop_num"]=3, ["bao_drop_num"]=2,
["item_show"]={ ["item_show"]={
{ {
["type"]=1, ["type"]=1,
@ -1010,19 +998,19 @@ local chapter_dungeon_equip = {
["type"]=1, ["type"]=1,
["id"]=1003, ["id"]=1003,
["num"]=1, ["num"]=1,
["weight"]=67 ["weight"]=30
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1004, ["id"]=1004,
["num"]=1, ["num"]=1,
["weight"]=25 ["weight"]=60
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1005, ["id"]=1005,
["num"]=1, ["num"]=1,
["weight"]=8 ["weight"]=10
} }
}, },
["rand_drop_num"]=10, ["rand_drop_num"]=10,
@ -1030,12 +1018,12 @@ local chapter_dungeon_equip = {
["bao_drop"]={ ["bao_drop"]={
{ {
["type"]=1, ["type"]=1,
["id"]=1005, ["id"]=1004,
["num"]=1, ["num"]=1,
["weight"]=100 ["weight"]=100
} }
}, },
["bao_drop_num"]=1, ["bao_drop_num"]=2,
["item_show"]={ ["item_show"]={
{ {
["type"]=1, ["type"]=1,
@ -1103,19 +1091,19 @@ local chapter_dungeon_equip = {
["type"]=1, ["type"]=1,
["id"]=1003, ["id"]=1003,
["num"]=1, ["num"]=1,
["weight"]=57 ["weight"]=10
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1004, ["id"]=1004,
["num"]=1, ["num"]=1,
["weight"]=30 ["weight"]=80
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1005, ["id"]=1005,
["num"]=1, ["num"]=1,
["weight"]=13 ["weight"]=20
} }
}, },
["rand_drop_num"]=10, ["rand_drop_num"]=10,
@ -1123,7 +1111,7 @@ local chapter_dungeon_equip = {
["bao_drop"]={ ["bao_drop"]={
{ {
["type"]=1, ["type"]=1,
["id"]=1005, ["id"]=1004,
["num"]=1, ["num"]=1,
["weight"]=100 ["weight"]=100
} }
@ -1192,23 +1180,17 @@ local chapter_dungeon_equip = {
} }
}, },
["rand_drop"]={ ["rand_drop"]={
{
["type"]=1,
["id"]=1003,
["num"]=1,
["weight"]=46
},
{ {
["type"]=1, ["type"]=1,
["id"]=1004, ["id"]=1004,
["num"]=1, ["num"]=1,
["weight"]=36 ["weight"]=60
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1005, ["id"]=1005,
["num"]=1, ["num"]=1,
["weight"]=18 ["weight"]=40
} }
}, },
["rand_drop_num"]=10, ["rand_drop_num"]=10,
@ -1216,12 +1198,12 @@ local chapter_dungeon_equip = {
["bao_drop"]={ ["bao_drop"]={
{ {
["type"]=1, ["type"]=1,
["id"]=1005, ["id"]=1004,
["num"]=1, ["num"]=1,
["weight"]=100 ["weight"]=100
} }
}, },
["bao_drop_num"]=3, ["bao_drop_num"]=2,
["item_show"]={ ["item_show"]={
{ {
["type"]=1, ["type"]=1,
@ -1289,19 +1271,19 @@ local chapter_dungeon_equip = {
["type"]=1, ["type"]=1,
["id"]=1004, ["id"]=1004,
["num"]=1, ["num"]=1,
["weight"]=66 ["weight"]=30
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1005, ["id"]=1005,
["num"]=1, ["num"]=1,
["weight"]=30 ["weight"]=55
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1006, ["id"]=1006,
["num"]=1, ["num"]=1,
["weight"]=4 ["weight"]=5
} }
}, },
["rand_drop_num"]=10, ["rand_drop_num"]=10,
@ -1309,12 +1291,12 @@ local chapter_dungeon_equip = {
["bao_drop"]={ ["bao_drop"]={
{ {
["type"]=1, ["type"]=1,
["id"]=1006, ["id"]=1004,
["num"]=1, ["num"]=1,
["weight"]=100 ["weight"]=100
} }
}, },
["bao_drop_num"]=1, ["bao_drop_num"]=2,
["item_show"]={ ["item_show"]={
{ {
["type"]=1, ["type"]=1,
@ -1390,19 +1372,19 @@ local chapter_dungeon_equip = {
["type"]=1, ["type"]=1,
["id"]=1004, ["id"]=1004,
["num"]=1, ["num"]=1,
["weight"]=53 ["weight"]=20
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1005, ["id"]=1005,
["num"]=1, ["num"]=1,
["weight"]=38 ["weight"]=70
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1006, ["id"]=1006,
["num"]=1, ["num"]=1,
["weight"]=9 ["weight"]=10
} }
}, },
["rand_drop_num"]=10, ["rand_drop_num"]=10,
@ -1410,12 +1392,12 @@ local chapter_dungeon_equip = {
["bao_drop"]={ ["bao_drop"]={
{ {
["type"]=1, ["type"]=1,
["id"]=1006, ["id"]=1005,
["num"]=1, ["num"]=1,
["weight"]=100 ["weight"]=100
} }
}, },
["bao_drop_num"]=1, ["bao_drop_num"]=2,
["item_show"]={ ["item_show"]={
{ {
["type"]=1, ["type"]=1,
@ -1483,19 +1465,19 @@ local chapter_dungeon_equip = {
["type"]=1, ["type"]=1,
["id"]=1004, ["id"]=1004,
["num"]=1, ["num"]=1,
["weight"]=43 ["weight"]=15
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1005, ["id"]=1005,
["num"]=1, ["num"]=1,
["weight"]=42 ["weight"]=65
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1006, ["id"]=1006,
["num"]=1, ["num"]=1,
["weight"]=15 ["weight"]=20
} }
}, },
["rand_drop_num"]=10, ["rand_drop_num"]=10,
@ -1503,7 +1485,7 @@ local chapter_dungeon_equip = {
["bao_drop"]={ ["bao_drop"]={
{ {
["type"]=1, ["type"]=1,
["id"]=1006, ["id"]=1005,
["num"]=1, ["num"]=1,
["weight"]=100 ["weight"]=100
} }
@ -1576,19 +1558,19 @@ local chapter_dungeon_equip = {
["type"]=1, ["type"]=1,
["id"]=1004, ["id"]=1004,
["num"]=1, ["num"]=1,
["weight"]=40 ["weight"]=10
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1005, ["id"]=1005,
["num"]=1, ["num"]=1,
["weight"]=40 ["weight"]=60
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1006, ["id"]=1006,
["num"]=1, ["num"]=1,
["weight"]=20 ["weight"]=30
} }
}, },
["rand_drop_num"]=10, ["rand_drop_num"]=10,
@ -1596,7 +1578,7 @@ local chapter_dungeon_equip = {
["bao_drop"]={ ["bao_drop"]={
{ {
["type"]=1, ["type"]=1,
["id"]=1006, ["id"]=1005,
["num"]=1, ["num"]=1,
["weight"]=100 ["weight"]=100
} }
@ -1669,19 +1651,19 @@ local chapter_dungeon_equip = {
["type"]=1, ["type"]=1,
["id"]=1004, ["id"]=1004,
["num"]=1, ["num"]=1,
["weight"]=37 ["weight"]=7
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1005, ["id"]=1005,
["num"]=1, ["num"]=1,
["weight"]=38 ["weight"]=53
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1006, ["id"]=1006,
["num"]=1, ["num"]=1,
["weight"]=25 ["weight"]=40
} }
}, },
["rand_drop_num"]=10, ["rand_drop_num"]=10,
@ -1689,12 +1671,12 @@ local chapter_dungeon_equip = {
["bao_drop"]={ ["bao_drop"]={
{ {
["type"]=1, ["type"]=1,
["id"]=1006, ["id"]=1005,
["num"]=1, ["num"]=1,
["weight"]=100 ["weight"]=100
} }
}, },
["bao_drop_num"]=3, ["bao_drop_num"]=2,
["item_show"]={ ["item_show"]={
{ {
["type"]=1, ["type"]=1,
@ -1762,19 +1744,19 @@ local chapter_dungeon_equip = {
["type"]=1, ["type"]=1,
["id"]=1004, ["id"]=1004,
["num"]=1, ["num"]=1,
["weight"]=34 ["weight"]=5
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1005, ["id"]=1005,
["num"]=1, ["num"]=1,
["weight"]=36 ["weight"]=45
}, },
{ {
["type"]=1, ["type"]=1,
["id"]=1006, ["id"]=1006,
["num"]=1, ["num"]=1,
["weight"]=30 ["weight"]=50
} }
}, },
["rand_drop_num"]=10, ["rand_drop_num"]=10,
@ -1787,7 +1769,7 @@ local chapter_dungeon_equip = {
["weight"]=100 ["weight"]=100
} }
}, },
["bao_drop_num"]=3, ["bao_drop_num"]=2,
["item_show"]={ ["item_show"]={
{ {
["type"]=1, ["type"]=1,

View File

@ -376,9 +376,38 @@ local const = {
}, },
["bounty_click"]={ ["bounty_click"]={
["value"]=4 ["value"]=4
},
["activity_boss_rush_time"]={
["value"]=1
},
["activity_boss_rush_cost"]={
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=20,
["num_for_nothing"]="VAg="
}
},
["activity_boss_rush_costadd"]={
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=20,
["num_for_nothing"]="VAg="
}
},
["activity_boss_rush_hp_add"]={
["value"]=100
},
["activity_boss_rush_atk_add"]={
["value"]=100
} }
} }
local config = { local config = {
data=const,count=77 data=const,count=82
} }
return config return config

View File

@ -7556,12 +7556,12 @@ local equip = {
} }
}, },
["weapon_icon"]={ ["weapon_icon"]={
25, 31,
26, 32,
27, 33,
28, 34,
29, 35,
30 36
} }
}, },
[1400103]={ [1400103]={
@ -8001,12 +8001,12 @@ local equip = {
} }
}, },
["weapon_icon"]={ ["weapon_icon"]={
13, 19,
14, 20,
15, 21,
16, 22,
17, 23,
18 24
} }
}, },
[1400104]={ [1400104]={
@ -8446,12 +8446,12 @@ local equip = {
} }
}, },
["weapon_icon"]={ ["weapon_icon"]={
1, 7,
2, 8,
3, 9,
4, 10,
5, 11,
6 12
} }
}, },
[1400105]={ [1400105]={
@ -8891,12 +8891,12 @@ local equip = {
} }
}, },
["weapon_icon"]={ ["weapon_icon"]={
37, 43,
38, 44,
39, 45,
40, 46,
41, 47,
42 48
} }
}, },
[1400201]={ [1400201]={

View File

@ -2003,10 +2003,6 @@ local fx = {
["bind"]="root", ["bind"]="root",
["bg"]=1 ["bg"]=1
}, },
[300150]={
["res"]="sfx_p0036_b05",
["bind"]="root"
},
[400000]={ [400000]={
["res"]="sfx_p0012_b01", ["res"]="sfx_p0012_b01",
["bind"]="root", ["bind"]="root",
@ -2758,14 +2754,9 @@ local fx = {
["bind"]="root", ["bind"]="root",
["flip"]=1, ["flip"]=1,
["bg"]=1 ["bg"]=1
},
[400150]={
["res"]="sfx_p0036_b05",
["bind"]="root",
["flip"]=1
} }
} }
local config = { local config = {
data=fx,count=649 data=fx,count=647
} }
return config return config

View File

@ -247,8 +247,7 @@ local hero = {
["is_show"]=1, ["is_show"]=1,
["collection_point"]=5, ["collection_point"]=5,
["skin"]={ ["skin"]={
14001, 14001
1400101
} }
}, },
[14002]={ [14002]={

View File

@ -1550,6 +1550,16 @@ local item = {
} }
} }
}, },
[51]={
["type"]=2,
["qlt"]=4,
["icon"]="51"
},
[52]={
["type"]=2,
["qlt"]=4,
["icon"]="52"
},
[1001]={ [1001]={
["type"]=2, ["type"]=2,
["qlt"]=1, ["qlt"]=1,
@ -1562,8 +1572,7 @@ local item = {
4, 4,
5, 5,
6, 6,
7, 7
8
} }
}, },
[1002]={ [1002]={
@ -1572,14 +1581,14 @@ local item = {
["icon"]="1002", ["icon"]="1002",
["get_way_type"]=1, ["get_way_type"]=1,
["get_way"]={ ["get_way"]={
9,
8,
10,
6, 6,
11, 7,
5, 5,
8,
4, 4,
3 9,
3,
10
} }
}, },
[1003]={ [1003]={
@ -1588,15 +1597,14 @@ local item = {
["icon"]="1003", ["icon"]="1003",
["get_way_type"]=1, ["get_way_type"]=1,
["get_way"]={ ["get_way"]={
12,
13,
11,
14,
10,
9, 9,
10,
8, 8,
11,
12,
7, 7,
6 6,
13
} }
}, },
[1004]={ [1004]={
@ -1605,18 +1613,18 @@ local item = {
["icon"]="1004", ["icon"]="1004",
["get_way_type"]=1, ["get_way_type"]=1,
["get_way"]={ ["get_way"]={
13,
14,
12,
15, 15,
11,
16, 16,
10,
17, 17,
18, 18,
19, 19,
14,
20, 20,
13, 10
12,
11,
10,
9
} }
}, },
[1005]={ [1005]={
@ -1625,12 +1633,12 @@ local item = {
["icon"]="1005", ["icon"]="1005",
["get_way_type"]=1, ["get_way_type"]=1,
["get_way"]={ ["get_way"]={
16,
17, 17,
18, 18,
16,
19, 19,
20,
15, 15,
20,
14, 14,
13, 13,
12 12
@ -1676,21 +1684,21 @@ local item = {
["icon"]="1008", ["icon"]="1008",
["get_way_type"]=2, ["get_way_type"]=2,
["get_way"]={ ["get_way"]={
25,
31,
19, 19,
13, 13,
25,
7, 7,
29, 31,
30,
35,
36,
23, 23,
24, 24,
17, 17,
18, 18,
29,
30,
11, 11,
12 12,
35,
36
} }
}, },
[1009]={ [1009]={
@ -1699,22 +1707,22 @@ local item = {
["icon"]="1009", ["icon"]="1009",
["get_way_type"]=2, ["get_way_type"]=2,
["get_way"]={ ["get_way"]={
37,
43,
31, 31,
37,
25, 25,
19, 19,
43,
13, 13,
41,
42,
47,
48,
35, 35,
36, 36,
41,
42,
29, 29,
30, 30,
23, 23,
24, 24,
47,
48,
17, 17,
18 18
} }
@ -1725,22 +1733,22 @@ local item = {
["icon"]="1010", ["icon"]="1010",
["get_way_type"]=2, ["get_way_type"]=2,
["get_way"]={ ["get_way"]={
49,
55,
43, 43,
49,
37, 37,
31, 31,
55,
25, 25,
53,
54,
59,
60,
47, 47,
48, 48,
53,
54,
41, 41,
42, 42,
35, 35,
36, 36,
59,
60,
29, 29,
30 30
} }
@ -1774,7 +1782,7 @@ local item = {
55, 55,
49, 49,
59, 59,
54, 60,
53, 53,
54 54
} }
@ -1805,21 +1813,21 @@ local item = {
["icon"]="1020", ["icon"]="1020",
["get_way_type"]=2, ["get_way_type"]=2,
["get_way"]={ ["get_way"]={
26,
32,
20, 20,
14, 14,
26,
8, 8,
29, 32,
30,
35,
36,
23, 23,
24, 24,
17, 17,
18, 18,
29,
30,
11, 11,
12 12,
35,
36
} }
}, },
[1015]={ [1015]={
@ -1828,22 +1836,22 @@ local item = {
["icon"]="1021", ["icon"]="1021",
["get_way_type"]=2, ["get_way_type"]=2,
["get_way"]={ ["get_way"]={
38,
44,
32, 32,
38,
26, 26,
20, 20,
44,
14, 14,
41,
42,
47,
48,
35, 35,
36, 36,
41,
42,
29, 29,
30, 30,
23, 23,
24, 24,
47,
48,
17, 17,
18 18
} }
@ -1854,22 +1862,22 @@ local item = {
["icon"]="1022", ["icon"]="1022",
["get_way_type"]=2, ["get_way_type"]=2,
["get_way"]={ ["get_way"]={
50,
56,
44, 44,
50,
38, 38,
32, 32,
56,
26, 26,
53,
54,
59,
60,
47, 47,
48, 48,
53,
54,
41, 41,
42, 42,
35, 35,
36, 36,
59,
60,
29, 29,
30 30
} }
@ -1903,7 +1911,7 @@ local item = {
56, 56,
50, 50,
59, 59,
54, 60,
53, 53,
54 54
} }
@ -1934,21 +1942,21 @@ local item = {
["icon"]="1014", ["icon"]="1014",
["get_way_type"]=2, ["get_way_type"]=2,
["get_way"]={ ["get_way"]={
27,
33,
21, 21,
15, 15,
27,
9, 9,
29, 33,
30,
35,
36,
23, 23,
24, 24,
17, 17,
18, 18,
29,
30,
11, 11,
12 12,
35,
36
} }
}, },
[1021]={ [1021]={
@ -1957,22 +1965,22 @@ local item = {
["icon"]="1015", ["icon"]="1015",
["get_way_type"]=2, ["get_way_type"]=2,
["get_way"]={ ["get_way"]={
39,
45,
33, 33,
39,
27, 27,
21, 21,
45,
15, 15,
41,
42,
47,
48,
35, 35,
36, 36,
41,
42,
29, 29,
30, 30,
23, 23,
24, 24,
47,
48,
17, 17,
18 18
} }
@ -1983,22 +1991,22 @@ local item = {
["icon"]="1016", ["icon"]="1016",
["get_way_type"]=2, ["get_way_type"]=2,
["get_way"]={ ["get_way"]={
51,
57,
45, 45,
51,
39, 39,
33, 33,
57,
27, 27,
53,
54,
59,
60,
47, 47,
48, 48,
53,
54,
41, 41,
42, 42,
35, 35,
36, 36,
59,
60,
29, 29,
30 30
} }
@ -2032,7 +2040,7 @@ local item = {
57, 57,
51, 51,
59, 59,
54, 60,
53, 53,
54 54
} }
@ -2063,21 +2071,21 @@ local item = {
["icon"]="1026", ["icon"]="1026",
["get_way_type"]=2, ["get_way_type"]=2,
["get_way"]={ ["get_way"]={
28,
34,
22, 22,
16, 16,
28,
10, 10,
29, 34,
30,
35,
36,
23, 23,
24, 24,
17, 17,
18, 18,
29,
30,
11, 11,
12 12,
35,
36
} }
}, },
[1027]={ [1027]={
@ -2086,22 +2094,22 @@ local item = {
["icon"]="1027", ["icon"]="1027",
["get_way_type"]=2, ["get_way_type"]=2,
["get_way"]={ ["get_way"]={
40,
46,
34, 34,
40,
28, 28,
22, 22,
46,
16, 16,
41,
42,
47,
48,
35, 35,
36, 36,
41,
42,
29, 29,
30, 30,
23, 23,
24, 24,
47,
48,
17, 17,
18 18
} }
@ -2112,22 +2120,22 @@ local item = {
["icon"]="1028", ["icon"]="1028",
["get_way_type"]=2, ["get_way_type"]=2,
["get_way"]={ ["get_way"]={
52,
58,
46, 46,
52,
40, 40,
34, 34,
58,
28, 28,
53,
54,
59,
60,
47, 47,
48, 48,
53,
54,
41, 41,
42, 42,
35, 35,
36, 36,
59,
60,
29, 29,
30 30
} }
@ -2161,7 +2169,7 @@ local item = {
58, 58,
52, 52,
59, 59,
54, 60,
53, 53,
54 54
} }
@ -2369,15 +2377,9 @@ local item = {
["parameter"]=5400101, ["parameter"]=5400101,
["qlt"]=4, ["qlt"]=4,
["icon"]="5400101" ["icon"]="5400101"
},
[1400101]={
["type"]=12,
["parameter"]=1400101,
["qlt"]=3,
["icon"]="1400101"
} }
} }
local config = { local config = {
data=item,count=112 data=item,count=113
} }
return config return config

View File

@ -455,17 +455,18 @@ local LocalizationGlobalConst =
HERO_FUND_DESCC_2 = "HERO_FUND_DESCC_2", HERO_FUND_DESCC_2 = "HERO_FUND_DESCC_2",
HERO_FUND_DESCC_3 = "HERO_FUND_DESCC_3", HERO_FUND_DESCC_3 = "HERO_FUND_DESCC_3",
HERO_FUND_DESCC_4 = "HERO_FUND_DESCC_4", HERO_FUND_DESCC_4 = "HERO_FUND_DESCC_4",
ARENA_DESC_37 = "ARENA_DESC_37", ACT_FOURTEEN_TITLE_1 = "ACT_FOURTEEN_TITLE_1",
ARENA_DESC_38 = "ARENA_DESC_38", ACT_FOURTEEN_TITLE_2 = "ACT_FOURTEEN_TITLE_2",
ARENA_DESC_39 = "ARENA_DESC_39", ACT_FOURTEEN_TITLE_3 = "ACT_FOURTEEN_TITLE_3",
ARENA_DESC_40 = "ARENA_DESC_40", ACT_FOURTEEN_TITLE_4 = "ACT_FOURTEEN_TITLE_4",
ARENA_DESC_41 = "ARENA_DESC_41", ACT_FOURTEEN_DESC_1 = "ACT_FOURTEEN_DESC_1",
ARENA_DESC_42 = "ARENA_DESC_42", ACT_FOURTEEN_DESC_2 = "ACT_FOURTEEN_DESC_2",
EQUIP_DESC_26 = "EQUIP_DESC_26", ACT_FOURTEEN_DESC_3 = "ACT_FOURTEEN_DESC_3",
EQUIP_DESC_27 = "EQUIP_DESC_27", ACT_FOURTEEN_DESC_5 = "ACT_FOURTEEN_DESC_5",
SEIZED_DESC_1 = "SEIZED_DESC_1", ACT_FOURTEEN_DESC_6 = "ACT_FOURTEEN_DESC_6",
SEIZED_DESC_2 = "SEIZED_DESC_2", ACT_FOURTEEN_DESC_7 = "ACT_FOURTEEN_DESC_7",
SEIZED_DESC_3 = "SEIZED_DESC_3", ACT_FOURTEEN_DESC_8 = "ACT_FOURTEEN_DESC_8",
ACT_FOURTEEN_DESC_9 = "ACT_FOURTEEN_DESC_9",
} }
return LocalizationGlobalConst return LocalizationGlobalConst

View File

@ -0,0 +1,777 @@
local monster_activity = {
[104]={
["monster_base"]=20001,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30001,
30002,
30003
},
["skill"]={
10020
},
["monster_exp"]=10000
},
[204]={
["monster_base"]=20002,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30004,
30005,
30006
},
["skill"]={
10019
},
["monster_exp"]=10000
},
[304]={
["monster_base"]=20004,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30010,
30011,
30012
},
["skill"]={
10015
},
["monster_exp"]=10000
},
[404]={
["monster_base"]=20006,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30016,
30017,
30018
},
["skill"]={
10033
},
["passive_skill"]={
10010
},
["monster_exp"]=10000
},
[504]={
["monster_base"]=20007,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30019,
30020,
30021
},
["skill"]={
10060
},
["passive_skill"]={
10061
},
["monster_exp"]=10000
},
[604]={
["monster_base"]=20008,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30022,
30023,
30024
},
["skill"]={
10032
},
["passive_skill"]={
10009
},
["monster_exp"]=10000
},
[704]={
["monster_base"]=20012,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30034,
30035,
30036
},
["skill"]={
10017
},
["monster_exp"]=10000
},
[804]={
["monster_base"]=20014,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30040,
30041,
30042
},
["skill"]={
10016
},
["monster_exp"]=10000
},
[904]={
["monster_base"]=20015,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30043,
30044,
30045
},
["skill"]={
10070
},
["passive_skill"]={
10008
},
["monster_exp"]=10000
},
[1004]={
["monster_base"]=20023,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30067,
30068,
30069
},
["skill"]={
10063
},
["passive_skill"]={
10013
},
["monster_exp"]=10000
},
[1104]={
["monster_base"]=20009,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30025,
30026,
30027
},
["skill"]={
10039
},
["passive_skill"]={
10010,
10011
},
["monster_exp"]=10000
},
[1204]={
["monster_base"]=20011,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30031,
30032,
30033
},
["skill"]={
10018
},
["monster_exp"]=10000
},
[1304]={
["monster_base"]=20017,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30049,
30050,
30051
},
["skill"]={
10027
},
["monster_exp"]=10000
},
[1404]={
["monster_base"]=20019,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30055,
30056,
30057
},
["skill"]={
10045
},
["passive_skill"]={
10013
},
["monster_exp"]=10000
},
[1504]={
["monster_base"]=20022,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30064,
30065,
30066
},
["skill"]={
10023
},
["passive_skill"]={
10013
},
["monster_exp"]=10000
},
[1604]={
["monster_base"]=20026,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30076,
30077,
30078
},
["skill"]={
10064
},
["passive_skill"]={
10013
},
["monster_exp"]=10000
},
[1704]={
["monster_base"]=20028,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30162,
30163,
30164
},
["skill"]={
10142
},
["passive_skill"]={
10011
},
["monster_exp"]=10000
},
[1804]={
["monster_base"]=20029,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30085,
30086,
30087
},
["skill"]={
10065
},
["monster_exp"]=10000
},
[1904]={
["monster_base"]=20010,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30028,
30029,
30030
},
["skill"]={
10041,
10066
},
["passive_skill"]={
10008,
10009,
10013
},
["monster_exp"]=10000
},
[2004]={
["monster_base"]=20016,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30046,
30047,
30048
},
["skill"]={
10036
},
["passive_skill"]={
10010,
10011
},
["monster_exp"]=10000
},
[2104]={
["monster_base"]=20018,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30052,
30053,
30054
},
["skill"]={
10051
},
["passive_skill"]={
10011,
10012
},
["monster_exp"]=10000
},
[2204]={
["monster_base"]=20021,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30061,
30062,
30063
},
["skill"]={
10034
},
["passive_skill"]={
10011,
10008
},
["monster_exp"]=10000
},
[2304]={
["monster_base"]=20025,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30073,
30074,
30075
},
["skill"]={
10062
},
["passive_skill"]={
10013
},
["monster_exp"]=10000
},
[2404]={
["monster_base"]=20027,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30079,
30080,
30081
},
["skill"]={
10082
},
["monster_exp"]=10000
},
[2504]={
["monster_base"]=20035,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30100,
30101,
30102,
30113
},
["skill"]={
10076
},
["passive_skill"]={
10011,
10009
},
["monster_exp"]=10000
},
[2604]={
["monster_base"]=20036,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30103,
30104,
30105
},
["skill"]={
10077,
10078
},
["passive_skill"]={
10011
},
["monster_exp"]=10000
},
[2704]={
["monster_base"]=20044,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30147,
30148,
30149
},
["skill"]={
10130,
10131
},
["passive_skill"]={
10132,
10013,
10011
},
["monster_exp"]=10000
},
[2804]={
["monster_base"]=20003,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30007,
30008,
30009
},
["skill"]={
10029
},
["passive_skill"]={
10013
},
["monster_exp"]=10000
},
[2904]={
["monster_base"]=20005,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30013,
30014,
30015
},
["skill"]={
10024
},
["passive_skill"]={
10012
},
["monster_exp"]=10000
},
[3004]={
["monster_base"]=20020,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30058,
30059,
30060
},
["skill"]={
10047
},
["passive_skill"]={
10013
},
["monster_exp"]=10000
},
[3104]={
["monster_base"]=20030,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30088,
30089,
30090
},
["skill"]={
10056,
10057
},
["passive_skill"]={
10014
},
["monster_exp"]=10000
},
[3204]={
["monster_base"]=20034,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30097,
30098,
30099
},
["skill"]={
10074,
10075
},
["passive_skill"]={
10013,
10012
},
["monster_exp"]=10000
},
[3304]={
["monster_base"]=20037,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30106,
30107,
30108
},
["skill"]={
10079
},
["passive_skill"]={
10013,
10009,
10084
},
["monster_exp"]=10000
},
[3404]={
["monster_base"]=20045,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30150,
30151,
30152
},
["skill"]={
10133,
10134
},
["passive_skill"]={
10012
},
["monster_exp"]=10000
},
[3504]={
["monster_base"]=20046,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30153,
30154,
30155
},
["skill"]={
10135,
10136
},
["passive_skill"]={
10012
},
["monster_exp"]=10000
},
[3604]={
["monster_base"]=20013,
["is_boss"]=1,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30037,
30038,
30039
},
["skill"]={
10049,
10050
},
["monster_exp"]=10000
},
[3704]={
["monster_base"]=20024,
["is_boss"]=1,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30070,
30071,
30072
},
["skill"]={
10043,
10044
},
["passive_skill"]={
10012
},
["monster_exp"]=10000
},
[3804]={
["monster_base"]=20031,
["is_boss"]=1,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30091,
30092,
30093
},
["skill"]={
10058,
10059
},
["passive_skill"]={
10008,
10011,
10013
},
["monster_exp"]=10000
},
[3904]={
["monster_base"]=20032,
["is_boss"]=1,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30094,
30095,
30096
},
["skill"]={
10052,
10053,
10054
},
["passive_skill"]={
10008,
10010,
10013
},
["monster_exp"]=10000
},
[4004]={
["monster_base"]=20038,
["is_boss"]=1,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30109,
30110,
30111,
30112
},
["skill"]={
10080,
10081
},
["passive_skill"]={
10083,
10009,
10011
},
["monster_exp"]=10000
},
[4104]={
["monster_base"]=20047,
["is_boss"]=1,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30156,
30157,
30158
},
["skill"]={
10137,
10138
},
["passive_skill"]={
10013,
10010
},
["monster_exp"]=10000
},
[4204]={
["monster_base"]=20048,
["is_boss"]=1,
["hp"]=10000000,
["atk"]=500000,
["atk_times"]=4,
["hurt_skill"]={
30159,
30160,
30161
},
["skill"]={
10139,
10140
},
["passive_skill"]={
10141,
10014,
10009
},
["monster_exp"]=10000
}
}
local config = {
data=monster_activity,count=42
}
return config

View File

@ -0,0 +1,10 @@
fileFormatVersion: 2
guid: 228b857e2abcb754185db1ca23e6184e
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
local monster_dungeon_equip = { local monster_dungeon_equip = {
[106]={ [106]={
["monster_base"]=10056, ["monster_base"]=10056,
["hp"]=81620000, ["hp"]=76930000,
["atk"]=1390000, ["atk"]=1390000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
@ -16,7 +16,7 @@ local monster_dungeon_equip = {
}, },
[206]={ [206]={
["monster_base"]=10045, ["monster_base"]=10045,
["hp"]=99240000, ["hp"]=93400000,
["atk"]=1930000, ["atk"]=1930000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
@ -31,7 +31,7 @@ local monster_dungeon_equip = {
}, },
[306]={ [306]={
["monster_base"]=10028, ["monster_base"]=10028,
["hp"]=178640000, ["hp"]=153020000,
["atk"]=2140000, ["atk"]=2140000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
@ -46,7 +46,7 @@ local monster_dungeon_equip = {
}, },
[406]={ [406]={
["monster_base"]=10003, ["monster_base"]=10003,
["hp"]=237440000, ["hp"]=203320000,
["atk"]=2220000, ["atk"]=2220000,
["atk_times"]=2, ["atk_times"]=2,
["hurt_skill"]={ ["hurt_skill"]={
@ -62,7 +62,7 @@ local monster_dungeon_equip = {
[506]={ [506]={
["monster_base"]=20041, ["monster_base"]=20041,
["is_boss"]=2, ["is_boss"]=2,
["hp"]=431900000, ["hp"]=386900000,
["atk"]=2260000, ["atk"]=2260000,
["atk_times"]=4, ["atk_times"]=4,
["hurt_skill"]={ ["hurt_skill"]={
@ -82,7 +82,7 @@ local monster_dungeon_equip = {
}, },
[606]={ [606]={
["monster_base"]=10060, ["monster_base"]=10060,
["hp"]=90860000, ["hp"]=85320000,
["atk"]=1540000, ["atk"]=1540000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
@ -97,7 +97,7 @@ local monster_dungeon_equip = {
}, },
[706]={ [706]={
["monster_base"]=10055, ["monster_base"]=10055,
["hp"]=110400000, ["hp"]=103120000,
["atk"]=2150000, ["atk"]=2150000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
@ -112,7 +112,7 @@ local monster_dungeon_equip = {
}, },
[806]={ [806]={
["monster_base"]=10027, ["monster_base"]=10027,
["hp"]=198820000, ["hp"]=168890000,
["atk"]=2380000, ["atk"]=2380000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
@ -127,7 +127,7 @@ local monster_dungeon_equip = {
}, },
[906]={ [906]={
["monster_base"]=10064, ["monster_base"]=10064,
["hp"]=264180000, ["hp"]=224600000,
["atk"]=2470000, ["atk"]=2470000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
@ -143,7 +143,7 @@ local monster_dungeon_equip = {
[1006]={ [1006]={
["monster_base"]=20040, ["monster_base"]=20040,
["is_boss"]=2, ["is_boss"]=2,
["hp"]=480480000, ["hp"]=426150000,
["atk"]=2520000, ["atk"]=2520000,
["atk_times"]=4, ["atk_times"]=4,
["hurt_skill"]={ ["hurt_skill"]={
@ -162,7 +162,7 @@ local monster_dungeon_equip = {
}, },
[1106]={ [1106]={
["monster_base"]=10015, ["monster_base"]=10015,
["hp"]=98780000, ["hp"]=93300000,
["atk"]=1680000, ["atk"]=1680000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
@ -177,7 +177,7 @@ local monster_dungeon_equip = {
}, },
[1206]={ [1206]={
["monster_base"]=10025, ["monster_base"]=10025,
["hp"]=119880000, ["hp"]=112820000,
["atk"]=2340000, ["atk"]=2340000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
@ -192,7 +192,7 @@ local monster_dungeon_equip = {
}, },
[1306]={ [1306]={
["monster_base"]=10030, ["monster_base"]=10030,
["hp"]=215800000, ["hp"]=191790000,
["atk"]=2590000, ["atk"]=2590000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
@ -207,7 +207,7 @@ local monster_dungeon_equip = {
}, },
[1406]={ [1406]={
["monster_base"]=10018, ["monster_base"]=10018,
["hp"]=286720000, ["hp"]=255070000,
["atk"]=2690000, ["atk"]=2690000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
@ -223,7 +223,7 @@ local monster_dungeon_equip = {
[1506]={ [1506]={
["monster_base"]=20039, ["monster_base"]=20039,
["is_boss"]=2, ["is_boss"]=2,
["hp"]=521500000, ["hp"]=494490000,
["atk"]=2740000, ["atk"]=2740000,
["atk_times"]=4, ["atk_times"]=4,
["hurt_skill"]={ ["hurt_skill"]={
@ -242,8 +242,8 @@ local monster_dungeon_equip = {
}, },
[1606]={ [1606]={
["monster_base"]=10004, ["monster_base"]=10004,
["hp"]=118220000, ["hp"]=119700000,
["atk"]=2020000, ["atk"]=1830000,
["atk_times"]=2, ["atk_times"]=2,
["hurt_skill"]={ ["hurt_skill"]={
20010, 20010,
@ -257,8 +257,8 @@ local monster_dungeon_equip = {
}, },
[1706]={ [1706]={
["monster_base"]=10049, ["monster_base"]=10049,
["hp"]=143890000, ["hp"]=143630000,
["atk"]=2820000, ["atk"]=2540000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20142, 20142,
@ -272,8 +272,8 @@ local monster_dungeon_equip = {
}, },
[1806]={ [1806]={
["monster_base"]=10037, ["monster_base"]=10037,
["hp"]=259680000, ["hp"]=235050000,
["atk"]=3120000, ["atk"]=2810000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20106, 20106,
@ -287,8 +287,8 @@ local monster_dungeon_equip = {
}, },
[1906]={ [1906]={
["monster_base"]=10016, ["monster_base"]=10016,
["hp"]=351150000, ["hp"]=312870000,
["atk"]=3240000, ["atk"]=2920000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20043, 20043,
@ -303,8 +303,8 @@ local monster_dungeon_equip = {
[2006]={ [2006]={
["monster_base"]=20043, ["monster_base"]=20043,
["is_boss"]=2, ["is_boss"]=2,
["hp"]=638400000, ["hp"]=566760000,
["atk"]=3310000, ["atk"]=2980000,
["atk_times"]=4, ["atk_times"]=4,
["hurt_skill"]={ ["hurt_skill"]={
30120, 30120,
@ -323,8 +323,8 @@ local monster_dungeon_equip = {
}, },
[2106]={ [2106]={
["monster_base"]=10022, ["monster_base"]=10022,
["hp"]=126040000, ["hp"]=136880000,
["atk"]=2180000, ["atk"]=2010000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20061, 20061,
@ -338,8 +338,8 @@ local monster_dungeon_equip = {
}, },
[2206]={ [2206]={
["monster_base"]=10032, ["monster_base"]=10032,
["hp"]=153470000, ["hp"]=163040000,
["atk"]=3010000, ["atk"]=2780000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20091, 20091,
@ -353,8 +353,8 @@ local monster_dungeon_equip = {
}, },
[2306]={ [2306]={
["monster_base"]=10013, ["monster_base"]=10013,
["hp"]=276960000, ["hp"]=267170000,
["atk"]=3330000, ["atk"]=3070000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20034, 20034,
@ -368,8 +368,8 @@ local monster_dungeon_equip = {
}, },
[2406]={ [2406]={
["monster_base"]=10001, ["monster_base"]=10001,
["hp"]=374550000, ["hp"]=355450000,
["atk"]=3480000, ["atk"]=3200000,
["atk_times"]=2, ["atk_times"]=2,
["hurt_skill"]={ ["hurt_skill"]={
20001, 20001,
@ -384,8 +384,8 @@ local monster_dungeon_equip = {
[2506]={ [2506]={
["monster_base"]=20042, ["monster_base"]=20042,
["is_boss"]=2, ["is_boss"]=2,
["hp"]=680700000, ["hp"]=643710000,
["atk"]=3540000, ["atk"]=3260000,
["atk_times"]=4, ["atk_times"]=4,
["hurt_skill"]={ ["hurt_skill"]={
30123, 30123,
@ -403,8 +403,8 @@ local monster_dungeon_equip = {
}, },
[2606]={ [2606]={
["monster_base"]=10045, ["monster_base"]=10045,
["hp"]=140300000, ["hp"]=147550000,
["atk"]=2400000, ["atk"]=2190000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20130, 20130,
@ -418,8 +418,8 @@ local monster_dungeon_equip = {
}, },
[2706]={ [2706]={
["monster_base"]=10056, ["monster_base"]=10056,
["hp"]=169470000, ["hp"]=175200000,
["atk"]=3320000, ["atk"]=3030000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20163, 20163,
@ -433,8 +433,8 @@ local monster_dungeon_equip = {
}, },
[2806]={ [2806]={
["monster_base"]=10003, ["monster_base"]=10003,
["hp"]=306100000, ["hp"]=287270000,
["atk"]=3660000, ["atk"]=3340000,
["atk_times"]=2, ["atk_times"]=2,
["hurt_skill"]={ ["hurt_skill"]={
20007, 20007,
@ -448,8 +448,8 @@ local monster_dungeon_equip = {
}, },
[2906]={ [2906]={
["monster_base"]=10028, ["monster_base"]=10028,
["hp"]=415400000, ["hp"]=382140000,
["atk"]=3830000, ["atk"]=3490000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20079, 20079,
@ -464,8 +464,8 @@ local monster_dungeon_equip = {
[3006]={ [3006]={
["monster_base"]=20041, ["monster_base"]=20041,
["is_boss"]=2, ["is_boss"]=2,
["hp"]=754750000, ["hp"]=691660000,
["atk"]=3970000, ["atk"]=3560000,
["atk_times"]=4, ["atk_times"]=4,
["hurt_skill"]={ ["hurt_skill"]={
30126, 30126,
@ -484,8 +484,8 @@ local monster_dungeon_equip = {
}, },
[3106]={ [3106]={
["monster_base"]=10052, ["monster_base"]=10052,
["hp"]=153460000, ["hp"]=161570000,
["atk"]=2630000, ["atk"]=2380000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20151, 20151,
@ -499,8 +499,8 @@ local monster_dungeon_equip = {
}, },
[3206]={ [3206]={
["monster_base"]=10062, ["monster_base"]=10062,
["hp"]=185090000, ["hp"]=191650000,
["atk"]=3630000, ["atk"]=3300000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20181, 20181,
@ -514,8 +514,8 @@ local monster_dungeon_equip = {
}, },
[3306]={ [3306]={
["monster_base"]=10036, ["monster_base"]=10036,
["hp"]=334280000, ["hp"]=313710000,
["atk"]=4000000, ["atk"]=3620000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20103, 20103,
@ -529,8 +529,8 @@ local monster_dungeon_equip = {
}, },
[3406]={ [3406]={
["monster_base"]=10061, ["monster_base"]=10061,
["hp"]=453650000, ["hp"]=417370000,
["atk"]=4190000, ["atk"]=3790000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20178, 20178,
@ -545,8 +545,8 @@ local monster_dungeon_equip = {
[3506]={ [3506]={
["monster_base"]=20040, ["monster_base"]=20040,
["is_boss"]=2, ["is_boss"]=2,
["hp"]=824060000, ["hp"]=754850000,
["atk"]=4350000, ["atk"]=3870000,
["atk_times"]=4, ["atk_times"]=4,
["hurt_skill"]={ ["hurt_skill"]={
30129, 30129,
@ -564,8 +564,8 @@ local monster_dungeon_equip = {
}, },
[3606]={ [3606]={
["monster_base"]=10030, ["monster_base"]=10030,
["hp"]=163330000, ["hp"]=175230000,
["atk"]=2810000, ["atk"]=2580000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20085, 20085,
@ -579,8 +579,8 @@ local monster_dungeon_equip = {
}, },
[3706]={ [3706]={
["monster_base"]=10015, ["monster_base"]=10015,
["hp"]=196740000, ["hp"]=207360000,
["atk"]=3870000, ["atk"]=3560000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20040, 20040,
@ -594,8 +594,8 @@ local monster_dungeon_equip = {
}, },
[3806]={ [3806]={
["monster_base"]=10025, ["monster_base"]=10025,
["hp"]=355260000, ["hp"]=338580000,
["atk"]=4250000, ["atk"]=3900000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20070, 20070,
@ -609,8 +609,8 @@ local monster_dungeon_equip = {
}, },
[3906]={ [3906]={
["monster_base"]=10034, ["monster_base"]=10034,
["hp"]=481950000, ["hp"]=450950000,
["atk"]=4460000, ["atk"]=4090000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20097, 20097,
@ -625,8 +625,8 @@ local monster_dungeon_equip = {
[4006]={ [4006]={
["monster_base"]=20039, ["monster_base"]=20039,
["is_boss"]=2, ["is_boss"]=2,
["hp"]=875620000, ["hp"]=814970000,
["atk"]=4630000, ["atk"]=4170000,
["atk_times"]=4, ["atk_times"]=4,
["hurt_skill"]={ ["hurt_skill"]={
30117, 30117,
@ -644,8 +644,8 @@ local monster_dungeon_equip = {
}, },
[4106]={ [4106]={
["monster_base"]=10054, ["monster_base"]=10054,
["hp"]=177360000, ["hp"]=182360000,
["atk"]=3070000, ["atk"]=2660000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20157, 20157,
@ -659,8 +659,8 @@ local monster_dungeon_equip = {
}, },
[4206]={ [4206]={
["monster_base"]=10037, ["monster_base"]=10037,
["hp"]=215560000, ["hp"]=215460000,
["atk"]=4230000, ["atk"]=3660000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20106, 20106,
@ -674,8 +674,8 @@ local monster_dungeon_equip = {
}, },
[4306]={ [4306]={
["monster_base"]=10012, ["monster_base"]=10012,
["hp"]=386500000, ["hp"]=351510000,
["atk"]=4650000, ["atk"]=4010000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20031, 20031,
@ -689,8 +689,8 @@ local monster_dungeon_equip = {
}, },
[4406]={ [4406]={
["monster_base"]=10049, ["monster_base"]=10049,
["hp"]=521660000, ["hp"]=468340000,
["atk"]=4870000, ["atk"]=4210000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20142, 20142,
@ -705,8 +705,8 @@ local monster_dungeon_equip = {
[4506]={ [4506]={
["monster_base"]=20043, ["monster_base"]=20043,
["is_boss"]=2, ["is_boss"]=2,
["hp"]=947700000, ["hp"]=846340000,
["atk"]=5140000, ["atk"]=4290000,
["atk_times"]=4, ["atk_times"]=4,
["hurt_skill"]={ ["hurt_skill"]={
30120, 30120,
@ -725,8 +725,8 @@ local monster_dungeon_equip = {
}, },
[4606]={ [4606]={
["monster_base"]=10042, ["monster_base"]=10042,
["hp"]=187920000, ["hp"]=187110000,
["atk"]=3250000, ["atk"]=2740000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20121, 20121,
@ -740,8 +740,8 @@ local monster_dungeon_equip = {
}, },
[4706]={ [4706]={
["monster_base"]=10026, ["monster_base"]=10026,
["hp"]=228230000, ["hp"]=220970000,
["atk"]=4480000, ["atk"]=3780000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20073, 20073,
@ -755,8 +755,8 @@ local monster_dungeon_equip = {
}, },
[4806]={ [4806]={
["monster_base"]=10019, ["monster_base"]=10019,
["hp"]=409000000, ["hp"]=360430000,
["atk"]=4940000, ["atk"]=4140000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20052, 20052,
@ -770,8 +770,8 @@ local monster_dungeon_equip = {
}, },
[4906]={ [4906]={
["monster_base"]=10001, ["monster_base"]=10001,
["hp"]=551930000, ["hp"]=480060000,
["atk"]=5160000, ["atk"]=4340000,
["atk_times"]=2, ["atk_times"]=2,
["hurt_skill"]={ ["hurt_skill"]={
20001, 20001,
@ -786,8 +786,8 @@ local monster_dungeon_equip = {
[5006]={ [5006]={
["monster_base"]=20042, ["monster_base"]=20042,
["is_boss"]=2, ["is_boss"]=2,
["hp"]=1002610000, ["hp"]=867510000,
["atk"]=5440000, ["atk"]=4430000,
["atk_times"]=4, ["atk_times"]=4,
["hurt_skill"]={ ["hurt_skill"]={
30132, 30132,
@ -805,8 +805,8 @@ local monster_dungeon_equip = {
}, },
[5106]={ [5106]={
["monster_base"]=10045, ["monster_base"]=10045,
["hp"]=199440000, ["hp"]=200880000,
["atk"]=3450000, ["atk"]=2910000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20130, 20130,
@ -820,8 +820,8 @@ local monster_dungeon_equip = {
}, },
[5206]={ [5206]={
["monster_base"]=10056, ["monster_base"]=10056,
["hp"]=242090000, ["hp"]=236460000,
["atk"]=4750000, ["atk"]=4010000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20163, 20163,
@ -835,8 +835,8 @@ local monster_dungeon_equip = {
}, },
[5306]={ [5306]={
["monster_base"]=10003, ["monster_base"]=10003,
["hp"]=433750000, ["hp"]=385650000,
["atk"]=5240000, ["atk"]=4400000,
["atk_times"]=2, ["atk_times"]=2,
["hurt_skill"]={ ["hurt_skill"]={
20007, 20007,
@ -850,8 +850,8 @@ local monster_dungeon_equip = {
}, },
[5406]={ [5406]={
["monster_base"]=10028, ["monster_base"]=10028,
["hp"]=585310000, ["hp"]=513230000,
["atk"]=5480000, ["atk"]=4600000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20079, 20079,
@ -866,8 +866,8 @@ local monster_dungeon_equip = {
[5506]={ [5506]={
["monster_base"]=20041, ["monster_base"]=20041,
["is_boss"]=2, ["is_boss"]=2,
["hp"]=1063140000, ["hp"]=927400000,
["atk"]=5780000, ["atk"]=4690000,
["atk_times"]=4, ["atk_times"]=4,
["hurt_skill"]={ ["hurt_skill"]={
30126, 30126,
@ -886,8 +886,8 @@ local monster_dungeon_equip = {
}, },
[5606]={ [5606]={
["monster_base"]=10029, ["monster_base"]=10029,
["hp"]=221510000, ["hp"]=202710000,
["atk"]=4040000, ["atk"]=2990000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20082, 20082,
@ -901,8 +901,8 @@ local monster_dungeon_equip = {
}, },
[5706]={ [5706]={
["monster_base"]=10055, ["monster_base"]=10055,
["hp"]=267580000, ["hp"]=238240000,
["atk"]=5560000, ["atk"]=4130000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20160, 20160,
@ -916,8 +916,8 @@ local monster_dungeon_equip = {
}, },
[5806]={ [5806]={
["monster_base"]=10051, ["monster_base"]=10051,
["hp"]=484180000, ["hp"]=388530000,
["atk"]=6110000, ["atk"]=4530000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20148, 20148,
@ -931,8 +931,8 @@ local monster_dungeon_equip = {
}, },
[5906]={ [5906]={
["monster_base"]=10064, ["monster_base"]=10064,
["hp"]=650420000, ["hp"]=517080000,
["atk"]=6400000, ["atk"]=4730000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20190, 20190,
@ -947,8 +947,8 @@ local monster_dungeon_equip = {
[6006]={ [6006]={
["monster_base"]=20040, ["monster_base"]=20040,
["is_boss"]=2, ["is_boss"]=2,
["hp"]=1181290000, ["hp"]=933980000,
["atk"]=6660000, ["atk"]=4820000,
["atk_times"]=4, ["atk_times"]=4,
["hurt_skill"]={ ["hurt_skill"]={
30135, 30135,
@ -966,8 +966,8 @@ local monster_dungeon_equip = {
}, },
[6106]={ [6106]={
["monster_base"]=10015, ["monster_base"]=10015,
["hp"]=227560000, ["hp"]=216480000,
["atk"]=4160000, ["atk"]=3180000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20040, 20040,
@ -981,8 +981,8 @@ local monster_dungeon_equip = {
}, },
[6206]={ [6206]={
["monster_base"]=10025, ["monster_base"]=10025,
["hp"]=274900000, ["hp"]=254320000,
["atk"]=5710000, ["atk"]=4380000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20070, 20070,
@ -996,8 +996,8 @@ local monster_dungeon_equip = {
}, },
[6306]={ [6306]={
["monster_base"]=10021, ["monster_base"]=10021,
["hp"]=497380000, ["hp"]=415070000,
["atk"]=6280000, ["atk"]=4810000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20058, 20058,
@ -1011,8 +1011,8 @@ local monster_dungeon_equip = {
}, },
[6406]={ [6406]={
["monster_base"]=10034, ["monster_base"]=10034,
["hp"]=668140000, ["hp"]=552120000,
["atk"]=6580000, ["atk"]=5030000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20097, 20097,
@ -1027,8 +1027,8 @@ local monster_dungeon_equip = {
[6506]={ [6506]={
["monster_base"]=20039, ["monster_base"]=20039,
["is_boss"]=2, ["is_boss"]=2,
["hp"]=1213440000, ["hp"]=996810000,
["atk"]=6850000, ["atk"]=5130000,
["atk_times"]=4, ["atk_times"]=4,
["hurt_skill"]={ ["hurt_skill"]={
30117, 30117,
@ -1046,8 +1046,8 @@ local monster_dungeon_equip = {
}, },
[6606]={ [6606]={
["monster_base"]=10049, ["monster_base"]=10049,
["hp"]=151200000, ["hp"]=221080000,
["atk"]=1050000, ["atk"]=3280000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20142, 20142,
@ -1061,8 +1061,8 @@ local monster_dungeon_equip = {
}, },
[6706]={ [6706]={
["monster_base"]=10006, ["monster_base"]=10006,
["hp"]=282760000, ["hp"]=259330000,
["atk"]=5870000, ["atk"]=4500000,
["atk_times"]=2, ["atk_times"]=2,
["hurt_skill"]={ ["hurt_skill"]={
20016, 20016,
@ -1076,8 +1076,8 @@ local monster_dungeon_equip = {
}, },
[6806]={ [6806]={
["monster_base"]=10054, ["monster_base"]=10054,
["hp"]=511630000, ["hp"]=423100000,
["atk"]=6460000, ["atk"]=4950000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20157, 20157,
@ -1091,8 +1091,8 @@ local monster_dungeon_equip = {
}, },
[6906]={ [6906]={
["monster_base"]=10024, ["monster_base"]=10024,
["hp"]=687320000, ["hp"]=562720000,
["atk"]=6770000, ["atk"]=5180000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20067, 20067,
@ -1107,8 +1107,8 @@ local monster_dungeon_equip = {
[7006]={ [7006]={
["monster_base"]=20043, ["monster_base"]=20043,
["is_boss"]=2, ["is_boss"]=2,
["hp"]=1248040000, ["hp"]=1015810000,
["atk"]=7050000, ["atk"]=5280000,
["atk_times"]=4, ["atk_times"]=4,
["hurt_skill"]={ ["hurt_skill"]={
30120, 30120,
@ -1127,8 +1127,8 @@ local monster_dungeon_equip = {
}, },
[7106]={ [7106]={
["monster_base"]=10019, ["monster_base"]=10019,
["hp"]=273750000, ["hp"]=225650000,
["atk"]=4990000, ["atk"]=3370000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20052, 20052,
@ -1142,8 +1142,8 @@ local monster_dungeon_equip = {
}, },
[7206]={ [7206]={
["monster_base"]=10035, ["monster_base"]=10035,
["hp"]=330170000, ["hp"]=264660000,
["atk"]=6840000, ["atk"]=4630000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20100, 20100,
@ -1157,8 +1157,8 @@ local monster_dungeon_equip = {
}, },
[7306]={ [7306]={
["monster_base"]=10026, ["monster_base"]=10026,
["hp"]=624370000, ["hp"]=431730000,
["atk"]=7530000, ["atk"]=5090000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20073, 20073,
@ -1172,8 +1172,8 @@ local monster_dungeon_equip = {
}, },
[7406]={ [7406]={
["monster_base"]=10041, ["monster_base"]=10041,
["hp"]=801000000, ["hp"]=574040000,
["atk"]=7910000, ["atk"]=5330000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20118, 20118,
@ -1188,8 +1188,8 @@ local monster_dungeon_equip = {
[7506]={ [7506]={
["monster_base"]=20042, ["monster_base"]=20042,
["is_boss"]=2, ["is_boss"]=2,
["hp"]=1454090000, ["hp"]=1036280000,
["atk"]=8290000, ["atk"]=5440000,
["atk_times"]=4, ["atk_times"]=4,
["hurt_skill"]={ ["hurt_skill"]={
30138, 30138,
@ -1207,8 +1207,8 @@ local monster_dungeon_equip = {
}, },
[7606]={ [7606]={
["monster_base"]=10053, ["monster_base"]=10053,
["hp"]=289120000, ["hp"]=233950000,
["atk"]=5270000, ["atk"]=3470000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20154, 20154,
@ -1222,8 +1222,8 @@ local monster_dungeon_equip = {
}, },
[7706]={ [7706]={
["monster_base"]=10043, ["monster_base"]=10043,
["hp"]=348580000, ["hp"]=273880000,
["atk"]=7220000, ["atk"]=4760000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20124, 20124,
@ -1237,8 +1237,8 @@ local monster_dungeon_equip = {
}, },
[7806]={ [7806]={
["monster_base"]=10033, ["monster_base"]=10033,
["hp"]=659030000, ["hp"]=446810000,
["atk"]=7960000, ["atk"]=5230000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20094, 20094,
@ -1252,8 +1252,8 @@ local monster_dungeon_equip = {
}, },
[7906]={ [7906]={
["monster_base"]=10028, ["monster_base"]=10028,
["hp"]=845550000, ["hp"]=594050000,
["atk"]=8350000, ["atk"]=5480000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20079, 20079,
@ -1268,8 +1268,8 @@ local monster_dungeon_equip = {
[8006]={ [8006]={
["monster_base"]=20041, ["monster_base"]=20041,
["is_boss"]=2, ["is_boss"]=2,
["hp"]=1534760000, ["hp"]=1072430000,
["atk"]=8750000, ["atk"]=5590000,
["atk_times"]=4, ["atk_times"]=4,
["hurt_skill"]={ ["hurt_skill"]={
30126, 30126,
@ -1288,8 +1288,8 @@ local monster_dungeon_equip = {
}, },
[8106]={ [8106]={
["monster_base"]=10036, ["monster_base"]=10036,
["hp"]=312170000, ["hp"]=132000000,
["atk"]=5690000, ["atk"]=870000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20103, 20103,
@ -1303,8 +1303,8 @@ local monster_dungeon_equip = {
}, },
[8206]={ [8206]={
["monster_base"]=10017, ["monster_base"]=10017,
["hp"]=376280000, ["hp"]=284280000,
["atk"]=7800000, ["atk"]=4890000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20046, 20046,
@ -1318,8 +1318,8 @@ local monster_dungeon_equip = {
}, },
[8306]={ [8306]={
["monster_base"]=10023, ["monster_base"]=10023,
["hp"]=711080000, ["hp"]=463670000,
["atk"]=8610000, ["atk"]=5380000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20064, 20064,
@ -1333,8 +1333,8 @@ local monster_dungeon_equip = {
}, },
[8406]={ [8406]={
["monster_base"]=10051, ["monster_base"]=10051,
["hp"]=912460000, ["hp"]=616180000,
["atk"]=9020000, ["atk"]=5640000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20148, 20148,
@ -1349,8 +1349,8 @@ local monster_dungeon_equip = {
[8506]={ [8506]={
["monster_base"]=20040, ["monster_base"]=20040,
["is_boss"]=2, ["is_boss"]=2,
["hp"]=1655840000, ["hp"]=1112410000,
["atk"]=9450000, ["atk"]=5750000,
["atk_times"]=4, ["atk_times"]=4,
["hurt_skill"]={ ["hurt_skill"]={
30141, 30141,
@ -1368,8 +1368,8 @@ local monster_dungeon_equip = {
}, },
[8606]={ [8606]={
["monster_base"]=10021, ["monster_base"]=10021,
["hp"]=339080000, ["hp"]=251150000,
["atk"]=6160000, ["atk"]=3770000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20058, 20058,
@ -1383,8 +1383,8 @@ local monster_dungeon_equip = {
}, },
[8706]={ [8706]={
["monster_base"]=10034, ["monster_base"]=10034,
["hp"]=408050000, ["hp"]=293630000,
["atk"]=8450000, ["atk"]=5170000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20097, 20097,
@ -1398,8 +1398,8 @@ local monster_dungeon_equip = {
}, },
[8806]={ [8806]={
["monster_base"]=10030, ["monster_base"]=10030,
["hp"]=771120000, ["hp"]=478890000,
["atk"]=9340000, ["atk"]=5680000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20085, 20085,
@ -1413,8 +1413,8 @@ local monster_dungeon_equip = {
}, },
[8906]={ [8906]={
["monster_base"]=10018, ["monster_base"]=10018,
["hp"]=986810000, ["hp"]=636450000,
["atk"]=9790000, ["atk"]=5960000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20049, 20049,
@ -1429,8 +1429,8 @@ local monster_dungeon_equip = {
[9006]={ [9006]={
["monster_base"]=20039, ["monster_base"]=20039,
["is_boss"]=2, ["is_boss"]=2,
["hp"]=1790630000, ["hp"]=1148710000,
["atk"]=10230000, ["atk"]=6080000,
["atk_times"]=4, ["atk_times"]=4,
["hurt_skill"]={ ["hurt_skill"]={
30117, 30117,
@ -1448,8 +1448,8 @@ local monster_dungeon_equip = {
}, },
[9106]={ [9106]={
["monster_base"]=10016, ["monster_base"]=10016,
["hp"]=357560000, ["hp"]=261840000,
["atk"]=6490000, ["atk"]=3970000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20043, 20043,
@ -1463,8 +1463,8 @@ local monster_dungeon_equip = {
}, },
[9206]={ [9206]={
["monster_base"]=10054, ["monster_base"]=10054,
["hp"]=429930000, ["hp"]=305680000,
["atk"]=8920000, ["atk"]=5440000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20157, 20157,
@ -1478,8 +1478,8 @@ local monster_dungeon_equip = {
}, },
[9306]={ [9306]={
["monster_base"]=10006, ["monster_base"]=10006,
["hp"]=812430000, ["hp"]=498740000,
["atk"]=9840000, ["atk"]=5980000,
["atk_times"]=2, ["atk_times"]=2,
["hurt_skill"]={ ["hurt_skill"]={
20016, 20016,
@ -1493,8 +1493,8 @@ local monster_dungeon_equip = {
}, },
[9406]={ [9406]={
["monster_base"]=10020, ["monster_base"]=10020,
["hp"]=1039660000, ["hp"]=662690000,
["atk"]=10320000, ["atk"]=6280000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20055, 20055,
@ -1509,8 +1509,8 @@ local monster_dungeon_equip = {
[9506]={ [9506]={
["monster_base"]=20043, ["monster_base"]=20043,
["is_boss"]=2, ["is_boss"]=2,
["hp"]=1886200000, ["hp"]=1196050000,
["atk"]=10790000, ["atk"]=6410000,
["atk_times"]=4, ["atk_times"]=4,
["hurt_skill"]={ ["hurt_skill"]={
30120, 30120,
@ -1529,8 +1529,8 @@ local monster_dungeon_equip = {
}, },
[9606]={ [9606]={
["monster_base"]=10031, ["monster_base"]=10031,
["hp"]=375760000, ["hp"]=270070000,
["atk"]=6820000, ["atk"]=4190000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20088, 20088,
@ -1544,8 +1544,8 @@ local monster_dungeon_equip = {
}, },
[9706]={ [9706]={
["monster_base"]=10035, ["monster_base"]=10035,
["hp"]=451810000, ["hp"]=315240000,
["atk"]=9380000, ["atk"]=5740000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20100, 20100,
@ -1559,8 +1559,8 @@ local monster_dungeon_equip = {
}, },
[9806]={ [9806]={
["monster_base"]=10019, ["monster_base"]=10019,
["hp"]=853590000, ["hp"]=514070000,
["atk"]=10350000, ["atk"]=6320000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20052, 20052,
@ -1574,8 +1574,8 @@ local monster_dungeon_equip = {
}, },
[9906]={ [9906]={
["monster_base"]=10013, ["monster_base"]=10013,
["hp"]=1092340000, ["hp"]=682910000,
["atk"]=10850000, ["atk"]=6630000,
["atk_times"]=3, ["atk_times"]=3,
["hurt_skill"]={ ["hurt_skill"]={
20034, 20034,
@ -1590,8 +1590,8 @@ local monster_dungeon_equip = {
[10006]={ [10006]={
["monster_base"]=20042, ["monster_base"]=20042,
["is_boss"]=2, ["is_boss"]=2,
["hp"]=1981770000, ["hp"]=1232640000,
["atk"]=11340000, ["atk"]=6760000,
["atk_times"]=4, ["atk_times"]=4,
["hurt_skill"]={ ["hurt_skill"]={
30144, 30144,

View File

@ -4571,7 +4571,7 @@ local skill = {
["type"]="lethargy", ["type"]="lethargy",
["num"]=0, ["num"]=0,
["ratio"]=5000, ["ratio"]=5000,
["round"]=1 ["round"]=2
} }
}, },
["obj"]=2, ["obj"]=2,
@ -4694,71 +4694,7 @@ local skill = {
{ {
["type"]="lethargy", ["type"]="lethargy",
["num"]=0, ["num"]=0,
["ratio"]=8000, ["ratio"]=5000,
["round"]=2
}
},
["obj"]=2,
["effect_block"]={
1,
2,
4
},
["skill_position"]={
2,
0
},
["shake_time"]=200,
["shake_type"]=5,
["sound"]=34002200,
["sound_delay"]=0.0,
["name_act"]="skill01",
["fx_self"]=300109,
["bullet_time"]={
1000,
3000,
400
},
["fx_self_mirror"]=400109
},
[3400224]={
["buff_id"]={
"lethargy"
},
["energy"]=10,
["link"]=1,
["position"]=3,
["method"]=1,
["skill_type"]=4,
["boardrange"]={
},
["battle_icon"]="23",
["effect_type"]=1,
["trigger"]=1,
["effect"]={
{
["type"]="hurt_green",
["num"]=13000,
["ratio"]=10000,
["round"]=0
},
{
["type"]="hurt_green",
["num"]=13000,
["ratio"]=10000,
["round"]=0
},
{
["type"]="hurt_green",
["num"]=24000,
["ratio"]=10000,
["round"]=0
},
{
["type"]="lethargy",
["num"]=0,
["ratio"]=8000,
["round"]=2 ["round"]=2
} }
}, },
@ -7617,7 +7553,7 @@ local skill = {
}, },
["name_act"]="attack01", ["name_act"]="attack01",
["fx_self"]=300112, ["fx_self"]=300112,
["fx_self_mirror"]=400112 ["fx_self_mirror"]=400127
}, },
[5400211]={ [5400211]={
["position"]=5, ["position"]=5,
@ -7643,7 +7579,7 @@ local skill = {
}, },
["name_act"]="attack02", ["name_act"]="attack02",
["fx_self"]=300113, ["fx_self"]=300113,
["fx_self_mirror"]=400113 ["fx_self_mirror"]=400128
}, },
[5400212]={ [5400212]={
["position"]=5, ["position"]=5,
@ -7669,7 +7605,7 @@ local skill = {
}, },
["name_act"]="attack03", ["name_act"]="attack03",
["fx_self"]=300114, ["fx_self"]=300114,
["fx_self_mirror"]=400114 ["fx_self_mirror"]=400129
}, },
[5400213]={ [5400213]={
["position"]=5, ["position"]=5,
@ -7695,7 +7631,7 @@ local skill = {
}, },
["name_act"]="attack04", ["name_act"]="attack04",
["fx_self"]=300115, ["fx_self"]=300115,
["fx_self_mirror"]=400115 ["fx_self_mirror"]=400130
}, },
[5400220]={ [5400220]={
["energy"]=10, ["energy"]=10,
@ -7767,7 +7703,7 @@ local skill = {
3000, 3000,
400 400
}, },
["fx_self_mirror"]=400116 ["fx_self_mirror"]=400131
}, },
[5400221]={ [5400221]={
["position"]=5, ["position"]=5,
@ -7897,7 +7833,7 @@ local skill = {
}, },
["name_act"]="attack01", ["name_act"]="attack01",
["fx_self"]=300127, ["fx_self"]=300127,
["fx_self_mirror"]=400127 ["fx_self_mirror"]=400112
}, },
[5400311]={ [5400311]={
["position"]=5, ["position"]=5,
@ -7923,7 +7859,7 @@ local skill = {
}, },
["name_act"]="attack02", ["name_act"]="attack02",
["fx_self"]=300128, ["fx_self"]=300128,
["fx_self_mirror"]=400128 ["fx_self_mirror"]=400113
}, },
[5400312]={ [5400312]={
["position"]=5, ["position"]=5,
@ -7949,7 +7885,7 @@ local skill = {
}, },
["name_act"]="attack03", ["name_act"]="attack03",
["fx_self"]=300129, ["fx_self"]=300129,
["fx_self_mirror"]=400129 ["fx_self_mirror"]=400114
}, },
[5400313]={ [5400313]={
["position"]=5, ["position"]=5,
@ -7975,7 +7911,7 @@ local skill = {
}, },
["name_act"]="attack04", ["name_act"]="attack04",
["fx_self"]=300130, ["fx_self"]=300130,
["fx_self_mirror"]=400130 ["fx_self_mirror"]=400115
}, },
[5400320]={ [5400320]={
["buff_id"]={ ["buff_id"]={
@ -8022,7 +7958,7 @@ local skill = {
3000, 3000,
400 400
}, },
["fx_self_mirror"]=400131 ["fx_self_mirror"]=400116
}, },
[5400321]={ [5400321]={
["position"]=5, ["position"]=5,
@ -12935,6 +12871,42 @@ local skill = {
["cd"]=0, ["cd"]=0,
["cd_start"]=0 ["cd_start"]=0
}, },
[10142]={
["skill_type"]=3,
["skill_type_parameter"]={
21,
2
},
["effect_type"]=1,
["trigger"]=1,
["effect"]={
{
["type"]="hurt",
["num"]=25000,
["ratio"]=10000,
["round"]=0
}
},
["obj"]=2,
["skill_position"]={
2,
0
},
["cd"]=2,
["cd_start"]=0,
["shake_time"]=200,
["shake_type"]=6,
["sound_hit"]={
10018
},
["name_act"]="skill01",
["fx_self"]=200099,
["bullet_time"]={
466,
3000,
400
}
},
[20001]={ [20001]={
["effect_type"]=1, ["effect_type"]=1,
["trigger"]=1, ["trigger"]=1,
@ -22518,6 +22490,78 @@ local skill = {
["name_act"]="attack03", ["name_act"]="attack03",
["fx_self"]=200184 ["fx_self"]=200184
}, },
[30162]={
["effect_type"]=1,
["trigger"]=1,
["effect"]={
{
["type"]="hurt",
["num"]=10000,
["ratio"]=10000,
["round"]=0
}
},
["obj"]=2,
["skill_position"]={
1,
140
},
["shake_time"]=100,
["shake_type"]=1,
["sound_hit"]={
1000011
},
["name_act"]="attack01",
["fx_self"]=200096
},
[30163]={
["effect_type"]=1,
["trigger"]=1,
["effect"]={
{
["type"]="hurt",
["num"]=10000,
["ratio"]=10000,
["round"]=0
}
},
["obj"]=2,
["skill_position"]={
1,
140
},
["shake_time"]=100,
["shake_type"]=1,
["sound_hit"]={
1000012
},
["name_act"]="attack02",
["fx_self"]=200097
},
[30164]={
["effect_type"]=1,
["trigger"]=1,
["effect"]={
{
["type"]="hurt",
["num"]=10000,
["ratio"]=10000,
["round"]=0
}
},
["obj"]=2,
["skill_position"]={
1,
140
},
["shake_time"]=100,
["shake_type"]=1,
["sound_hit"]={
1000013
},
["name_act"]="attack03",
["fx_self"]=200098
},
[40001]={ [40001]={
["effect_type"]=1, ["effect_type"]=1,
["trigger"]=1, ["trigger"]=1,
@ -27444,6 +27488,6 @@ local skill = {
} }
} }
local config = { local config = {
data=skill,count=985 data=skill,count=988
} }
return config return config

View File

@ -2967,9 +2967,10 @@ local skill_rogue = {
["limit_times"]=1, ["limit_times"]=1,
["weight"]=3000, ["weight"]=3000,
["qlt"]=4, ["qlt"]=4,
["type"]=1, ["type"]=16,
["parameter"]={ ["parameter"]={
3400224 4,
3000
}, },
["skill_position"]=3, ["skill_position"]=3,
["icon"]="213" ["icon"]="213"
@ -3012,8 +3013,6 @@ local skill_rogue = {
["icon"]="215" ["icon"]="215"
}, },
[3400207]={ [3400207]={
["unlock"]=3400204,
["cover_unlock"]=3400204,
["limit_times"]=1, ["limit_times"]=1,
["weight"]=3000, ["weight"]=3000,
["qlt"]=4, ["qlt"]=4,

View File

@ -23,32 +23,6 @@ local skin = {
["skin_point"]=0, ["skin_point"]=0,
["hero_id"]=14001 ["hero_id"]=14001
}, },
[1400101]={
["model_id"]="p0036",
["qlt"]=3,
["bonus"]={
{
["type"]="attr_skill_hurtp_red",
["num"]=1000
},
{
["type"]="attr_hpp_red",
["num"]=1000
}
},
["icon"]="skin_5",
["got"]=1,
["skin_point"]=10,
["hero_id"]=14001,
["item_id"]=1400101,
["skill_show"]={
14001011,
14001012,
14001013,
14001014,
14001015
}
},
[14002]={ [14002]={
["model_id"]="p0018", ["model_id"]="p0018",
["qlt"]=1, ["qlt"]=1,
@ -311,6 +285,6 @@ local skin = {
} }
} }
local config = { local config = {
data=skin,count=35 data=skin,count=34
} }
return config return config

View File

@ -302,83 +302,9 @@ local skin_skill = {
["fx_bg"]=300148, ["fx_bg"]=300148,
["fx_self_mirror"]=400144, ["fx_self_mirror"]=400144,
["fx_bg_mirror"]=400148 ["fx_bg_mirror"]=400148
},
[14001011]={
["skill_position"]={
2,
0
},
["shake_time"]=100,
["shake_type"]=2,
["sound_hit"]={
1000011
},
["name_act"]="attack01",
["fx_self"]=300045,
["fx_self_mirror"]=400078
},
[14001012]={
["skill_position"]={
2,
0
},
["shake_time"]=100,
["shake_type"]=2,
["sound_hit"]={
1000012
},
["name_act"]="attack02",
["fx_self"]=300046,
["fx_self_mirror"]=400079
},
[14001013]={
["skill_position"]={
2,
0
},
["shake_time"]=100,
["shake_type"]=4,
["sound_hit"]={
1000013
},
["name_act"]="attack03",
["fx_self"]=300047,
["fx_self_mirror"]=400080
},
[14001014]={
["skill_position"]={
2,
0
},
["shake_time"]=100,
["shake_type"]=1,
["sound_hit"]={
1000014
},
["name_act"]="attack04",
["fx_self"]=300048,
["fx_self_mirror"]=400081
},
[14001015]={
["skill_position"]={
2,
0
},
["shake_time"]=200,
["shake_type"]=6,
["sound"]=14001200,
["sound_delay"]=0.0,
["name_act"]="skill01",
["fx_self"]=300150,
["bullet_time"]={
1166,
3000,
200
},
["fx_self_mirror"]=400150
} }
} }
local config = { local config = {
data=skin_skill,count=25 data=skin_skill,count=20
} }
return config return config

View File

@ -0,0 +1,141 @@
local act_fourteen_quest = {
[1]={
["quest"]="深渊挑战通关{0}"
},
[2]={
["quest"]="角色升到{0}级"
},
[3]={
["quest"]="竞技场达到白银I"
},
[4]={
["quest"]="广告次数累计达{0}"
},
[5]={
["quest"]="完成所有任务"
},
[6]={
["quest"]="武器升级{0}次"
},
[7]={
["quest"]="时空裂隙3-6"
},
[8]={
["quest"]="开启主线宝箱{0}个"
},
[9]={
["quest"]="矿车拦截通关{0}"
},
[10]={
["quest"]="完成所有任务"
},
[11]={
["quest"]="灯神之塔通关{0}"
},
[12]={
["quest"]="角色升级{0}次"
},
[13]={
["quest"]="深渊挑战 10"
},
[14]={
["quest"]="广告次数累计达{0}"
},
[15]={
["quest"]="完成所有任务"
},
[16]={
["quest"]="每日挑战 胜利{0}次"
},
[17]={
["quest"]="矿车拦截通关{0}"
},
[18]={
["quest"]="时空裂隙4-3"
},
[19]={
["quest"]="开宝箱 {0}次"
},
[20]={
["quest"]="完成所有任务"
},
[21]={
["quest"]="广告次数累计达{0}"
},
[22]={
["quest"]="通关波次 {0}次"
},
[23]={
["quest"]="灯神之塔通关{0}"
},
[24]={
["quest"]="竞技场达到白银III"
},
[25]={
["quest"]="完成所有任务"
},
[26]={
["quest"]="击杀BOSS {0}次"
},
[27]={
["quest"]="深渊挑战通关{0}"
},
[28]={
["quest"]="开启主线宝箱{0}个"
},
[29]={
["quest"]="矿车拦截通关{0}"
},
[30]={
["quest"]="完成所有任务"
},
[31]={
["quest"]="时空裂隙5-2"
},
[32]={
["quest"]="每日挑战 胜利{0}次"
},
[33]={
["quest"]="开宝箱{0}次"
},
[34]={
["quest"]="广告次数累计达{0}"
},
[35]={
["quest"]="完成所有任务"
},
[36]={
["quest"]="装备升级{0}次"
},
[37]={
["quest"]="灯神之塔通关{0}"
},
[38]={
["quest"]="通关波次{0}次"
},
[39]={
["quest"]="矿车拦截通关{0}"
},
[40]={
["quest"]="完成所有任务"
},
[41]={
["quest"]="竞技场达到黄金段位"
},
[42]={
["quest"]="广告次数累计达{0}"
},
[43]={
["quest"]="角色升到{0}级"
},
[44]={
["quest"]="深渊挑战通关{0}"
},
[45]={
["quest"]="完成所有任务"
}
}
local config = {
data=act_fourteen_quest,count=45
}
return config

View File

@ -0,0 +1,10 @@
fileFormatVersion: 2
guid: 3edd3553356248c489f45171b35afebd
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}

View File

@ -48,16 +48,16 @@ local equip = {
["name"]="巨力锤,战者之锤,流星巨锤,破军锤,断魂锤,陨星" ["name"]="巨力锤,战者之锤,流星巨锤,破军锤,断魂锤,陨星"
}, },
[1400102]={ [1400102]={
["name"]="凡花木冠,珍珠冠饰,火纹金冠,皎月玉冠,凤冠星冠,至尊魅" ["name"]="粗钢面甲,精钢面盔,黑曜贵冠,英勇冠冕,龙角之冠,永恒华"
}, },
[1400103]={ [1400103]={
["name"]="软革里衣,缀玉长袍,紫纱绸缎,琥珀彩衣,凤羽华装,至尊星袍" ["name"]="厚织长衫,薄钢环甲,玄铁重甲,强者玉甲,龙鳞金胄,永恒重铠"
}, },
[1400104]={ [1400104]={
["name"]="简约绣带,优雅束腰,珍珠绣带,星光御带,凤眸束带,至尊仙索" ["name"]="皮革腰带,乌金束腰,骑士腰环,龙筋束腰,永恒腰链,铜制手环"
}, },
[1400105]={ [1400105]={
["name"]="紫铁手环,轻纱护手,黄金华护,星辰护手,凤骨护手,至尊御手甲" ["name"]="铜制手环,皮革腕带,铁心腕带,英雄护手,龙须护腕,永恒腕轮"
}, },
[1400201]={ [1400201]={
["name"]="猫拳,尖刺猫拳,青钢猫拳,裂伤猫拳,破空猫拳,福神之力" ["name"]="猫拳,尖刺猫拳,青钢猫拳,裂伤猫拳,破空猫拳,福神之力"

View File

@ -455,17 +455,36 @@ local localization_global =
["HERO_FUND_DESCC_2"] = "月之祝福", ["HERO_FUND_DESCC_2"] = "月之祝福",
["HERO_FUND_DESCC_3"] = "拥有月之祝福后,在战斗中累计通过波次可获得丰厚奖励。", ["HERO_FUND_DESCC_3"] = "拥有月之祝福后,在战斗中累计通过波次可获得丰厚奖励。",
["HERO_FUND_DESCC_4"] = "新活动14日达标开启", ["HERO_FUND_DESCC_4"] = "新活动14日达标开启",
["ARENA_DESC_37"] = "解锁英雄:", ["ACT_FOURTEEN_TITLE_1"] = "登录好礼",
["ARENA_DESC_38"] = "已解锁英雄:", ["ACT_FOURTEEN_TITLE_2"] = "进阶挑战",
["ARENA_DESC_39"] = "升段奖励为一次性奖励", ["ACT_FOURTEEN_TITLE_3"] = "限时兑换",
["ARENA_DESC_40"] = "升段奖励", ["ACT_FOURTEEN_TITLE_4"] = "限时礼包",
["ARENA_DESC_41"] = "结算奖励", ["ACT_FOURTEEN_DESC_1"] = "登陆游戏,既享大礼!",
["ARENA_DESC_42"] = "未领取奖励", ["ACT_FOURTEEN_DESC_2"] = "挑战自己,更有好礼相送!",
["EQUIP_DESC_26"] = "武器直升{0}级礼包", ["ACT_FOURTEEN_DESC_3"] = "时不待人,机不再来!",
["EQUIP_DESC_27"] = "防具直升{0}级礼包", ["ACT_FOURTEEN_DESC_5"] = "登录即可领取奖励,解锁高级战令领取额外奖励!",
["SEIZED_DESC_1"] = "检测到你的账号存在异常,请联系客服或删除账号使用新建账号继续游戏。", ["ACT_FOURTEEN_DESC_6"] = "阶段",
["SEIZED_DESC_2"] = "联系客服", ["ACT_FOURTEEN_DESC_7"] = "尚未解锁,请明日再来~",
["SEIZED_DESC_3"] = "删除账号", ["ACT_FOURTEEN_DESC_8"] = "完成当前阶段所有任务可获得:",
["ACT_FOURTEEN_DESC_9"] = "活动期间每完成1个任务可获得100个【挑战点】",
["ACT_BOSS_RUSH_DESC_1"] = "是否消耗{0}钻石战斗?",
["ACT_BOSS_RUSH_DESC_2"] = "首领公开赛",
["ACT_BOSS_RUSH_DESC_3"] = "今日高手",
["ACT_BOSS_RUSH_DESC_4"] = "我今日最高:",
["ACT_BOSS_RUSH_DESC_5"] = "我今日挑战:{0}次",
["ACT_BOSS_RUSH_DESC_6"] = "今日剩余免费挑战次数:{0}",
["ACT_BOSS_RUSH_DESC_7"] = "消耗:",
["ACT_BOSS_RUSH_DESC_8"] = "虚位以待",
["ACT_BOSS_RUSH_DESC_9"] = "首领公开赛阵容设置标题",
["ACT_BOSS_RUSH_DESC_10"] = "排行榜",
["ACT_BOSS_RUSH_DESC_11"] = "首领巡礼",
["ACT_BOSS_RUSH_DESC_12"] = "活动商店",
["ACT_BOSS_RUSH_DESC_13"] = "首领公开赛弹窗描述",
["ACT_BOSS_RUSH_DESC_14"] = "立即前往",
["ACT_BOSS_RUSH_DESC_15"] = "首领公开赛基金标题",
["ACT_BOSS_RUSH_DESC_16"] = "首领公开赛基金描述",
} }
return localization_global return localization_global

View File

@ -187,6 +187,14 @@ local item = {
["name"]="随机史诗英雄", ["name"]="随机史诗英雄",
["desc"]="批量获取时只会随机以下英雄中的一名" ["desc"]="批量获取时只会随机以下英雄中的一名"
}, },
[51]={
["name"]="挑战点",
["desc"]="限时兑换道具。"
},
[52]={
["name"]="首领金币",
["desc"]="首领公开赛可以进行兑换。"
},
[1001]={ [1001]={
["name"]="暗淡陨铁", ["name"]="暗淡陨铁",
["desc"]="一块暗淡的陨铁,蕴含着神秘的能量。" ["desc"]="一块暗淡的陨铁,蕴含着神秘的能量。"
@ -445,6 +453,6 @@ local item = {
} }
} }
local config = { local config = {
data=item,count=111 data=item,count=113
} }
return config return config

View File

@ -42,7 +42,7 @@ local skill = {
["desc"]="流星追月:使用后本次伤害提升,并造成一次巨量技能伤害。" ["desc"]="流星追月:使用后本次伤害提升,并造成一次巨量技能伤害。"
}, },
[3400220]={ [3400220]={
["desc"]="美丽梦魇额外造成一次大量技能伤害50%概率附加<color=#3cff28><color=#fcb501><u>昏睡</u></color>效果,<color=#3cff28>1</color>回合。" ["desc"]="美丽梦魇额外造成一次大量技能伤害50%概率附加<color=#3cff28><color=#fcb501><u>昏睡</u></color>效果,<color=#3cff28>2</color>回合。"
}, },
[4200120]={ [4200120]={
["desc"]="元素链接:随机消除<color=#3cff28>3</color>个元素,并造成一次技能伤害。" ["desc"]="元素链接:随机消除<color=#3cff28>3</color>个元素,并造成一次技能伤害。"

View File

@ -468,7 +468,7 @@ local skill_rogue = {
["desc"]="流星追月链接<color=#3cff28>4</color>个元素或以上时,流星追月攻击将释放<color=#3cff28>2</color>次。" ["desc"]="流星追月链接<color=#3cff28>4</color>个元素或以上时,流星追月攻击将释放<color=#3cff28>2</color>次。"
}, },
[3400200]={ [3400200]={
["desc"]="解锁美丽梦魇额外造成一次大量技能伤害50%概率附加<color=#3cff28>昏睡</color>效果,<color=#3cff28>1</color>回合。" ["desc"]="解锁美丽梦魇额外造成一次大量技能伤害50%概率附加<color=#3cff28>昏睡</color>效果,<color=#3cff28>2</color>回合。"
}, },
[3400201]={ [3400201]={
["desc"]="美丽梦魇沿X方向可额外消除<color=#3cff28>4</color>格。" ["desc"]="美丽梦魇沿X方向可额外消除<color=#3cff28>4</color>格。"
@ -480,7 +480,7 @@ local skill_rogue = {
["desc"]="美丽梦魇沿X方向可额外消除<color=#3cff28>4</color>格。" ["desc"]="美丽梦魇沿X方向可额外消除<color=#3cff28>4</color>格。"
}, },
[3400204]={ [3400204]={
["desc"]="美丽梦魇附加的<color=#3cff28>昏睡</color>效果,概率提升到<color=#3cff28>80%</color>,回合数<color=#3cff28>+1</color>" ["desc"]="美丽梦魇附加的<color=#3cff28>昏睡</color>效果,概率提升到<color=#3cff28>80%</color>"
}, },
[3400205]={ [3400205]={
["desc"]="<color=#fcff28>Combo</color>:梦魔普攻<color=#3cff28>昏睡</color>敌人将附加<color=#3cff28>禁锢</color>效果,<color=#3cff28>2</color>回合。" ["desc"]="<color=#fcff28>Combo</color>:梦魔普攻<color=#3cff28>昏睡</color>敌人将附加<color=#3cff28>禁锢</color>效果,<color=#3cff28>2</color>回合。"

View File

@ -11,9 +11,6 @@ local skin = {
[14001]={ [14001]={
["value"]="初始" ["value"]="初始"
}, },
[1400101]={
["value"]="遗迹战甲"
},
[14002]={ [14002]={
["value"]="初始" ["value"]="初始"
}, },
@ -106,6 +103,6 @@ local skin = {
} }
} }
local config = { local config = {
data=skin,count=35 data=skin,count=34
} }
return config return config

View File

@ -0,0 +1,141 @@
local act_fourteen_quest = {
[1]={
},
[2]={
},
[3]={
},
[4]={
},
[5]={
},
[6]={
},
[7]={
},
[8]={
},
[9]={
},
[10]={
},
[11]={
},
[12]={
},
[13]={
},
[14]={
},
[15]={
},
[16]={
},
[17]={
},
[18]={
},
[19]={
},
[20]={
},
[21]={
},
[22]={
},
[23]={
},
[24]={
},
[25]={
},
[26]={
},
[27]={
},
[28]={
},
[29]={
},
[30]={
},
[31]={
},
[32]={
},
[33]={
},
[34]={
},
[35]={
},
[36]={
},
[37]={
},
[38]={
},
[39]={
},
[40]={
},
[41]={
},
[42]={
},
[43]={
},
[44]={
},
[45]={
}
}
local config = {
data=act_fourteen_quest,count=45
}
return config

View File

@ -0,0 +1,10 @@
fileFormatVersion: 2
guid: bf8f1ebafd0ca1e419ee11ab8dd89fdf
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}

View File

@ -139,6 +139,12 @@ local item = {
}, },
[47]={ [47]={
},
[51]={
},
[52]={
}, },
[1001]={ [1001]={
@ -334,6 +340,6 @@ local item = {
} }
} }
local config = { local config = {
data=item,count=111 data=item,count=113
} }
return config return config

View File

@ -10,9 +10,6 @@ local skin = {
}, },
[14001]={ [14001]={
},
[1400101]={
}, },
[14002]={ [14002]={
@ -106,6 +103,6 @@ local skin = {
} }
} }
local config = { local config = {
data=skin,count=35 data=skin,count=34
} }
return config return config

View File

@ -0,0 +1,141 @@
local act_fourteen_quest = {
[1]={
},
[2]={
},
[3]={
},
[4]={
},
[5]={
},
[6]={
},
[7]={
},
[8]={
},
[9]={
},
[10]={
},
[11]={
},
[12]={
},
[13]={
},
[14]={
},
[15]={
},
[16]={
},
[17]={
},
[18]={
},
[19]={
},
[20]={
},
[21]={
},
[22]={
},
[23]={
},
[24]={
},
[25]={
},
[26]={
},
[27]={
},
[28]={
},
[29]={
},
[30]={
},
[31]={
},
[32]={
},
[33]={
},
[34]={
},
[35]={
},
[36]={
},
[37]={
},
[38]={
},
[39]={
},
[40]={
},
[41]={
},
[42]={
},
[43]={
},
[44]={
},
[45]={
}
}
local config = {
data=act_fourteen_quest,count=45
}
return config

View File

@ -0,0 +1,10 @@
fileFormatVersion: 2
guid: b7355f4eae0ec13479f401f83bf74453
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}

View File

@ -48,16 +48,16 @@ local equip = {
["name"]="Mighty Mallet,Warrior's Hammer,Comet Crusher,Annihilator's Hammer,Soulshatter,Falling Star" ["name"]="Mighty Mallet,Warrior's Hammer,Comet Crusher,Annihilator's Hammer,Soulshatter,Falling Star"
}, },
[1400102]={ [1400102]={
["name"]="Floral Circlet,Pearl Circlet,Flame Gilded Circlet,Serene Jade Circlet,Starry Phoenix Circlet,Supreme Crown" ["name"]="Rugged Steel Helm,Fine Steel Visor,Obsidian Noble Crown,Gallant Coronet,Dragonhorn Circlet,Eternal Glory Crown"
}, },
[1400103]={ [1400103]={
["name"]="Soft Leather Robe,Jade-Adorned Robe,Purple Gauze Silk,Amber-hued Robe,Phoenix Feather Robe,Sovereign Celestial Robe" ["name"]="Thick Woven Vestment,Thin Steel Hauberk,Dark Iron Plate,Champion's Jade Armor,Wyrmhide Golden Plate,Eternal Heavy Plate"
}, },
[1400104]={ [1400104]={
["name"]="Embroidered Belt,Elegant Waist Band,Pearl-embroidered Belt,Astral Glory Belt,Phoenix Gaze Belt,Ultimate Immortal Belt" ["name"]="Leather Belt,Ebony Gold Waistband,Knight's Baldric,Wyrm Sinew Belt,Eternal Girth,Bronze Bracelet"
}, },
[1400105]={ [1400105]={
["name"]="Lavender Iron Bracelet,Ethereal Veil Gauntlets,Golden Brilliance Gauntlets,Stellar Gauntlets,Phoenix Bone Gauntlets,Supreme Sovereign Armguards" ["name"]="Bronze Bracelet,Leather Wristbands,Ironheart Wristbands,Heroic Gauntlets,Dragonwhisker Wristguards,Eternal Wristbands"
}, },
[1400201]={ [1400201]={
["name"]="Cat's Claw,Spiked Claw,Azure Steel Claw,Shredding Claw,Sky-Cleaving Claw,Fortune's Blessing" ["name"]="Cat's Claw,Spiked Claw,Azure Steel Claw,Shredding Claw,Sky-Cleaving Claw,Fortune's Blessing"

View File

@ -447,24 +447,6 @@ local localization_global =
["ACT_DESC_12"] = "LV", ["ACT_DESC_12"] = "LV",
["ARENA_DESC_35"] = "You might obtain <color=#ff8bf8>Epic</color>~", ["ARENA_DESC_35"] = "You might obtain <color=#ff8bf8>Epic</color>~",
["ARENA_DESC_36"] = "Try", ["ARENA_DESC_36"] = "Try",
["ONE_KEY_GET_DESC"] = "Claim All",
["ACTIVITY_OVER_EDSC"] = "Event has ended",
["PART_IN_DESC"] = "Participate",
["HERO_FUND_DESCC_1"] = "New event [Lunar Benediction] is open",
["HERO_FUND_DESCC_2"] = "Lunar Benediction",
["HERO_FUND_DESCC_3"] = "With the Lunar Benediction, obtain rewards by progressing through waves in battles.",
["HERO_FUND_DESCC_4"] = "New event [Advanced Challenge] is open",
["ARENA_DESC_37"] = "Unlock Hero:",
["ARENA_DESC_38"] = "Unlocked Heroes:",
["ARENA_DESC_39"] = "Promotion rewards are one-time",
["ARENA_DESC_40"] = "Promotion Rewards",
["ARENA_DESC_41"] = "Settlement Rewards",
["ARENA_DESC_42"] = "Unclaimed Rewards",
["EQUIP_DESC_26"] = "Weapon Upgrade Lv.{0} Pack",
["EQUIP_DESC_27"] = "Armor Upgrade Lv.{0} Pack",
["SEIZED_DESC_1"] = "Detected abnormality on your account. Please contact customer service or delete the account and continue playing with a new account.",
["SEIZED_DESC_2"] = "Customer Service",
["SEIZED_DESC_3"] = "Delete Account",
} }
return localization_global return localization_global

View File

@ -186,6 +186,12 @@ local item = {
[47]={ [47]={
["name"]="Random Epic Hero", ["name"]="Random Epic Hero",
["desc"]="Shards obtained in batch will only randomly grant one of the following heroes." ["desc"]="Shards obtained in batch will only randomly grant one of the following heroes."
},
[51]={
},
[52]={
}, },
[1001]={ [1001]={
["name"]="Dim Meteorite", ["name"]="Dim Meteorite",
@ -445,6 +451,6 @@ local item = {
} }
} }
local config = { local config = {
data=item,count=111 data=item,count=113
} }
return config return config

View File

@ -42,7 +42,7 @@ local skill = {
["desc"]="Moon Chaser: Increase damage and deal significantly skill damage once." ["desc"]="Moon Chaser: Increase damage and deal significantly skill damage once."
}, },
[3400220]={ [3400220]={
["desc"]="Alluring Nightmare: Deal one additional hit of massive skill damage and has a 50% chance to inflict <color=#3cff28><color=#fcb501><u>Drowsy</u></color> that lasts <color=#3cff28>1</color> turns." ["desc"]="Alluring Nightmare: Deal one additional hit of massive skill damage and has a 50% chance to inflict <color=#3cff28><color=#fcb501><u>Drowsy</u></color> that lasts <color=#3cff28>2</color> turns."
}, },
[4200120]={ [4200120]={
["desc"]="Elemental Link: Clear <color=#3cff28>3</color> random elements and deal skill damage once." ["desc"]="Elemental Link: Clear <color=#3cff28>3</color> random elements and deal skill damage once."

View File

@ -468,7 +468,7 @@ local skill_rogue = {
["desc"]="When Moonchaser links to <color=#3cff28>4</color> or more elements, it will be cast <color=#3cff28>2</color> times." ["desc"]="When Moonchaser links to <color=#3cff28>4</color> or more elements, it will be cast <color=#3cff28>2</color> times."
}, },
[3400200]={ [3400200]={
["desc"]="Unlock Alluring Nightmare: Deal one additional hit of massive skill damage and has a 50% chance to inflict <color=#3cff28>Drowsy</color> that lasts <color=#3cff28>1</color> turns." ["desc"]="Unlock Alluring Nightmare: Deal one additional hit of massive skill damage and has a 50% chance to inflict <color=#3cff28>Drowsy</color> that lasts <color=#3cff28>2</color> turns."
}, },
[3400201]={ [3400201]={
["desc"]="Alluring Nightmare can clear additional <color=#3cff28>4</color> grids in the X direction." ["desc"]="Alluring Nightmare can clear additional <color=#3cff28>4</color> grids in the X direction."
@ -480,7 +480,7 @@ local skill_rogue = {
["desc"]="Alluring Nightmare can clear additional <color=#3cff28>4</color> grids in the X direction." ["desc"]="Alluring Nightmare can clear additional <color=#3cff28>4</color> grids in the X direction."
}, },
[3400204]={ [3400204]={
["desc"]="The chance of <color=#3cff28>Drowsy</color> inflicted by Alluring Nightmare increases to <color=#3cff28>80%</color> for <color=#3cff28>+1</color> turn." ["desc"]="The chance of Drowsy inflicted by Alluring Nightmare increases to <color=#3cff28>80%</color>."
}, },
[3400205]={ [3400205]={
["desc"]="<color=#fcff28>Combo</color>: Nightmare's normal attack to <color=#3cff28>Drowsy</color> enemy will inflict <color=#3cff28>Imprison</color> for <color=#3cff28>2</color> turns." ["desc"]="<color=#fcff28>Combo</color>: Nightmare's normal attack to <color=#3cff28>Drowsy</color> enemy will inflict <color=#3cff28>Imprison</color> for <color=#3cff28>2</color> turns."

View File

@ -11,9 +11,6 @@ local skin = {
[14001]={ [14001]={
["value"]="Initial" ["value"]="Initial"
}, },
[1400101]={
["value"]="Relic Armor"
},
[14002]={ [14002]={
["value"]="Initial" ["value"]="Initial"
}, },
@ -106,6 +103,6 @@ local skin = {
} }
} }
local config = { local config = {
data=skin,count=35 data=skin,count=34
} }
return config return config

View File

@ -0,0 +1,141 @@
local act_fourteen_quest = {
[1]={
},
[2]={
},
[3]={
},
[4]={
},
[5]={
},
[6]={
},
[7]={
},
[8]={
},
[9]={
},
[10]={
},
[11]={
},
[12]={
},
[13]={
},
[14]={
},
[15]={
},
[16]={
},
[17]={
},
[18]={
},
[19]={
},
[20]={
},
[21]={
},
[22]={
},
[23]={
},
[24]={
},
[25]={
},
[26]={
},
[27]={
},
[28]={
},
[29]={
},
[30]={
},
[31]={
},
[32]={
},
[33]={
},
[34]={
},
[35]={
},
[36]={
},
[37]={
},
[38]={
},
[39]={
},
[40]={
},
[41]={
},
[42]={
},
[43]={
},
[44]={
},
[45]={
}
}
local config = {
data=act_fourteen_quest,count=45
}
return config

View File

@ -0,0 +1,10 @@
fileFormatVersion: 2
guid: 1843e74428d0a6342bcf3b35175a2f48
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}

View File

@ -48,16 +48,16 @@ local equip = {
["name"]="Martillo Potente,Martillo de Guerrero,Martillo de Meteorito,Martillo Atacante,Martillo Letal,Estrella Fugaz" ["name"]="Martillo Potente,Martillo de Guerrero,Martillo de Meteorito,Martillo Atacante,Martillo Letal,Estrella Fugaz"
}, },
[1400102]={ [1400102]={
["name"]="Corona Floral,Corona con Perlas,Corona de Fuego,Corona de Jade,Corona de Fénix,Corona Suprema" ["name"]="Visera de Acero Bruto,Visera de Acero Fino,Corona de obsidiana,Corona de héroe,Corona de Cuerno de Dragón,Corona Eterna"
}, },
[1400103]={ [1400103]={
["name"]="Forro de Cuero Suave,Túnica con Jade,Satén Morado,Túnica de Ámbar,Túnica con Pluma de Fénix,Túnica de Estrella Suprema" ["name"]="Túnica Gruesa,Armadura de Acero Delgado,Armadura Pesada,Armadura de Jade,Casco Dorado de Escamas de Dragón,Armadura Pesada Eterna"
}, },
[1400104]={ [1400104]={
["name"]="Cinturón Bordado,Corsé Elegante,Cinturón Bordado con Perlas,Cinturón Imperial de Estrella,Cinturón de Ojos de Fénix,Cuerda Suprema" ["name"]="Cinturón de Cuero,Faja de Oro Negro,Faja de Jinete,Faja de Tendón de Dragón,Cadena de Cintura Eterna,Pulsera de Cobre"
}, },
[1400105]={ [1400105]={
["name"]="Pulsera de Hierro Morado,Guanteletes de Velo,Guanteletes de Oro,Guanteletes de Estrellas,Guanteletes de Hueso de Fénix,Armadura de Mano Suprema" ["name"]="Pulsera de Cobre,Muñequera de Cuero,Muñequera de Hierro,Guanteletes de Héroe,Muñequera de Barba de Dragón,Muñequera Eterna"
}, },
[1400201]={ [1400201]={
["name"]="Golpe de gato,Puño con Pinchos,Puño de Acero Verde,Puño Lacerante,Puño en Cielo ,Poder de Fortuna" ["name"]="Golpe de gato,Puño con Pinchos,Puño de Acero Verde,Puño Lacerante,Puño en Cielo ,Poder de Fortuna"

View File

@ -447,24 +447,6 @@ local localization_global =
["ACT_DESC_12"] = "LV", ["ACT_DESC_12"] = "LV",
["ARENA_DESC_35"] = "Héroe <color=#ff8bf8>épico</color> posible", ["ARENA_DESC_35"] = "Héroe <color=#ff8bf8>épico</color> posible",
["ARENA_DESC_36"] = "Prueba tu suerte", ["ARENA_DESC_36"] = "Prueba tu suerte",
["ONE_KEY_GET_DESC"] = "Colectar todo",
["ACTIVITY_OVER_EDSC"] = "El evento ha terminado",
["PART_IN_DESC"] = "Participar",
["HERO_FUND_DESCC_1"] = "Comienza el nuevo evento: Bendición de la Luna",
["HERO_FUND_DESCC_2"] = "Bendición de la Luna",
["HERO_FUND_DESCC_3"] = "Con Bendición de la Luna, obtendrás generosas recompensas pasando las olas en la batalla.",
["HERO_FUND_DESCC_4"] = "Comienza el nuevo evento: Desafío Avanzado",
["ARENA_DESC_37"] = "Héroes bloqueados:",
["ARENA_DESC_38"] = "Héroes desbloqueados:",
["ARENA_DESC_39"] = "Las recompensas de subida de ranking se conceden una sola vez",
["ARENA_DESC_40"] = "Recompensas de Subida de Ranking",
["ARENA_DESC_41"] = "Recompensas de Clasificación",
["ARENA_DESC_42"] = "Recompensas no colectadas",
["EQUIP_DESC_26"] = "Paquete de Mejora de Arma al Nv. {0}",
["EQUIP_DESC_27"] = "Paquete de Mejora de Armadura al Nv. {0}",
["SEIZED_DESC_1"] = "Se ha detectado una anomalía en tu cuenta. Por favor contacta con Atención al Cliente, o elimina la cuenta actual y crear una nueva para continuar el juego.",
["SEIZED_DESC_2"] = "Atención al Cliente",
["SEIZED_DESC_3"] = "Eliminar Cuenta",
} }
return localization_global return localization_global

View File

@ -186,6 +186,12 @@ local item = {
[47]={ [47]={
["name"]="Héroe Épico aleatorio", ["name"]="Héroe Épico aleatorio",
["desc"]="Al obtener por lote, solo aparecerá uno de los siguientes héroes" ["desc"]="Al obtener por lote, solo aparecerá uno de los siguientes héroes"
},
[51]={
},
[52]={
}, },
[1001]={ [1001]={
["name"]="Meteorito Opaco", ["name"]="Meteorito Opaco",
@ -445,6 +451,6 @@ local item = {
} }
} }
local config = { local config = {
data=item,count=111 data=item,count=113
} }
return config return config

View File

@ -42,7 +42,7 @@ local skill = {
["desc"]="Danza de Meteoro: aumenta el daño y causa un golpe adicional de enorme daño de habilidad." ["desc"]="Danza de Meteoro: aumenta el daño y causa un golpe adicional de enorme daño de habilidad."
}, },
[3400220]={ [3400220]={
["desc"]="Pesadilla Hermosa: causa un masivo daño de habilidad adicional, con un 50% de chance de aplicar <color=#3cff28><color=#fcb501><u>Dormido</u></color> durante <color=#3cff28>1</color> rondas." ["desc"]="Pesadilla Hermosa: causa un masivo daño de habilidad adicional, con un 50% de chance de aplicar <color=#3cff28><color=#fcb501><u>Dormido</u></color> durante <color=#3cff28>2</color> rondas."
}, },
[4200120]={ [4200120]={
["desc"]="Enlace de Elementos: elimina <color=#3cff28>3</color> elementos aleatorios y causa un daño de habilidad." ["desc"]="Enlace de Elementos: elimina <color=#3cff28>3</color> elementos aleatorios y causa un daño de habilidad."

View File

@ -468,7 +468,7 @@ local skill_rogue = {
["desc"]="Cuando Espada de Fantasía enlaza <color=#3cff28>4</color> o más elementos, lanzará <color=#3cff28>2</color> ataques." ["desc"]="Cuando Espada de Fantasía enlaza <color=#3cff28>4</color> o más elementos, lanzará <color=#3cff28>2</color> ataques."
}, },
[3400200]={ [3400200]={
["desc"]="Desbloquea Pesadilla Hermosa: causa un masivo daño de habilidad adicional, con un <color=#3cff28>50%</color> de chance de aplicar Dormido durante <color=#3cff28>1</color> rondas." ["desc"]="Desbloquea Pesadilla Hermosa: causa un masivo daño de habilidad adicional, con un <color=#3cff28>50%</color> de chance de aplicar Dormido durante <color=#3cff28>2</color> rondas."
}, },
[3400201]={ [3400201]={
["desc"]="Pesadilla Hermosa elimina <color=#3cff28>4</color> bloques extras en direcciones de X." ["desc"]="Pesadilla Hermosa elimina <color=#3cff28>4</color> bloques extras en direcciones de X."
@ -480,7 +480,7 @@ local skill_rogue = {
["desc"]="Pesadilla Hermosa elimina <color=#3cff28>4</color> bloques extras en direcciones de X." ["desc"]="Pesadilla Hermosa elimina <color=#3cff28>4</color> bloques extras en direcciones de X."
}, },
[3400204]={ [3400204]={
["desc"]="Aumenta el chance de <color=#3cff28>Dormido</color> aplicado por Pesadilla Hermosa a <color=#3cff28>80%</color> durante <color=#3cff28>+1</color> rondas." ["desc"]="Aumenta el chance de <color=#3cff28>Dormido</color> aplicado por Pesadilla Hermosa a <color=#3cff28>80%</color>."
}, },
[3400205]={ [3400205]={
["desc"]="<color=#fcff28>Combo</color>: el ataque común de Íncubo a enemigos <color=#3cff28>Dormidos</color> aplicará <color=#3cff28>Encarcelamiento</color> durante <color=#3cff28>2</color> rondas." ["desc"]="<color=#fcff28>Combo</color>: el ataque común de Íncubo a enemigos <color=#3cff28>Dormidos</color> aplicará <color=#3cff28>Encarcelamiento</color> durante <color=#3cff28>2</color> rondas."

View File

@ -11,9 +11,6 @@ local skin = {
[14001]={ [14001]={
["value"]="Inicial" ["value"]="Inicial"
}, },
[1400101]={
["value"]="Armadura de Ruinas"
},
[14002]={ [14002]={
["value"]="Inicial" ["value"]="Inicial"
}, },
@ -106,6 +103,6 @@ local skin = {
} }
} }
local config = { local config = {
data=skin,count=35 data=skin,count=34
} }
return config return config

View File

@ -0,0 +1,141 @@
local act_fourteen_quest = {
[1]={
},
[2]={
},
[3]={
},
[4]={
},
[5]={
},
[6]={
},
[7]={
},
[8]={
},
[9]={
},
[10]={
},
[11]={
},
[12]={
},
[13]={
},
[14]={
},
[15]={
},
[16]={
},
[17]={
},
[18]={
},
[19]={
},
[20]={
},
[21]={
},
[22]={
},
[23]={
},
[24]={
},
[25]={
},
[26]={
},
[27]={
},
[28]={
},
[29]={
},
[30]={
},
[31]={
},
[32]={
},
[33]={
},
[34]={
},
[35]={
},
[36]={
},
[37]={
},
[38]={
},
[39]={
},
[40]={
},
[41]={
},
[42]={
},
[43]={
},
[44]={
},
[45]={
}
}
local config = {
data=act_fourteen_quest,count=45
}
return config

View File

@ -0,0 +1,10 @@
fileFormatVersion: 2
guid: aba53e722e6162c448bfa183dbe21320
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}

View File

@ -139,6 +139,12 @@ local item = {
}, },
[47]={ [47]={
},
[51]={
},
[52]={
}, },
[1001]={ [1001]={
@ -334,6 +340,6 @@ local item = {
} }
} }
local config = { local config = {
data=item,count=111 data=item,count=113
} }
return config return config

View File

@ -10,9 +10,6 @@ local skin = {
}, },
[14001]={ [14001]={
},
[1400101]={
}, },
[14002]={ [14002]={
@ -106,6 +103,6 @@ local skin = {
} }
} }
local config = { local config = {
data=skin,count=35 data=skin,count=34
} }
return config return config

View File

@ -0,0 +1,141 @@
local act_fourteen_quest = {
[1]={
},
[2]={
},
[3]={
},
[4]={
},
[5]={
},
[6]={
},
[7]={
},
[8]={
},
[9]={
},
[10]={
},
[11]={
},
[12]={
},
[13]={
},
[14]={
},
[15]={
},
[16]={
},
[17]={
},
[18]={
},
[19]={
},
[20]={
},
[21]={
},
[22]={
},
[23]={
},
[24]={
},
[25]={
},
[26]={
},
[27]={
},
[28]={
},
[29]={
},
[30]={
},
[31]={
},
[32]={
},
[33]={
},
[34]={
},
[35]={
},
[36]={
},
[37]={
},
[38]={
},
[39]={
},
[40]={
},
[41]={
},
[42]={
},
[43]={
},
[44]={
},
[45]={
}
}
local config = {
data=act_fourteen_quest,count=45
}
return config

View File

@ -0,0 +1,10 @@
fileFormatVersion: 2
guid: 3b7da24318d9bae47bcba7ac90d7f292
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}

View File

@ -48,16 +48,16 @@ local equip = {
["name"]="Mallet Perkasa,Palu Prajurit,Penghancur Komet,Palu Pemusnah,Penghancur Jiwa,Bintang Jatuh" ["name"]="Mallet Perkasa,Palu Prajurit,Penghancur Komet,Palu Pemusnah,Penghancur Jiwa,Bintang Jatuh"
}, },
[1400102]={ [1400102]={
["name"]="Circlet Bunga,Circlet Mutiara,Circlet Api Emas,Circlet Giok,Circlet Phoenix,Mahkota Agung" ["name"]="Helm Baja Kasar,Pelindung Baja Halus,Mahkota Obsidian,Coronet Perkasa,Circlet Tanduk Naga,Mahkota Kemuliaan Abadi"
}, },
[1400103]={ [1400103]={
["name"]="Jubah Kulit Lembut,Jubah Giok,Sutra Kasa Ungu,Jubah Amber,Jubah Bulu Phoenix,Jubah Bintang Daulat" ["name"]="Jubah Tenun Tebal,Armor Cincin Baja Tipis,Plat Besi Gelap,Armor Giok Sang Juara,Plat Emas Wyrmhide,Plat Berat Abadi"
}, },
[1400104]={ [1400104]={
["name"]="Sabuk Bordir,Tali Pinggang Elegan,Sabuk Mutiara,Sabuk Astral,Sabuk Phoenix,Sabuk Abadi" ["name"]="Sabuk Kulit,Tali Pinggang Emas Eboni,Ksatria Baldric,Sabuk Otot Wyrm,Lingkar Kekal,Gelang Bronze"
}, },
[1400105]={ [1400105]={
["name"]="Gelang Besi Lavender,Sarung Tangan Cadar Ethereal,Sarung Tangan Emas Cemerlang,Sarung Tangan Bintang,Sarung Tulang Phoenix,Pelindung Lengan Sovereign Agung" ["name"]="Gelang Bronze,Gelang Kulit,Gelang Hati Besi,Sarung Tangan Heroik,Pelindung Tangan Kumis Naga,Gelang Abadi"
}, },
[1400201]={ [1400201]={
["name"]="Cakar Kucing,Cakar Duri,Cakar Baja Azure,Cakar Pencabik,Cakar Pembelah Langit,Berkah Keberuntungan" ["name"]="Cakar Kucing,Cakar Duri,Cakar Baja Azure,Cakar Pencabik,Cakar Pembelah Langit,Berkah Keberuntungan"

View File

@ -447,24 +447,6 @@ local localization_global =
["ACT_DESC_12"] = "LV", ["ACT_DESC_12"] = "LV",
["ARENA_DESC_35"] = "Mungkin dapat <color=#ff8bf8>Epik</color>", ["ARENA_DESC_35"] = "Mungkin dapat <color=#ff8bf8>Epik</color>",
["ARENA_DESC_36"] = "Coba", ["ARENA_DESC_36"] = "Coba",
["ONE_KEY_GET_DESC"] = "Klaim Cepat",
["ACTIVITY_OVER_EDSC"] = "Event telah berakhir",
["PART_IN_DESC"] = "Partisipasi",
["HERO_FUND_DESCC_1"] = "Event baru Berkah Lunar dibuka",
["HERO_FUND_DESCC_2"] = "Berkah Lunar",
["HERO_FUND_DESCC_3"] = "Dapatkan hadiah melimpah dengan melewati ombak dalam pertempuran saat memiliki Berkah Lunar.",
["HERO_FUND_DESCC_4"] = "Event baru Tantangan Advanced dibuka",
["ARENA_DESC_37"] = "Buka Hero:",
["ARENA_DESC_38"] = "Hero terbuka:",
["ARENA_DESC_39"] = "Hadiah promosi hanya satu kali",
["ARENA_DESC_40"] = "Hadiah Promosi",
["ARENA_DESC_41"] = "Hadiah Penyelesaian",
["ARENA_DESC_42"] = "Hadiah yang belum diklaim",
["EQUIP_DESC_26"] = "Pack Peningkatan Senjata Lv.{0}",
["EQUIP_DESC_27"] = "Pack upgrade Armor Lv.{0}",
["SEIZED_DESC_1"] = "Telah terdeteksi kondisi tidak normal pada akunmuu. Silakan hubungi layanan pelanggan atau hapus akun, dan gunakan akun baru untuk melanjutkan permainan.",
["SEIZED_DESC_2"] = "Hubungi Layanan Pelanggan",
["SEIZED_DESC_3"] = "Hapus Akun",
} }
return localization_global return localization_global

View File

@ -186,6 +186,12 @@ local item = {
[47]={ [47]={
["name"]="Hero Epik acak", ["name"]="Hero Epik acak",
["desc"]="Hanya satu dari Hero berikut yang akan muncul secara acak saat dapat dalam jumlah banyak." ["desc"]="Hanya satu dari Hero berikut yang akan muncul secara acak saat dapat dalam jumlah banyak."
},
[51]={
},
[52]={
}, },
[1001]={ [1001]={
["name"]="Chondrite", ["name"]="Chondrite",
@ -445,6 +451,6 @@ local item = {
} }
} }
local config = { local config = {
data=item,count=111 data=item,count=113
} }
return config return config

View File

@ -42,7 +42,7 @@ local skill = {
["desc"]="Pemburu Bulan: Meningkatkan DMG dan memberikan DMG skill yang besar sekali." ["desc"]="Pemburu Bulan: Meningkatkan DMG dan memberikan DMG skill yang besar sekali."
}, },
[3400220]={ [3400220]={
["desc"]="Nightmare Z: Menyebabkan DMG skill tambahan dalam jumlah besar dengan 50% peluang efek <color=#3cff28><color=#fcb501><u>Kantuk</u></color> selama <color=#3cff28>1</color> giliran." ["desc"]="Nightmare Z: Menyebabkan DMG skill tambahan dalam jumlah besar dengan 50% peluang efek <color=#3cff28><color=#fcb501><u>Kantuk</u></color> selama <color=#3cff28>2</color> giliran."
}, },
[4200120]={ [4200120]={
["desc"]="Link Elemen: Menghilangkan <color=#3cff28>3</color> elemen secara acak dan memberikan DMG skill." ["desc"]="Link Elemen: Menghilangkan <color=#3cff28>3</color> elemen secara acak dan memberikan DMG skill."

View File

@ -468,7 +468,7 @@ local skill_rogue = {
["desc"]="Saat Pemburu Bulan menautkan <color=#3cff28>4</color> atau lebih banyak elemen, maka ATK Pemburu Bulan akan dilepaskan sebanyak <color=#3cff28>2</color> kali." ["desc"]="Saat Pemburu Bulan menautkan <color=#3cff28>4</color> atau lebih banyak elemen, maka ATK Pemburu Bulan akan dilepaskan sebanyak <color=#3cff28>2</color> kali."
}, },
[3400200]={ [3400200]={
["desc"]="Membuka Nightmare Z: Menyebabkan DMG skill tambahan dalam jumlah besar dengan 50% peluang efek <color=#3cff28>Kantuk</color> selama <color=#3cff28>1</color> giliran." ["desc"]="Membuka Nightmare Z: Menyebabkan DMG skill tambahan dalam jumlah besar dengan 50% peluang efek <color=#3cff28>Kantuk</color> selama <color=#3cff28>2</color> giliran."
}, },
[3400201]={ [3400201]={
["desc"]="Nightmare Z dapat menghapus <color=#3cff28>4</color> grid tambahan pada arah X." ["desc"]="Nightmare Z dapat menghapus <color=#3cff28>4</color> grid tambahan pada arah X."
@ -480,7 +480,7 @@ local skill_rogue = {
["desc"]="Nightmare Z dapat menghapus <color=#3cff28>4</color> grid tambahan pada arah X." ["desc"]="Nightmare Z dapat menghapus <color=#3cff28>4</color> grid tambahan pada arah X."
}, },
[3400204]={ [3400204]={
["desc"]="Peluang <color=#3cff28>Kantuk</color> yang ditimbulkan oleh Nightmare Z meningkat <color=#3cff28>80%</color> selama <color=#3cff28>+1</color> giliran." ["desc"]="Efek <color=#3cff28>Kantuk</color> Nightmare Z meningkatkan peluang hingga <color=#3cff28>80%</color>。"
}, },
[3400205]={ [3400205]={
["desc"]="<color=#fcff28>Combo</color>: ATK Nightmare Z <color=#3cff28>Kantuk</color> musuh akan memiliki efek <color=#3cff28>Larangan</color> yang melekat selama <color=#3cff28>2</color> giliran." ["desc"]="<color=#fcff28>Combo</color>: ATK Nightmare Z <color=#3cff28>Kantuk</color> musuh akan memiliki efek <color=#3cff28>Larangan</color> yang melekat selama <color=#3cff28>2</color> giliran."

View File

@ -11,9 +11,6 @@ local skin = {
[14001]={ [14001]={
["value"]="Awal" ["value"]="Awal"
}, },
[1400101]={
["value"]="Armor Relik"
},
[14002]={ [14002]={
["value"]="Awal" ["value"]="Awal"
}, },
@ -106,6 +103,6 @@ local skin = {
} }
} }
local config = { local config = {
data=skin,count=35 data=skin,count=34
} }
return config return config

View File

@ -0,0 +1,141 @@
local act_fourteen_quest = {
[1]={
},
[2]={
},
[3]={
},
[4]={
},
[5]={
},
[6]={
},
[7]={
},
[8]={
},
[9]={
},
[10]={
},
[11]={
},
[12]={
},
[13]={
},
[14]={
},
[15]={
},
[16]={
},
[17]={
},
[18]={
},
[19]={
},
[20]={
},
[21]={
},
[22]={
},
[23]={
},
[24]={
},
[25]={
},
[26]={
},
[27]={
},
[28]={
},
[29]={
},
[30]={
},
[31]={
},
[32]={
},
[33]={
},
[34]={
},
[35]={
},
[36]={
},
[37]={
},
[38]={
},
[39]={
},
[40]={
},
[41]={
},
[42]={
},
[43]={
},
[44]={
},
[45]={
}
}
local config = {
data=act_fourteen_quest,count=45
}
return config

View File

@ -0,0 +1,10 @@
fileFormatVersion: 2
guid: 5ccc0e82aeff0d74181b926d20278aa6
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}

View File

@ -48,16 +48,16 @@ local equip = {
["name"]="マイティマレット,戦士のハンマー,彗星クラッシャー,破壊ハンマー,ソウルシャッター,流れ星" ["name"]="マイティマレット,戦士のハンマー,彗星クラッシャー,破壊ハンマー,ソウルシャッター,流れ星"
}, },
[1400102]={ [1400102]={
["name"]="花の冠,真珠の冠飾,炎紋様の金冠,月の玉冠,鳳冠の星冠,至高のかんざし" ["name"]="鋼の仮面,ファインスチール製仮面,黒曜石の冠,勇気の冠,竜角の冠,永遠の冠"
}, },
[1400103]={ [1400103]={
["name"]="柔らかいローブ,翡翠飾りのローブ,紫絹のローブ,琥珀のローブ,鳳凰の羽のローブ,究極のローブ" ["name"]="厚織りの法衣,薄鋼鉄製ハウバーク,玄鉄の鎧,強者の鎧,竜鱗の鎧,永遠の鎧"
}, },
[1400104]={ [1400104]={
["name"]="シンプルな刺繍テープ,エレガントなウエストバンド,パールの刺繍テープ,スターライトの刺繍テープ,鳳凰の刺繍テープ,究極の刺繍テープ" ["name"]="革ベルト,黒檀ゴールドのガードル,騎士のベルト,竜腱のガードル,永遠のガードル,銅のブレスレット"
}, },
[1400105]={ [1400105]={
["name"]="紫鉄のブレスレット,ベールのガントレット,ゴールドのガントレット,星のガントレット,鳳凰のガントレット,究極のガントレット" ["name"]="銅のブレスレット,革リストバンド,鉄のリストバンド,ヒーローのガントレット,竜鬚のリストバンド,永遠のリストバンド"
}, },
[1400201]={ [1400201]={
["name"]="猫の爪,トゲの爪,鋼の爪,裂傷の爪,空を切り裂く爪,福神の力" ["name"]="猫の爪,トゲの爪,鋼の爪,裂傷の爪,空を切り裂く爪,福神の力"

View File

@ -447,24 +447,6 @@ local localization_global =
["ACT_DESC_12"] = "LV", ["ACT_DESC_12"] = "LV",
["ARENA_DESC_35"] = "<color=#ff8bf8>エピック</color>を獲得可能~", ["ARENA_DESC_35"] = "<color=#ff8bf8>エピック</color>を獲得可能~",
["ARENA_DESC_36"] = "運試し", ["ARENA_DESC_36"] = "運試し",
["ONE_KEY_GET_DESC"] = "一括受取",
["ACTIVITY_OVER_EDSC"] = "イベントは終了しました",
["PART_IN_DESC"] = "参加する",
["HERO_FUND_DESCC_1"] = "新イベント月の祝福が解放",
["HERO_FUND_DESCC_2"] = "月の祝福",
["HERO_FUND_DESCC_3"] = "月の祝福を入手した後、バトル中にクリア回数を累計すると豪華な報酬を獲得できます。",
["HERO_FUND_DESCC_4"] = "新イベントランクアップ挑戦が解放",
["ARENA_DESC_37"] = "ヒーロー解放:",
["ARENA_DESC_38"] = "解放済のヒーロー:",
["ARENA_DESC_39"] = "ランクアップ報酬は一回のみ受取可能です",
["ARENA_DESC_40"] = "ランクアップ報酬",
["ARENA_DESC_41"] = "決算報酬",
["ARENA_DESC_42"] = "未受取の報酬",
["EQUIP_DESC_26"] = "武器Lv{0}レベルアップパック",
["EQUIP_DESC_27"] = "防具Lv{0}レベルアップパック",
["SEIZED_DESC_1"] = "アカウントに異常が検出されました。サポートセンターに連絡するか、アカウントを削除し、新しいアカウントを作成してゲームを続行してください。",
["SEIZED_DESC_2"] = "サポートセンターに連絡する",
["SEIZED_DESC_3"] = "アカウントを削除する",
} }
return localization_global return localization_global

View File

@ -186,6 +186,12 @@ local item = {
[47]={ [47]={
["name"]="ランダムエピックヒーロー", ["name"]="ランダムエピックヒーロー",
["desc"]="一括獲得の時、以下のいずれかのヒーロー1名をランダムで獲得できる。" ["desc"]="一括獲得の時、以下のいずれかのヒーロー1名をランダムで獲得できる。"
},
[51]={
},
[52]={
}, },
[1001]={ [1001]={
["name"]="薄暗い隕石", ["name"]="薄暗い隕石",
@ -445,6 +451,6 @@ local item = {
} }
} }
local config = { local config = {
data=item,count=111 data=item,count=113
} }
return config return config

View File

@ -42,7 +42,7 @@ local skill = {
["desc"]="ムーンチェイサー発動するターンダメージがアップ、特⼤ダメージを与えるスキルを1回発動する。" ["desc"]="ムーンチェイサー発動するターンダメージがアップ、特⼤ダメージを与えるスキルを1回発動する。"
}, },
[3400220]={ [3400220]={
["desc"]="アリュールナイトメア追加で大ダメージを与えるスキルを1回発動し、50%の確率で敵に<color=#3cff28>1</color>ターン<color=#3cff28><color=#fcb501><u>昏睡</u></color>効果を付与する。" ["desc"]="アリュールナイトメア追加で大ダメージを与えるスキルを1回発動し、50%の確率で敵に<color=#3cff28>2</color>ターン<color=#3cff28><color=#fcb501><u>昏睡</u></color>効果を付与する。"
}, },
[4200120]={ [4200120]={
["desc"]="元素連接:ランダムで<color=#3cff28>3</color>つの元素を消し、スキルを1回発動する。" ["desc"]="元素連接:ランダムで<color=#3cff28>3</color>つの元素を消し、スキルを1回発動する。"

View File

@ -468,7 +468,7 @@ local skill_rogue = {
["desc"]="「ムーンチェイサー」は<color=#3cff28>4</color>つ以上の元素と繋がった時、ムーンチェイサーが<color=#3cff28>2</color>回発動する。" ["desc"]="「ムーンチェイサー」は<color=#3cff28>4</color>つ以上の元素と繋がった時、ムーンチェイサーが<color=#3cff28>2</color>回発動する。"
}, },
[3400200]={ [3400200]={
["desc"]="アリュールナイトメア解放追加で大ダメージを与えるスキルを1回発動し、50%の確率で敵に<color=#3cff28>1</color>ターン<color=#3cff28>昏睡</color>効果を付与する。" ["desc"]="アリュールナイトメア解放追加で大ダメージを与えるスキルを1回発動し、50%の確率で敵に<color=#3cff28>2</color>ターン<color=#3cff28>昏睡</color>効果を付与する。"
}, },
[3400201]={ [3400201]={
["desc"]="「アリュールナイトメア」は追加でX方向<color=#3cff28>4</color>マスを消す。" ["desc"]="「アリュールナイトメア」は追加でX方向<color=#3cff28>4</color>マスを消す。"
@ -480,7 +480,7 @@ local skill_rogue = {
["desc"]="「アリュールナイトメア」は追加でX方向<color=#3cff28>4</color>マスを消す。" ["desc"]="「アリュールナイトメア」は追加でX方向<color=#3cff28>4</color>マスを消す。"
}, },
[3400204]={ [3400204]={
["desc"]="「アリュールナイトメア」の<color=#3cff28>昏睡</color>効果の確率は<color=#3cff28>80%</color>に増加し、ターン数が<color=#3cff28>+1</color>" ["desc"]="「アリュールナイトメア」の<color=#3cff28>昏睡</color>効果の確率は<color=#3cff28>80%</color>に増加する"
}, },
[3400205]={ [3400205]={
["desc"]="<color=#fcff28>ヒット</color>:夢魔の通常攻撃が<color=#3cff28>昏睡</color>状態の敵に<color=#3cff28>2</color>ターン<color=#3cff28>拘束</color>効果を付与する。" ["desc"]="<color=#fcff28>ヒット</color>:夢魔の通常攻撃が<color=#3cff28>昏睡</color>状態の敵に<color=#3cff28>2</color>ターン<color=#3cff28>拘束</color>効果を付与する。"

View File

@ -11,9 +11,6 @@ local skin = {
[14001]={ [14001]={
["value"]="デフォルト" ["value"]="デフォルト"
}, },
[1400101]={
["value"]="レリックアーマー"
},
[14002]={ [14002]={
["value"]="デフォルト" ["value"]="デフォルト"
}, },
@ -106,6 +103,6 @@ local skin = {
} }
} }
local config = { local config = {
data=skin,count=35 data=skin,count=34
} }
return config return config

View File

@ -0,0 +1,141 @@
local act_fourteen_quest = {
[1]={
},
[2]={
},
[3]={
},
[4]={
},
[5]={
},
[6]={
},
[7]={
},
[8]={
},
[9]={
},
[10]={
},
[11]={
},
[12]={
},
[13]={
},
[14]={
},
[15]={
},
[16]={
},
[17]={
},
[18]={
},
[19]={
},
[20]={
},
[21]={
},
[22]={
},
[23]={
},
[24]={
},
[25]={
},
[26]={
},
[27]={
},
[28]={
},
[29]={
},
[30]={
},
[31]={
},
[32]={
},
[33]={
},
[34]={
},
[35]={
},
[36]={
},
[37]={
},
[38]={
},
[39]={
},
[40]={
},
[41]={
},
[42]={
},
[43]={
},
[44]={
},
[45]={
}
}
local config = {
data=act_fourteen_quest,count=45
}
return config

View File

@ -0,0 +1,10 @@
fileFormatVersion: 2
guid: fa770962fe2830c41bccfc79c37dc30b
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}

View File

@ -48,16 +48,16 @@ local equip = {
["name"]="힘센 망치,워리어의 망치,유성 망치,장군의 망치,영혼 파괴 망치,떨어지는 별" ["name"]="힘센 망치,워리어의 망치,유성 망치,장군의 망치,영혼 파괴 망치,떨어지는 별"
}, },
[1400102]={ [1400102]={
["name"]="꽃나무 티아라,진주 티아라,불 무늬 티아라,밝은 달 티아라,빛나는 봉황 티아라,최고의 매력 왕관" ["name"]="거친 강철 마스크,정교한 강철 마스크,어둠의 노블 왕관,용맹의 왕관,용의 뿔로 만든 왕관,화려한 영원의 왕관"
}, },
[1400103]={ [1400103]={
["name"]="부드러운 가죽 내복,옥 장식 로브,보라색 실크 원단,엠버 컬러 옷,봉황 깃털 로브,존귀한 별 로브" ["name"]="두꺼운 니트 두루마기,얇은 강철 갑옷,검은 빛을 띤 무거운 중갑,강자의 옥 갑옷,용비늘 황금 투구,영원의 중갑"
}, },
[1400104]={ [1400104]={
["name"]="심플한 자수 벨트,우아한 허리띠,진주 자수 벨트,별빛 영광의 벨트,봉황의 눈빛 허리띠,존귀한 불멸의 벨트" ["name"]="가죽 벨트,검은 황금 허리띠,기사의 벨트,용의 힘줄 허리띠,영원의 허리띠 장식,브론즈 팔찌"
}, },
[1400105]={ [1400105]={
["name"]="보라색 아이언 팔찌,베일 건틀릿,화려한 황금 건틀릿,스텔라 건틀릿,봉황의 뼈 건틀릿,존귀한 영광의 아머" ["name"]="브론즈 팔찌,가죽 손목 밴드,철의 심장 손목 밴드,영웅 건틀릿,용수염 아대,영원의 아대"
}, },
[1400201]={ [1400201]={
["name"]="고양이 펀치,손톱 세운 고양이 펀치,브론즈 고양이 펀치,거친 고양이 펀치,무시무시한 고양이 펀치,행운의 신이 내린 축복" ["name"]="고양이 펀치,손톱 세운 고양이 펀치,브론즈 고양이 펀치,거친 고양이 펀치,무시무시한 고양이 펀치,행운의 신이 내린 축복"

View File

@ -447,24 +447,6 @@ local localization_global =
["ACT_DESC_12"] = "LV", ["ACT_DESC_12"] = "LV",
["ARENA_DESC_35"] = "행운의 신이 당신에게 미소 짓는다면 <color=#ff8bf8>에픽</color> 품질을 손에 넣을 수도 있습니다~", ["ARENA_DESC_35"] = "행운의 신이 당신에게 미소 짓는다면 <color=#ff8bf8>에픽</color> 품질을 손에 넣을 수도 있습니다~",
["ARENA_DESC_36"] = "시도해보기", ["ARENA_DESC_36"] = "시도해보기",
["ONE_KEY_GET_DESC"] = "모두 받기",
["ACTIVITY_OVER_EDSC"] = "이벤트가 종료되었습니다.",
["PART_IN_DESC"] = "참여",
["HERO_FUND_DESCC_1"] = "새로운 이벤트 달의 축복이 시작됩니다.",
["HERO_FUND_DESCC_2"] = "달의 축복",
["HERO_FUND_DESCC_3"] = "달의 축복을 받게 되면 전투에서 클리어한 웨이브를 누적하여 푸짐한 보상을 받을 수 있습니다.",
["HERO_FUND_DESCC_4"] = "신규 이벤트 고급 도전 오픈",
["ARENA_DESC_37"] = "영웅 잠금 해제:",
["ARENA_DESC_38"] = "잠금 해제된 영웅:",
["ARENA_DESC_39"] = "승급 보상은 일회성 보상입니다.",
["ARENA_DESC_40"] = "승급 보상",
["ARENA_DESC_41"] = "정산 보상",
["ARENA_DESC_42"] = "미수령 보상",
["EQUIP_DESC_26"] = "무기 {0}레벨 업그레이드 패키지",
["EQUIP_DESC_27"] = "방어구 {0}레벨 업그레이드 패키지",
["SEIZED_DESC_1"] = "계정에 이상이 발견되었습니다. 문제 해결을 위해 고객 서비스에 문의하거나 계정을 삭제하시고 새 계정을 사용하여 게임을 계속 진행하시기 바랍니다.",
["SEIZED_DESC_2"] = "고객 서비스 문의",
["SEIZED_DESC_3"] = "계정 삭제",
} }
return localization_global return localization_global

View File

@ -186,6 +186,12 @@ local item = {
[47]={ [47]={
["name"]="랜덤의 에픽 영웅", ["name"]="랜덤의 에픽 영웅",
["desc"]="일괄 획득 시 다음 영웅 중 한 명만 무작위로 선택됩니다." ["desc"]="일괄 획득 시 다음 영웅 중 한 명만 무작위로 선택됩니다."
},
[51]={
},
[52]={
}, },
[1001]={ [1001]={
["name"]="알렌데 운석", ["name"]="알렌데 운석",
@ -445,6 +451,6 @@ local item = {
} }
} }
local config = { local config = {
data=item,count=111 data=item,count=113
} }
return config return config

View File

@ -42,7 +42,7 @@ local skill = {
["desc"]="유성과 달의 숨바꼭질: 사용 후, 이번 공격 대미지가 상승하며 엄청난 양의 스킬 피해를 한 번 입힙니다." ["desc"]="유성과 달의 숨바꼭질: 사용 후, 이번 공격 대미지가 상승하며 엄청난 양의 스킬 피해를 한 번 입힙니다."
}, },
[3400220]={ [3400220]={
["desc"]="아름다운 악몽: 추가로 대량의 스킬 피해를 한 번 입히며 50% 확률로 <color=#3cff28>1</color>턴 동안 <color=#3cff28><color=#fcb501><u>수면</u></color> 효과를 부여합니다." ["desc"]="아름다운 악몽: 추가로 대량의 스킬 피해를 한 번 입히며 50% 확률로 <color=#3cff28>2</color>턴 동안 <color=#3cff28><color=#fcb501><u>수면</u></color> 효과를 부여합니다."
}, },
[4200120]={ [4200120]={
["desc"]="원소 연결: 무작위로 <color=#3cff28>3</color>개의 원소를 소멸하고 스킬 피해를 한 번 입힙니다." ["desc"]="원소 연결: 무작위로 <color=#3cff28>3</color>개의 원소를 소멸하고 스킬 피해를 한 번 입힙니다."

View File

@ -468,7 +468,7 @@ local skill_rogue = {
["desc"]="유성과 달의 숨바꼭질이 <color=#3cff28>4</color>개 또는 그 이상의 원소를 연결하면 스킬 공격을 <color=#3cff28>2</color>번 방출합니다." ["desc"]="유성과 달의 숨바꼭질이 <color=#3cff28>4</color>개 또는 그 이상의 원소를 연결하면 스킬 공격을 <color=#3cff28>2</color>번 방출합니다."
}, },
[3400200]={ [3400200]={
["desc"]="아름다운 악몽 잠금 해제: 추가로 대량의 스킬 피해를 한 번 입히며 50% 확률로 <color=#3cff28>1</color>턴 동안 <color=#3cff28> 수면</color>효과를 부여합니다." ["desc"]="아름다운 악몽 잠금 해제: 추가로 대량의 스킬 피해를 한 번 입히며 50% 확률로 <color=#3cff28>2</color>턴 동안 <color=#3cff28> 수면</color>효과를 부여합니다."
}, },
[3400201]={ [3400201]={
["desc"]="아름다운 악몽이 X 방향을 따라 추가로 <color=#3cff28>4</color>개의 그리드를 소멸합니다." ["desc"]="아름다운 악몽이 X 방향을 따라 추가로 <color=#3cff28>4</color>개의 그리드를 소멸합니다."
@ -480,7 +480,7 @@ local skill_rogue = {
["desc"]="아름다운 악몽이 X 방향을 따라 추가로 <color=#3cff28>4</color>개의 그리드를 소멸할 수 있습니다." ["desc"]="아름다운 악몽이 X 방향을 따라 추가로 <color=#3cff28>4</color>개의 그리드를 소멸할 수 있습니다."
}, },
[3400204]={ [3400204]={
["desc"]="아름다운 악몽이 <color=#3cff28>수면</color> 효과를 부여하는 확률이 <color=#3cff28>80%</color>로 증가하고 턴 횟수 <color=#3cff28>+1</color>" ["desc"]="아름다운 악몽이 <color=#3cff28>수면</color> 효과를 부여할 확률이 <color=#3cff28>80%</color>로 증가합니다."
}, },
[3400205]={ [3400205]={
["desc"]="<color=#fcff28>Combo</color>:인큐버스의 일반 공격이 <color=#3cff28>2</color>턴 동안 <color=#3cff28>수면</color> 상태의 적에게 <color=#3cff28>속박</color> 효과를 부여합니다." ["desc"]="<color=#fcff28>Combo</color>:인큐버스의 일반 공격이 <color=#3cff28>2</color>턴 동안 <color=#3cff28>수면</color> 상태의 적에게 <color=#3cff28>속박</color> 효과를 부여합니다."

View File

@ -11,9 +11,6 @@ local skin = {
[14001]={ [14001]={
["value"]="초기" ["value"]="초기"
}, },
[1400101]={
["value"]="유적 갑옷"
},
[14002]={ [14002]={
["value"]="초기" ["value"]="초기"
}, },
@ -106,6 +103,6 @@ local skin = {
} }
} }
local config = { local config = {
data=skin,count=35 data=skin,count=34
} }
return config return config

View File

@ -0,0 +1,141 @@
local act_fourteen_quest = {
[1]={
},
[2]={
},
[3]={
},
[4]={
},
[5]={
},
[6]={
},
[7]={
},
[8]={
},
[9]={
},
[10]={
},
[11]={
},
[12]={
},
[13]={
},
[14]={
},
[15]={
},
[16]={
},
[17]={
},
[18]={
},
[19]={
},
[20]={
},
[21]={
},
[22]={
},
[23]={
},
[24]={
},
[25]={
},
[26]={
},
[27]={
},
[28]={
},
[29]={
},
[30]={
},
[31]={
},
[32]={
},
[33]={
},
[34]={
},
[35]={
},
[36]={
},
[37]={
},
[38]={
},
[39]={
},
[40]={
},
[41]={
},
[42]={
},
[43]={
},
[44]={
},
[45]={
}
}
local config = {
data=act_fourteen_quest,count=45
}
return config

View File

@ -0,0 +1,10 @@
fileFormatVersion: 2
guid: 4ea92f25a1e4d6a4599d234454118c1e
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}

View File

@ -48,16 +48,16 @@ local equip = {
["name"]="Martelo Poderoso,Martelo do Combatente,Martelo do Meteoro Gigante,Martelo do Exército Quebrado,Martelo Quebra-alma,Meteorito" ["name"]="Martelo Poderoso,Martelo do Combatente,Martelo do Meteoro Gigante,Martelo do Exército Quebrado,Martelo Quebra-alma,Meteorito"
}, },
[1400102]={ [1400102]={
["name"]="Coroa de Flor Comum,Tiara de Pérola,Tiara de Ouro Tece-chamas,Coroa de Jade da Lua Clara,Coroa Estrelada da Fênix,Coroa Encantadora da Supremacia" ["name"]="Máscara de Aço Grosso,Elmo de Aço Refinado,Coroa de Obsidiana,Coroa da Valentia,Coroa do Chifre do Dragão,Coroa Majestosa da Eternidade"
}, },
[1400103]={ [1400103]={
["name"]="Vestimenta Interna de Couro Flexível,Túnica Adornada com Jade,Cetim e Gaza Roxa,Vestimenta de Âmbar,Traje Majestoso de Pena de Fênix,Túnica Estrelada da Supremacia" ["name"]="Túnica Grossa,Cota de Anéis de Aço Fino,Armadura Pesada de Ferro Negro,Armadura de Jade do Valente,Couraça Dourada de Escamas de Dragão,Armadura Pesada da Eternidade"
}, },
[1400104]={ [1400104]={
["name"]="Faixa Bordada Simples,Cinta Elegante,Faixa Bordada de Pérola,Cinto da Luz Estelar,Cinta do Olhar da Fênix,Cordão Celestial da Supremacia" ["name"]="Cinto de Couro,Cinto de Ouro Negro,Cinto do Cavaleiro,Cinta de Tendão de Dragão,Corrente de Cintura da Eternidade,Pulseira de Cobre"
}, },
[1400105]={ [1400105]={
["name"]="Pulseira de Ferro Roxo,Manoplas de Musselina,Manoplas Adornados de Ouro,Manoplas das Estrelas,Manoplas do Osso da Fênix,Manoplas da Supremacia" ["name"]="Pulseira de Cobre,Braceletes de Couro,Braceletes de Coração de Ferro,Manoplas do Herói,Braceletes do Bigode do Dragão,Pulseiras da Eternidade"
}, },
[1400201]={ [1400201]={
["name"]="Punho de Gato,Punho de Gato Espinhoso,Punho de Gato de Aço Azul,Punho de Gato Rasgador,Punho de Gato Rompe-céus,Força do Deus da Fortuna" ["name"]="Punho de Gato,Punho de Gato Espinhoso,Punho de Gato de Aço Azul,Punho de Gato Rasgador,Punho de Gato Rompe-céus,Força do Deus da Fortuna"

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