Merge branch 'master' into dev_20230919
This commit is contained in:
commit
b7997bb181
@ -362,6 +362,23 @@ function table.shuffle(t)
|
||||
return tab
|
||||
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)
|
||||
if not t then
|
||||
return
|
||||
|
||||
@ -140,6 +140,16 @@ BIReport.ITEM_GET_TYPE = {
|
||||
OFFLINE_RECOVERY = "OfflineRecovery",
|
||||
ACT_SUMMER = "ActSummer",
|
||||
ACT_HERO_FUND = "ActHeroFund",
|
||||
ACT_BOSS_RUSH_FIGHT_START = "ActBossRushFightStart",
|
||||
ACT_BOSS_RUSH_FIGHT = "ActBossRushFight",
|
||||
ACT_BOSS_RUSH_FUND = "ActBossRushFund",
|
||||
ACT_BOSS_RUSH_SHOP = "ActBossRushShop",
|
||||
ACT_BOSS_RUSH_RANK = "ActBossRushRank",
|
||||
ACT_BOSS_RUSH_BUY_FUND = "ActBossRushBuyFund",
|
||||
ACT_FOURTEEN_DAY_BOUNTY = "ActFourteenDayBounty",
|
||||
ACT_FOURTEEN_DAY_TASK = "ActFourteenDayTask",
|
||||
ACT_FOURTEEN_DAY_EXCHANGE = "ActFourteenDayExchange",
|
||||
FOURTEEN_DAY_GIFT = "FourteenDayGift",
|
||||
}
|
||||
|
||||
BIReport.ADS_CLICK_TYPE = {
|
||||
@ -188,6 +198,7 @@ BIReport.BATTLE_TYPE = {
|
||||
["5"] = "Arena",
|
||||
["6"] = "DungeonWeapon",
|
||||
["7"] = "DungeonArmor",
|
||||
["8"] = "ActBossRush",
|
||||
}
|
||||
|
||||
BIReport.GIFT_TYPE = {
|
||||
@ -208,7 +219,8 @@ BIReport.GIFT_TYPE = {
|
||||
WEAPON_GIFT = "WeaponGift",
|
||||
ARMOR_GIFT = "ArmorGift",
|
||||
ACT_SUMMER = "ActSummer",
|
||||
ACT_HERO_FUND = "ActHeroFund"
|
||||
ACT_HERO_FUND = "ActHeroFund",
|
||||
FOURTEEN_DAY_GIFT = "FourteenDayGift",
|
||||
}
|
||||
|
||||
BIReport.COIN_TYPE = {
|
||||
@ -950,6 +962,11 @@ function BIReport:postFightBegin(battleType, wave, chapterId, maxChapter, startT
|
||||
fight_max_chapter = maxChapter,
|
||||
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()
|
||||
self:report(EVENT_NAME_FIGHT, args)
|
||||
end
|
||||
@ -988,6 +1005,11 @@ function BIReport:postFightEnd(battleType, battleData, chapterId, wave, duration
|
||||
is_first_win = isFirstWin,
|
||||
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.max_link_count = maxLinkCount
|
||||
@ -1020,6 +1042,11 @@ function BIReport:postShowFightSkillSelect(battleType, battleData, skillList, ch
|
||||
skill = skillStr,
|
||||
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)
|
||||
end
|
||||
|
||||
@ -1048,6 +1075,11 @@ function BIReport:postFightSkillSelect(battleType, battleData, skillList, chapte
|
||||
skill = skillStr,
|
||||
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)
|
||||
end
|
||||
|
||||
|
||||
@ -115,6 +115,7 @@ function ConfigManager:preLoadConfig()
|
||||
handleMonsterGrow("monster_dungeon_shards")
|
||||
handleMonsterGrow("monster_dungeon_equip")
|
||||
handleMonsterGrow("monster_dungeon_armor")
|
||||
handleMonsterGrow("monster_activity")
|
||||
|
||||
self.configs["monster"] = {
|
||||
data = monsterFullData,
|
||||
|
||||
@ -34,6 +34,8 @@ function DataManager:init()
|
||||
self:initManager("SummonData", "app/userdata/summon/summon_data")
|
||||
self:initManager("AIHelperData", "app/userdata/game_setting/ai_helper_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")
|
||||
self:initManager("FourteenDayData", "app/userdata/activity/fourteen_day/fourteen_day_data")
|
||||
end
|
||||
|
||||
function DataManager:initManager(name, path)
|
||||
@ -120,8 +122,11 @@ function DataManager:clear()
|
||||
self.TaskData:clear()
|
||||
self.AIHelperData:clear()
|
||||
self.HeroFundData:clear()
|
||||
self.ActBossRushData:clear()
|
||||
self.FourteenDayData:clear()
|
||||
ModuleManager.TaskManager:clear()
|
||||
self:clearTryOpenFunc()
|
||||
self.activityBountyLevelMap = nil
|
||||
end
|
||||
|
||||
function DataManager:initWithServerData(data)
|
||||
@ -133,6 +138,7 @@ function DataManager:initWithServerData(data)
|
||||
if EDITOR_MODE then
|
||||
Logger.logHighlight("initWithServerData")
|
||||
Logger.printTable(data)
|
||||
Logger.logHighlight("注册时间 : " .. Time:formatTimeYMDHMS(GFunc.formatTimeStep(data.stat.register_ts)))
|
||||
end
|
||||
self.registerTs = data.stat and data.stat.register_ts or Time:getServerTime()
|
||||
self.registerTs = GFunc.formatTimeStep(self.registerTs or Time:getServerTime())
|
||||
@ -181,6 +187,7 @@ function DataManager:initWithServerData(data)
|
||||
self.GrowthFundData:init(data.fund.funds)
|
||||
end
|
||||
self.HeroFundData:init(data.hero_fund)
|
||||
self.FourteenDayData:init(data.fourteen_bounty)
|
||||
|
||||
-- 任务数据最后初始化,依赖其他模块的数据
|
||||
self.TaskData:init()
|
||||
@ -188,6 +195,7 @@ function DataManager:initWithServerData(data)
|
||||
self:checkDataBind()
|
||||
ModuleManager.ArenaManager:reqArenaInfo()
|
||||
|
||||
self:dealOpenActivity(data.activities)
|
||||
-- 写在最后,防止某些数据还未初始化,就被bi访问报错
|
||||
self.initWithServer = true
|
||||
end
|
||||
@ -409,4 +417,78 @@ function DataManager:getManager(name, path)
|
||||
return self[name]
|
||||
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
|
||||
|
||||
---- 缓存一下活动兑换商店
|
||||
function DataManager:getActivityExchangeByActId(actId)
|
||||
if not self.activityExchangeMap then
|
||||
self.activityExchangeMap = {}
|
||||
local cfg = ConfigManager:getConfig("activity_exchange")
|
||||
for id, info in pairs(cfg) do
|
||||
if info.activity then
|
||||
if not self.activityExchangeMap[info.activity] then
|
||||
self.activityExchangeMap[info.activity] = {}
|
||||
end
|
||||
table.insert(self.activityExchangeMap[info.activity], id)
|
||||
end
|
||||
end
|
||||
end
|
||||
Logger.printTable(self.activityExchangeMap)
|
||||
return self.activityExchangeMap[actId]
|
||||
end
|
||||
|
||||
function DataManager:dealOpenActivity(activityInfo)
|
||||
local curTime = Time:getServerTime()
|
||||
if not activityInfo then
|
||||
return
|
||||
end
|
||||
|
||||
local dealTypeMap = {}
|
||||
for _, info in ipairs(activityInfo) do
|
||||
local startTime = GFunc.formatTimeStep(info.start_at)
|
||||
if startTime <= curTime and curTime <= GFunc.formatTimeStep(info.end_at) then
|
||||
local reqFunc = DataManager.activityOpenFunc[info.type]
|
||||
if reqFunc and not dealTypeMap[info.type] then
|
||||
dealTypeMap[info.type] = true
|
||||
reqFunc(info)
|
||||
end
|
||||
elseif startTime > curTime then
|
||||
local waitOpenFunc = DataManager.waitOpenActivity[info.type]
|
||||
if waitOpenFunc and not dealTypeMap[info.type] then
|
||||
dealTypeMap[info.type] = true
|
||||
waitOpenFunc(info)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
DataManager.activityOpenFunc = {
|
||||
[2] = function(params)
|
||||
ModuleManager.ActBossRushManager:reqActData()
|
||||
DataManager.ActBossRushData:setActivityInfo(params)
|
||||
end
|
||||
}
|
||||
|
||||
DataManager.waitOpenActivity = {
|
||||
[2] = function(params)
|
||||
DataManager.ActBossRushData:init({activity_id = params.id}) -- 默认初始化
|
||||
DataManager.ActBossRushData:setActivityInfo(params)
|
||||
end
|
||||
}
|
||||
|
||||
return DataManager
|
||||
@ -40,6 +40,9 @@ local LOCAL_DATA_KEY = {
|
||||
BATTLE_SNAPSHOT = "BATTLE_SNAPSHOT",
|
||||
ACTIVITY_SUMMER_TODAY_SKIN = "ACTIVITY_SUMMER_TODAY_SKIN",
|
||||
ACTIVITY_SUMMER_TODAY_HERO = "ACTIVITY_SUMMER_TODAY_HERO",
|
||||
NOT_POP_TODAY = "NOT_POP_TODAY",
|
||||
FOURTEEN_DAY_TODAY_EXCHANGE = "FOURTEEN_DAY_TODAY_EXCHANGE",
|
||||
ACT_BOSS_RUSH_EXCHANGE = "ACT_BOSS_RUSH_EXCHANGE",
|
||||
}
|
||||
|
||||
LocalData.KEYS = LOCAL_DATA_KEY
|
||||
@ -465,4 +468,28 @@ function LocalData:recordTodayActSummerWatchedHero()
|
||||
self:setInt(LOCAL_DATA_KEY.ACTIVITY_SUMMER_TODAY_HERO .. Time:getBeginningOfServerToday(), 1)
|
||||
end
|
||||
|
||||
function LocalData:setNotPopToday(customKey)
|
||||
self:setInt(LOCAL_DATA_KEY.NOT_POP_TODAY .. customKey, Time:getBeginningOfServerToday())
|
||||
end
|
||||
|
||||
function LocalData:getNotPopToday(customKey)
|
||||
return self:getInt(LOCAL_DATA_KEY.NOT_POP_TODAY .. customKey, 0)
|
||||
end
|
||||
|
||||
function LocalData:getTodayFourteenDayExchangeWatched()
|
||||
return self:getInt(LOCAL_DATA_KEY.FOURTEEN_DAY_TODAY_EXCHANGE .. Time:getBeginningOfServerToday(), 0) == 1
|
||||
end
|
||||
|
||||
function LocalData:recordTodayFourteenDayExchangeWatched()
|
||||
self:setInt(LOCAL_DATA_KEY.FOURTEEN_DAY_TODAY_EXCHANGE .. Time:getBeginningOfServerToday(), 1)
|
||||
end
|
||||
|
||||
function LocalData:getTodayBossRushExchangeWatched()
|
||||
return self:getInt(LOCAL_DATA_KEY.ACT_BOSS_RUSH_EXCHANGE, 0)
|
||||
end
|
||||
|
||||
function LocalData:recordTodayBossRushExchangeWatched()
|
||||
self:setInt(LOCAL_DATA_KEY.ACT_BOSS_RUSH_EXCHANGE, Time:getBeginningOfServerToday())
|
||||
end
|
||||
|
||||
return LocalData
|
||||
@ -71,6 +71,10 @@ local MODULE_PATHS = {
|
||||
SkinManager = "app/module/skin/skin_manager",
|
||||
-- 英雄基金
|
||||
HeroFundManager = "app/module/activity/hero_fund/hero_fund_manager",
|
||||
-- 世界首领活动
|
||||
ActBossRushManager = "app/module/activity/act_boss_rush/act_boss_rush_manager",
|
||||
-- 新手14天乐
|
||||
FourteenDayManager = "app/module/activity/fourteen_day/fourteen_day_manager",
|
||||
}
|
||||
|
||||
-- 这里的key对应func_open里的id
|
||||
|
||||
@ -26,6 +26,7 @@ PayManager.PURCHARSE_ACT_TYPE = {
|
||||
ACT_HERO_FUND = 14,
|
||||
WEAPON_UPGRADE_GIFT = 15,
|
||||
ARMOR_UPGRADE_GIFT = 16,
|
||||
FOURTEEN_DAY_GIFT = 17,
|
||||
}
|
||||
|
||||
PayManager.PURCHARSE_TYPE_CONFIG = {
|
||||
@ -54,6 +55,7 @@ PayManager.BI_ITEM_GET_TYPE = {
|
||||
[PayManager.PURCHARSE_ACT_TYPE.ACT_HERO_FUND] = BIReport.ITEM_GET_TYPE.ACT_HERO_FUND,
|
||||
[PayManager.PURCHARSE_ACT_TYPE.WEAPON_UPGRADE_GIFT] = BIReport.ITEM_GET_TYPE.WEAPON_GIFT,
|
||||
[PayManager.PURCHARSE_ACT_TYPE.ARMOR_UPGRADE_GIFT] = BIReport.ITEM_GET_TYPE.ARMOR_GIFT,
|
||||
[PayManager.PURCHARSE_ACT_TYPE.FOURTEEN_DAY_GIFT] = BIReport.ITEM_GET_TYPE.FOURTEEN_DAY_GIFT,
|
||||
},
|
||||
[PayManager.PURCHARSE_TYPE.ACT_GOLD_PIG] = BIReport.ITEM_GET_TYPE.GOLD_PIG,
|
||||
[PayManager.PURCHARSE_TYPE.MALL_TREASURE] = BIReport.ITEM_GET_TYPE.MALL_TREASURE,
|
||||
@ -79,6 +81,7 @@ PayManager.BI_GIFT_TYPE = {
|
||||
[PayManager.PURCHARSE_ACT_TYPE.ACT_HERO_FUND] = BIReport.ITEM_GET_TYPE.ACT_HERO_FUND,
|
||||
[PayManager.PURCHARSE_ACT_TYPE.WEAPON_UPGRADE_GIFT] = BIReport.GIFT_TYPE.WEAPON_GIFT,
|
||||
[PayManager.PURCHARSE_ACT_TYPE.ARMOR_UPGRADE_GIFT] = BIReport.GIFT_TYPE.ARMOR_GIFT,
|
||||
[PayManager.PURCHARSE_ACT_TYPE.FOURTEEN_DAY_GIFT] = BIReport.GIFT_TYPE.FOURTEEN_DAY_GIFT,
|
||||
},
|
||||
[PayManager.PURCHARSE_TYPE.ACT_GOLD_PIG] = BIReport.GIFT_TYPE.GOLD_PIG,
|
||||
[PayManager.PURCHARSE_TYPE.MALL_TREASURE] = BIReport.GIFT_TYPE.MALL_TREASURE,
|
||||
|
||||
@ -22,6 +22,7 @@ function ServerPushManager:initWhenLogin()
|
||||
self:addServerPushListener(ProtoMsgType.FromMsgEnum.MallDailyResetNtf, ModuleManager.ShopManager, ModuleManager.ShopManager.onMallDailyReset)
|
||||
self:addServerPushListener(ProtoMsgType.FromMsgEnum.AIHelpUnreadNtf, ModuleManager.GameSettingManager, ModuleManager.GameSettingManager.rspAiHelperNtf)
|
||||
self:addServerPushListener(ProtoMsgType.FromMsgEnum.RecoveryNtf, ModuleManager.ItemManager, ModuleManager.ItemManager.rspRecoveryNtf)
|
||||
self:addServerPushListener(ProtoMsgType.FromMsgEnum.BossRushBoughtNtf, ModuleManager.ActBossRushManager, ModuleManager.ActBossRushManager.rspBossRushBoughtNtf)
|
||||
end
|
||||
|
||||
---- 移除全局推送监听
|
||||
|
||||
@ -5,6 +5,7 @@ local WhiteResManager = {}
|
||||
local GAME_RES_WHITE_LIST = {
|
||||
-- ui
|
||||
GConst.ATLAS_PATH.COMMON,
|
||||
GConst.ATLAS_PATH.ACT_COMMON,
|
||||
-- icon
|
||||
GConst.ATLAS_PATH.ICON_SKILL,
|
||||
GConst.ATLAS_PATH.ICON_SKILL_BIG,
|
||||
|
||||
150
lua/app/config/act_fourteen_bounty.lua
Normal file
150
lua/app/config/act_fourteen_bounty.lua
Normal file
@ -0,0 +1,150 @@
|
||||
local act_fourteen_bounty = {
|
||||
[1]={
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=1,
|
||||
["id_for_nothing"]="Vw==",
|
||||
["num"]=8000,
|
||||
["num_for_nothing"]="XghcAw=="
|
||||
},
|
||||
["reward_pro"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=14001,
|
||||
["id_for_nothing"]="VwxcA2Q=",
|
||||
["num"]=3,
|
||||
["num_for_nothing"]="VQ=="
|
||||
}
|
||||
},
|
||||
[2]={
|
||||
["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"]=60,
|
||||
["num_for_nothing"]="UAg="
|
||||
}
|
||||
},
|
||||
[3]={
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=14001,
|
||||
["id_for_nothing"]="VwxcA2Q=",
|
||||
["num"]=1,
|
||||
["num_for_nothing"]="Vw=="
|
||||
},
|
||||
["reward_pro"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=14001,
|
||||
["id_for_nothing"]="VwxcA2Q=",
|
||||
["num"]=3,
|
||||
["num_for_nothing"]="VQ=="
|
||||
}
|
||||
},
|
||||
[4]={
|
||||
["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=="
|
||||
}
|
||||
},
|
||||
[5]={
|
||||
["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"]=14001,
|
||||
["id_for_nothing"]="VwxcA2Q=",
|
||||
["num"]=3,
|
||||
["num_for_nothing"]="VQ=="
|
||||
}
|
||||
},
|
||||
[6]={
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=3,
|
||||
["id_for_nothing"]="VQ==",
|
||||
["num"]=30,
|
||||
["num_for_nothing"]="VQg="
|
||||
},
|
||||
["reward_pro"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=3,
|
||||
["id_for_nothing"]="VQ==",
|
||||
["num"]=60,
|
||||
["num_for_nothing"]="UAg="
|
||||
}
|
||||
},
|
||||
[7]={
|
||||
["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"]=14001,
|
||||
["id_for_nothing"]="VwxcA2Q=",
|
||||
["num"]=3,
|
||||
["num_for_nothing"]="VQ=="
|
||||
}
|
||||
},
|
||||
[8]={
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=14001,
|
||||
["id_for_nothing"]="VwxcA2Q=",
|
||||
["num"]=1,
|
||||
["num_for_nothing"]="Vw=="
|
||||
},
|
||||
["reward_pro"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=14001,
|
||||
["id_for_nothing"]="VwxcA2Q=",
|
||||
["num"]=3,
|
||||
["num_for_nothing"]="VQ=="
|
||||
}
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=act_fourteen_bounty,count=8
|
||||
}
|
||||
return config
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 07151d06bce0c5e488135947541210e0
|
||||
guid: 98e6ac4cce3094f4ca2032007239b1f9
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
306
lua/app/config/act_fourteen_exchange.lua
Normal file
306
lua/app/config/act_fourteen_exchange.lua
Normal file
@ -0,0 +1,306 @@
|
||||
local act_fourteen_exchange = {
|
||||
[1]={
|
||||
["stage"]=1,
|
||||
["cost"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=1000,
|
||||
["num_for_nothing"]="VwhcAw=="
|
||||
},
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=44002,
|
||||
["id_for_nothing"]="UgxcA2c=",
|
||||
["num"]=3,
|
||||
["num_for_nothing"]="VQ=="
|
||||
},
|
||||
["limit"]=10
|
||||
},
|
||||
[2]={
|
||||
["stage"]=1,
|
||||
["cost"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=750,
|
||||
["num_for_nothing"]="UQ1c"
|
||||
},
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=24001,
|
||||
["id_for_nothing"]="VAxcA2Q=",
|
||||
["num"]=3,
|
||||
["num_for_nothing"]="VQ=="
|
||||
},
|
||||
["limit"]=10
|
||||
},
|
||||
[3]={
|
||||
["stage"]=1,
|
||||
["cost"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=750,
|
||||
["num_for_nothing"]="UQ1c"
|
||||
},
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=34001,
|
||||
["id_for_nothing"]="VQxcA2Q=",
|
||||
["num"]=3,
|
||||
["num_for_nothing"]="VQ=="
|
||||
},
|
||||
["limit"]=10
|
||||
},
|
||||
[4]={
|
||||
["stage"]=1,
|
||||
["cost"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=750,
|
||||
["num_for_nothing"]="UQ1c"
|
||||
},
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=54003,
|
||||
["id_for_nothing"]="UwxcA2Y=",
|
||||
["num"]=3,
|
||||
["num_for_nothing"]="VQ=="
|
||||
},
|
||||
["limit"]=10
|
||||
},
|
||||
[5]={
|
||||
["stage"]=1,
|
||||
["cost"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=800,
|
||||
["num_for_nothing"]="Xghc"
|
||||
},
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=15,
|
||||
["id_for_nothing"]="Vw0=",
|
||||
["num"]=1,
|
||||
["num_for_nothing"]="Vw=="
|
||||
},
|
||||
["limit"]=3
|
||||
},
|
||||
[6]={
|
||||
["stage"]=1,
|
||||
["cost"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=300,
|
||||
["num_for_nothing"]="VQhc"
|
||||
},
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=14,
|
||||
["id_for_nothing"]="Vww=",
|
||||
["num"]=1,
|
||||
["num_for_nothing"]="Vw=="
|
||||
},
|
||||
["limit"]=3
|
||||
},
|
||||
[7]={
|
||||
["stage"]=1,
|
||||
["cost"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=40,
|
||||
["num_for_nothing"]="Ugg="
|
||||
},
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=1002,
|
||||
["id_for_nothing"]="VwhcAQ==",
|
||||
["num"]=10,
|
||||
["num_for_nothing"]="Vwg="
|
||||
},
|
||||
["limit"]=10
|
||||
},
|
||||
[8]={
|
||||
["stage"]=1,
|
||||
["cost"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=50,
|
||||
["num_for_nothing"]="Uwg="
|
||||
},
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=1003,
|
||||
["id_for_nothing"]="VwhcAA==",
|
||||
["num"]=10,
|
||||
["num_for_nothing"]="Vwg="
|
||||
},
|
||||
["limit"]=10
|
||||
},
|
||||
[9]={
|
||||
["stage"]=1,
|
||||
["cost"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=60,
|
||||
["num_for_nothing"]="UAg="
|
||||
},
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=1004,
|
||||
["id_for_nothing"]="VwhcBw==",
|
||||
["num"]=10,
|
||||
["num_for_nothing"]="Vwg="
|
||||
},
|
||||
["limit"]=10
|
||||
},
|
||||
[10]={
|
||||
["stage"]=1,
|
||||
["cost"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=80,
|
||||
["num_for_nothing"]="Xgg="
|
||||
},
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=39,
|
||||
["id_for_nothing"]="VQE=",
|
||||
["num"]=10,
|
||||
["num_for_nothing"]="Vwg="
|
||||
},
|
||||
["limit"]=10
|
||||
},
|
||||
[11]={
|
||||
["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"]=40,
|
||||
["id_for_nothing"]="Ugg=",
|
||||
["num"]=10,
|
||||
["num_for_nothing"]="Vwg="
|
||||
},
|
||||
["limit"]=10
|
||||
},
|
||||
[12]={
|
||||
["stage"]=1,
|
||||
["cost"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=120,
|
||||
["num_for_nothing"]="Vwpc"
|
||||
},
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=41,
|
||||
["id_for_nothing"]="Ugk=",
|
||||
["num"]=10,
|
||||
["num_for_nothing"]="Vwg="
|
||||
},
|
||||
["limit"]=10
|
||||
},
|
||||
[13]={
|
||||
["stage"]=1,
|
||||
["cost"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=10,
|
||||
["num_for_nothing"]="Vwg="
|
||||
},
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=3,
|
||||
["id_for_nothing"]="VQ==",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
},
|
||||
["limit"]=10
|
||||
},
|
||||
[14]={
|
||||
["stage"]=1,
|
||||
["cost"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=5,
|
||||
["num_for_nothing"]="Uw=="
|
||||
},
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=1,
|
||||
["id_for_nothing"]="Vw==",
|
||||
["num"]=200,
|
||||
["num_for_nothing"]="VAhc"
|
||||
},
|
||||
["limit"]=999
|
||||
},
|
||||
[15]={
|
||||
["stage"]=1,
|
||||
["cost"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=20,
|
||||
["num_for_nothing"]="VAg="
|
||||
},
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=13,
|
||||
["id_for_nothing"]="Vws=",
|
||||
["num"]=1,
|
||||
["num_for_nothing"]="Vw=="
|
||||
},
|
||||
["limit"]=999
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=act_fourteen_exchange,count=15
|
||||
}
|
||||
return config
|
||||
10
lua/app/config/act_fourteen_exchange.lua.meta
Normal file
10
lua/app/config/act_fourteen_exchange.lua.meta
Normal file
@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 057f6606cfb30ab43a95c25d2f0639a9
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
|
||||
897
lua/app/config/act_fourteen_quest.lua
Normal file
897
lua/app/config/act_fourteen_quest.lua
Normal file
@ -0,0 +1,897 @@
|
||||
local act_fourteen_quest = {
|
||||
[1]={
|
||||
["stage"]=1,
|
||||
["quest"]=32,
|
||||
["none"]="深渊挑战4",
|
||||
["num"]=4,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=16
|
||||
},
|
||||
[2]={
|
||||
["stage"]=1,
|
||||
["quest"]=23,
|
||||
["none"]="角色升到20级",
|
||||
["num"]=20,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=6
|
||||
},
|
||||
[3]={
|
||||
["stage"]=1,
|
||||
["quest"]=31,
|
||||
["none"]="竞技场达到青铜II",
|
||||
["num"]=1000,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=13
|
||||
},
|
||||
[4]={
|
||||
["stage"]=1,
|
||||
["quest"]=1,
|
||||
["none"]="广告次数累计达8",
|
||||
["num"]=8,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=10
|
||||
},
|
||||
[5]={
|
||||
["stage"]=1,
|
||||
["none"]="完成所有任务",
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=1,
|
||||
["id_for_nothing"]="Vw==",
|
||||
["num"]=8000,
|
||||
["num_for_nothing"]="XghcAw=="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=40,
|
||||
["num_for_nothing"]="Ugg="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=2,
|
||||
["id_for_nothing"]="VA==",
|
||||
["num"]=100,
|
||||
["num_for_nothing"]="Vwhc"
|
||||
}
|
||||
},
|
||||
["icon"]=11
|
||||
},
|
||||
[6]={
|
||||
["stage"]=2,
|
||||
["quest"]=38,
|
||||
["none"]="武器升级15次",
|
||||
["num"]=15,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=22
|
||||
},
|
||||
[7]={
|
||||
["stage"]=2,
|
||||
["quest"]=33,
|
||||
["none"]="时空裂隙1-6",
|
||||
["num"]=6,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=17
|
||||
},
|
||||
[8]={
|
||||
["stage"]=2,
|
||||
["quest"]=37,
|
||||
["none"]="开启主线宝箱36个",
|
||||
["num"]=36,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=21
|
||||
},
|
||||
[9]={
|
||||
["stage"]=2,
|
||||
["quest"]=34,
|
||||
["none"]="矿车拦截5",
|
||||
["num"]=5,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=18
|
||||
},
|
||||
[10]={
|
||||
["stage"]=2,
|
||||
["none"]="完成所有任务",
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=1,
|
||||
["id_for_nothing"]="Vw==",
|
||||
["num"]=8000,
|
||||
["num_for_nothing"]="XghcAw=="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=40,
|
||||
["num_for_nothing"]="Ugg="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=6,
|
||||
["id_for_nothing"]="UA==",
|
||||
["num"]=1,
|
||||
["num_for_nothing"]="Vw=="
|
||||
}
|
||||
},
|
||||
["icon"]=11
|
||||
},
|
||||
[11]={
|
||||
["stage"]=3,
|
||||
["quest"]=35,
|
||||
["none"]="灯神之塔4",
|
||||
["num"]=4,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=19
|
||||
},
|
||||
[12]={
|
||||
["stage"]=3,
|
||||
["quest"]=23,
|
||||
["none"]="角色升到24级",
|
||||
["num"]=24,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=6
|
||||
},
|
||||
[13]={
|
||||
["stage"]=3,
|
||||
["quest"]=32,
|
||||
["none"]="深渊挑战5",
|
||||
["num"]=5,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=16
|
||||
},
|
||||
[14]={
|
||||
["stage"]=3,
|
||||
["quest"]=1,
|
||||
["none"]="广告次数累计达24",
|
||||
["num"]=24,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=10
|
||||
},
|
||||
[15]={
|
||||
["stage"]=3,
|
||||
["none"]="完成所有任务",
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=1,
|
||||
["id_for_nothing"]="Vw==",
|
||||
["num"]=8000,
|
||||
["num_for_nothing"]="XghcAw=="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=40,
|
||||
["num_for_nothing"]="Ugg="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=2,
|
||||
["id_for_nothing"]="VA==",
|
||||
["num"]=100,
|
||||
["num_for_nothing"]="Vwhc"
|
||||
}
|
||||
},
|
||||
["icon"]=11
|
||||
},
|
||||
[16]={
|
||||
["stage"]=4,
|
||||
["quest"]=36,
|
||||
["none"]="每日挑战胜利5次",
|
||||
["num"]=5,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=20
|
||||
},
|
||||
[17]={
|
||||
["stage"]=4,
|
||||
["quest"]=34,
|
||||
["none"]="矿车拦截6",
|
||||
["num"]=6,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=18
|
||||
},
|
||||
[18]={
|
||||
["stage"]=4,
|
||||
["quest"]=33,
|
||||
["none"]="时空裂隙2-6",
|
||||
["num"]=12,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=17
|
||||
},
|
||||
[19]={
|
||||
["stage"]=4,
|
||||
["quest"]=6,
|
||||
["none"]="开启商城宝箱5次",
|
||||
["num"]=5,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=4
|
||||
},
|
||||
[20]={
|
||||
["stage"]=4,
|
||||
["none"]="完成所有任务",
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=1,
|
||||
["id_for_nothing"]="Vw==",
|
||||
["num"]=8000,
|
||||
["num_for_nothing"]="XghcAw=="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=40,
|
||||
["num_for_nothing"]="Ugg="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=6,
|
||||
["id_for_nothing"]="UA==",
|
||||
["num"]=1,
|
||||
["num_for_nothing"]="Vw=="
|
||||
}
|
||||
},
|
||||
["icon"]=11
|
||||
},
|
||||
[21]={
|
||||
["stage"]=5,
|
||||
["quest"]=1,
|
||||
["none"]="广告次数累计达40",
|
||||
["num"]=40,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=10
|
||||
},
|
||||
[22]={
|
||||
["stage"]=5,
|
||||
["quest"]=19,
|
||||
["none"]="通关波次400次",
|
||||
["num"]=400,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=20
|
||||
},
|
||||
[23]={
|
||||
["stage"]=5,
|
||||
["quest"]=35,
|
||||
["none"]="灯神之塔5",
|
||||
["num"]=5,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=19
|
||||
},
|
||||
[24]={
|
||||
["stage"]=5,
|
||||
["quest"]=31,
|
||||
["none"]="竞技场达到白银IV",
|
||||
["num"]=1200,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=14
|
||||
},
|
||||
[25]={
|
||||
["stage"]=5,
|
||||
["none"]="完成所有任务",
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=1,
|
||||
["id_for_nothing"]="Vw==",
|
||||
["num"]=8000,
|
||||
["num_for_nothing"]="XghcAw=="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=40,
|
||||
["num_for_nothing"]="Ugg="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=2,
|
||||
["id_for_nothing"]="VA==",
|
||||
["num"]=100,
|
||||
["num_for_nothing"]="Vwhc"
|
||||
}
|
||||
},
|
||||
["icon"]=11
|
||||
},
|
||||
[26]={
|
||||
["stage"]=6,
|
||||
["quest"]=12,
|
||||
["none"]="击杀BOSS80次",
|
||||
["num"]=80,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=9
|
||||
},
|
||||
[27]={
|
||||
["stage"]=6,
|
||||
["quest"]=32,
|
||||
["none"]="深渊挑战7",
|
||||
["num"]=7,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=16
|
||||
},
|
||||
[28]={
|
||||
["stage"]=6,
|
||||
["quest"]=37,
|
||||
["none"]="开启主线宝箱48个",
|
||||
["num"]=48,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=21
|
||||
},
|
||||
[29]={
|
||||
["stage"]=6,
|
||||
["quest"]=34,
|
||||
["none"]="矿车拦截7",
|
||||
["num"]=7,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=18
|
||||
},
|
||||
[30]={
|
||||
["stage"]=6,
|
||||
["none"]="完成所有任务",
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=1,
|
||||
["id_for_nothing"]="Vw==",
|
||||
["num"]=8000,
|
||||
["num_for_nothing"]="XghcAw=="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=40,
|
||||
["num_for_nothing"]="Ugg="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=6,
|
||||
["id_for_nothing"]="UA==",
|
||||
["num"]=1,
|
||||
["num_for_nothing"]="Vw=="
|
||||
}
|
||||
},
|
||||
["icon"]=11
|
||||
},
|
||||
[31]={
|
||||
["stage"]=7,
|
||||
["quest"]=33,
|
||||
["none"]="时空裂隙3-4",
|
||||
["num"]=16,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=17
|
||||
},
|
||||
[32]={
|
||||
["stage"]=7,
|
||||
["quest"]=36,
|
||||
["none"]="每日挑战胜利10次",
|
||||
["num"]=10,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=20
|
||||
},
|
||||
[33]={
|
||||
["stage"]=7,
|
||||
["quest"]=6,
|
||||
["none"]="开启商城宝箱10次",
|
||||
["num"]=10,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=4
|
||||
},
|
||||
[34]={
|
||||
["stage"]=7,
|
||||
["quest"]=1,
|
||||
["none"]="广告次数累计达56",
|
||||
["num"]=56,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=10
|
||||
},
|
||||
[35]={
|
||||
["stage"]=7,
|
||||
["none"]="完成所有任务",
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=1,
|
||||
["id_for_nothing"]="Vw==",
|
||||
["num"]=8000,
|
||||
["num_for_nothing"]="XghcAw=="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=40,
|
||||
["num_for_nothing"]="Ugg="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=2,
|
||||
["id_for_nothing"]="VA==",
|
||||
["num"]=100,
|
||||
["num_for_nothing"]="Vwhc"
|
||||
}
|
||||
},
|
||||
["icon"]=11
|
||||
},
|
||||
[36]={
|
||||
["stage"]=8,
|
||||
["quest"]=39,
|
||||
["none"]="防具升级40次",
|
||||
["num"]=40,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=23
|
||||
},
|
||||
[37]={
|
||||
["stage"]=8,
|
||||
["quest"]=35,
|
||||
["none"]="灯神之塔7",
|
||||
["num"]=7,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=19
|
||||
},
|
||||
[38]={
|
||||
["stage"]=8,
|
||||
["quest"]=19,
|
||||
["none"]="通关波次700次",
|
||||
["num"]=700,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=20
|
||||
},
|
||||
[39]={
|
||||
["stage"]=8,
|
||||
["quest"]=34,
|
||||
["none"]="矿车拦截8",
|
||||
["num"]=8,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=18
|
||||
},
|
||||
[40]={
|
||||
["stage"]=8,
|
||||
["none"]="完成所有任务",
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=1,
|
||||
["id_for_nothing"]="Vw==",
|
||||
["num"]=8000,
|
||||
["num_for_nothing"]="XghcAw=="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=40,
|
||||
["num_for_nothing"]="Ugg="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=6,
|
||||
["id_for_nothing"]="UA==",
|
||||
["num"]=1,
|
||||
["num_for_nothing"]="Vw=="
|
||||
}
|
||||
},
|
||||
["icon"]=11
|
||||
},
|
||||
[41]={
|
||||
["stage"]=9,
|
||||
["quest"]=31,
|
||||
["none"]="竞技场达到白银III",
|
||||
["num"]=1400,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=14
|
||||
},
|
||||
[42]={
|
||||
["stage"]=9,
|
||||
["quest"]=1,
|
||||
["none"]="广告次数累计达72",
|
||||
["num"]=72,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=10
|
||||
},
|
||||
[43]={
|
||||
["stage"]=9,
|
||||
["quest"]=23,
|
||||
["none"]="角色升到32级",
|
||||
["num"]=32,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=6
|
||||
},
|
||||
[44]={
|
||||
["stage"]=9,
|
||||
["quest"]=32,
|
||||
["none"]="深渊挑战9",
|
||||
["num"]=9,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
}
|
||||
},
|
||||
["icon"]=16
|
||||
},
|
||||
[45]={
|
||||
["stage"]=9,
|
||||
["none"]="完成所有任务",
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=1,
|
||||
["id_for_nothing"]="Vw==",
|
||||
["num"]=8000,
|
||||
["num_for_nothing"]="XghcAw=="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=40,
|
||||
["num_for_nothing"]="Ugg="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=14,
|
||||
["id_for_nothing"]="Vww=",
|
||||
["num"]=1,
|
||||
["num_for_nothing"]="Vw=="
|
||||
}
|
||||
},
|
||||
["icon"]=11
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=act_fourteen_quest,count=45
|
||||
}
|
||||
return config
|
||||
10
lua/app/config/act_fourteen_quest.lua.meta
Normal file
10
lua/app/config/act_fourteen_quest.lua.meta
Normal file
@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ae4732ca8e76a1243ad3c6e8d72d01b3
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
|
||||
@ -1676,6 +1676,18 @@ local act_gift = {
|
||||
["limit"]=1,
|
||||
["value"]=1100
|
||||
},
|
||||
[130502]={
|
||||
["type"]=13,
|
||||
["recharge_id"]=11,
|
||||
["limit"]=1,
|
||||
["value"]=1800
|
||||
},
|
||||
[130602]={
|
||||
["type"]=13,
|
||||
["recharge_id"]=12,
|
||||
["limit"]=1,
|
||||
["value"]=1800
|
||||
},
|
||||
[140403]={
|
||||
["type"]=14,
|
||||
["recharge_id"]=10,
|
||||
@ -1686,6 +1698,11 @@ local act_gift = {
|
||||
["recharge_id"]=12,
|
||||
["limit"]=1
|
||||
},
|
||||
[140405]={
|
||||
["type"]=14,
|
||||
["recharge_id"]=11,
|
||||
["limit"]=1
|
||||
},
|
||||
[150102]={
|
||||
["type"]=15,
|
||||
["parameter_pro"]={
|
||||
@ -2541,9 +2558,198 @@ local act_gift = {
|
||||
["limit_time"]=6,
|
||||
["cd"]=1,
|
||||
["value"]=800
|
||||
},
|
||||
[170102]={
|
||||
["type"]=17,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=2,
|
||||
["num_for_nothing"]="VA=="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=1,
|
||||
["id_for_nothing"]="Vw==",
|
||||
["num"]=300,
|
||||
["num_for_nothing"]="VQhc"
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=2,
|
||||
["id_for_nothing"]="VA==",
|
||||
["num"]=5,
|
||||
["num_for_nothing"]="Uw=="
|
||||
}
|
||||
}
|
||||
},
|
||||
[170202]={
|
||||
["type"]=17,
|
||||
["recharge_id"]=5,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=120,
|
||||
["num_for_nothing"]="Vwpc"
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=1,
|
||||
["id_for_nothing"]="Vw==",
|
||||
["num"]=5000,
|
||||
["num_for_nothing"]="UwhcAw=="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=2,
|
||||
["id_for_nothing"]="VA==",
|
||||
["num"]=100,
|
||||
["num_for_nothing"]="Vwhc"
|
||||
}
|
||||
},
|
||||
["limit"]=5,
|
||||
["value"]=800
|
||||
},
|
||||
[170302]={
|
||||
["type"]=17,
|
||||
["recharge_id"]=10,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=300,
|
||||
["num_for_nothing"]="VQhc"
|
||||
},
|
||||
{
|
||||
["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"]=2,
|
||||
["id_for_nothing"]="VA==",
|
||||
["num"]=200,
|
||||
["num_for_nothing"]="VAhc"
|
||||
}
|
||||
},
|
||||
["limit"]=5,
|
||||
["value"]=800
|
||||
},
|
||||
[170402]={
|
||||
["type"]=17,
|
||||
["recharge_id"]=13,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=720,
|
||||
["num_for_nothing"]="UQpc"
|
||||
},
|
||||
{
|
||||
["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"]=2,
|
||||
["id_for_nothing"]="VA==",
|
||||
["num"]=400,
|
||||
["num_for_nothing"]="Ughc"
|
||||
}
|
||||
},
|
||||
["limit"]=5,
|
||||
["value"]=900
|
||||
},
|
||||
[170502]={
|
||||
["type"]=17,
|
||||
["recharge_id"]=16,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=2000,
|
||||
["num_for_nothing"]="VAhcAw=="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=1,
|
||||
["id_for_nothing"]="Vw==",
|
||||
["num"]=50000,
|
||||
["num_for_nothing"]="UwhcA2U="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=2,
|
||||
["id_for_nothing"]="VA==",
|
||||
["num"]=1000,
|
||||
["num_for_nothing"]="VwhcAw=="
|
||||
}
|
||||
},
|
||||
["limit"]=5,
|
||||
["value"]=900
|
||||
},
|
||||
[170602]={
|
||||
["type"]=17,
|
||||
["recharge_id"]=18,
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=51,
|
||||
["id_for_nothing"]="Uwk=",
|
||||
["num"]=4200,
|
||||
["num_for_nothing"]="UgpcAw=="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=1,
|
||||
["id_for_nothing"]="Vw==",
|
||||
["num"]=100000,
|
||||
["num_for_nothing"]="VwhcA2VR"
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=2,
|
||||
["id_for_nothing"]="VA==",
|
||||
["num"]=2000,
|
||||
["num_for_nothing"]="VAhcAw=="
|
||||
}
|
||||
},
|
||||
["limit"]=5,
|
||||
["value"]=1000
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=act_gift,count=76
|
||||
data=act_gift,count=85
|
||||
}
|
||||
return config
|
||||
@ -3,9 +3,14 @@ local activity = {
|
||||
["act_type"]=1,
|
||||
["start_time"]="2023-08-22 00:00:00",
|
||||
["end_time"]="2023-08-29 00:00:00"
|
||||
},
|
||||
[206]={
|
||||
["act_type"]=2,
|
||||
["start_time"]="2023-09-13 00:00:00",
|
||||
["end_time"]="2023-09-21 00:00:00"
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=activity,count=1
|
||||
data=activity,count=2
|
||||
}
|
||||
return config
|
||||
1546
lua/app/config/activity_boss_rush_chapter.lua
Normal file
1546
lua/app/config/activity_boss_rush_chapter.lua
Normal file
File diff suppressed because it is too large
Load Diff
10
lua/app/config/activity_boss_rush_chapter.lua.meta
Normal file
10
lua/app/config/activity_boss_rush_chapter.lua.meta
Normal file
@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3b9c06b8307dd0b4cb53ae035d53aa11
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
|
||||
158
lua/app/config/activity_boss_rush_exchange.lua
Normal file
158
lua/app/config/activity_boss_rush_exchange.lua
Normal 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
|
||||
10
lua/app/config/activity_boss_rush_exchange.lua.meta
Normal file
10
lua/app/config/activity_boss_rush_exchange.lua.meta
Normal file
@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8c8d75a1f2e364844b081ef20888e140
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
|
||||
174
lua/app/config/activity_boss_rush_rank.lua
Normal file
174
lua/app/config/activity_boss_rush_rank.lua
Normal file
@ -0,0 +1,174 @@
|
||||
local activity_boss_rush_rank = {
|
||||
[1]={
|
||||
["ranking"]={
|
||||
1,
|
||||
1
|
||||
},
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=100,
|
||||
["num_for_nothing"]="Vwhc"
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=47,
|
||||
["id_for_nothing"]="Ug8=",
|
||||
["num"]=6,
|
||||
["num_for_nothing"]="UA=="
|
||||
}
|
||||
}
|
||||
},
|
||||
[2]={
|
||||
["ranking"]={
|
||||
2,
|
||||
2
|
||||
},
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=80,
|
||||
["num_for_nothing"]="Xgg="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=47,
|
||||
["id_for_nothing"]="Ug8=",
|
||||
["num"]=5,
|
||||
["num_for_nothing"]="Uw=="
|
||||
}
|
||||
}
|
||||
},
|
||||
[3]={
|
||||
["ranking"]={
|
||||
3,
|
||||
3
|
||||
},
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=70,
|
||||
["num_for_nothing"]="UQg="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=47,
|
||||
["id_for_nothing"]="Ug8=",
|
||||
["num"]=4,
|
||||
["num_for_nothing"]="Ug=="
|
||||
}
|
||||
}
|
||||
},
|
||||
[4]={
|
||||
["ranking"]={
|
||||
4,
|
||||
10
|
||||
},
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=60,
|
||||
["num_for_nothing"]="UAg="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=6,
|
||||
["id_for_nothing"]="UA==",
|
||||
["num"]=3,
|
||||
["num_for_nothing"]="VQ=="
|
||||
}
|
||||
}
|
||||
},
|
||||
[5]={
|
||||
["ranking"]={
|
||||
11,
|
||||
50
|
||||
},
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=40,
|
||||
["num_for_nothing"]="Ugg="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=6,
|
||||
["id_for_nothing"]="UA==",
|
||||
["num"]=2,
|
||||
["num_for_nothing"]="VA=="
|
||||
}
|
||||
}
|
||||
},
|
||||
[6]={
|
||||
["ranking"]={
|
||||
51,
|
||||
500
|
||||
},
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=30,
|
||||
["num_for_nothing"]="VQg="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=6,
|
||||
["id_for_nothing"]="UA==",
|
||||
["num"]=1,
|
||||
["num_for_nothing"]="Vw=="
|
||||
}
|
||||
}
|
||||
},
|
||||
[7]={
|
||||
["ranking"]={
|
||||
501,
|
||||
99999999
|
||||
},
|
||||
["reward"]={
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=20,
|
||||
["num_for_nothing"]="VAg="
|
||||
},
|
||||
{
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=2,
|
||||
["id_for_nothing"]="VA==",
|
||||
["num"]=20,
|
||||
["num_for_nothing"]="VAg="
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=activity_boss_rush_rank,count=7
|
||||
}
|
||||
return config
|
||||
10
lua/app/config/activity_boss_rush_rank.lua.meta
Normal file
10
lua/app/config/activity_boss_rush_rank.lua.meta
Normal file
@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 472bee3e9223f3c4aa8b407e72891bc3
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
|
||||
@ -837,9 +837,653 @@ local activity_bounty_level = {
|
||||
["num"]=3,
|
||||
["num_for_nothing"]="VQ=="
|
||||
}
|
||||
},
|
||||
[201]={
|
||||
["act_id"]=206,
|
||||
["exp"]=0,
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=2,
|
||||
["id_for_nothing"]="VA==",
|
||||
["num"]=10,
|
||||
["num_for_nothing"]="Vwg="
|
||||
},
|
||||
["reward_pro"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=24002,
|
||||
["id_for_nothing"]="VAxcA2c=",
|
||||
["num"]=3,
|
||||
["num_for_nothing"]="VQ=="
|
||||
},
|
||||
["reward_pro_max"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=24002,
|
||||
["id_for_nothing"]="VAxcA2c=",
|
||||
["num"]=3,
|
||||
["num_for_nothing"]="VQ=="
|
||||
}
|
||||
},
|
||||
[202]={
|
||||
["act_id"]=206,
|
||||
["exp"]=15,
|
||||
["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=="
|
||||
}
|
||||
},
|
||||
[203]={
|
||||
["act_id"]=206,
|
||||
["exp"]=30,
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=3,
|
||||
["id_for_nothing"]="VQ==",
|
||||
["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="
|
||||
}
|
||||
},
|
||||
[204]={
|
||||
["act_id"]=206,
|
||||
["exp"]=45,
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=20,
|
||||
["num_for_nothing"]="VAg="
|
||||
},
|
||||
["reward_pro"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=40,
|
||||
["num_for_nothing"]="Ugg="
|
||||
},
|
||||
["reward_pro_max"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=60,
|
||||
["num_for_nothing"]="UAg="
|
||||
}
|
||||
},
|
||||
[205]={
|
||||
["act_id"]=206,
|
||||
["exp"]=60,
|
||||
["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=="
|
||||
}
|
||||
},
|
||||
[206]={
|
||||
["act_id"]=206,
|
||||
["exp"]=75,
|
||||
["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"]=24002,
|
||||
["id_for_nothing"]="VAxcA2c=",
|
||||
["num"]=2,
|
||||
["num_for_nothing"]="VA=="
|
||||
},
|
||||
["reward_pro_max"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=24002,
|
||||
["id_for_nothing"]="VAxcA2c=",
|
||||
["num"]=3,
|
||||
["num_for_nothing"]="VQ=="
|
||||
}
|
||||
},
|
||||
[207]={
|
||||
["act_id"]=206,
|
||||
["exp"]=90,
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=20,
|
||||
["num_for_nothing"]="VAg="
|
||||
},
|
||||
["reward_pro"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=40,
|
||||
["num_for_nothing"]="Ugg="
|
||||
},
|
||||
["reward_pro_max"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=60,
|
||||
["num_for_nothing"]="UAg="
|
||||
}
|
||||
},
|
||||
[208]={
|
||||
["act_id"]=206,
|
||||
["exp"]=105,
|
||||
["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=="
|
||||
}
|
||||
},
|
||||
[209]={
|
||||
["act_id"]=206,
|
||||
["exp"]=120,
|
||||
["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=="
|
||||
}
|
||||
},
|
||||
[210]={
|
||||
["act_id"]=206,
|
||||
["exp"]=135,
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=11,
|
||||
["id_for_nothing"]="Vwk=",
|
||||
["num"]=1,
|
||||
["num_for_nothing"]="Vw=="
|
||||
},
|
||||
["reward_pro"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=47,
|
||||
["id_for_nothing"]="Ug8=",
|
||||
["num"]=2,
|
||||
["num_for_nothing"]="VA=="
|
||||
},
|
||||
["reward_pro_max"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=24002,
|
||||
["id_for_nothing"]="VAxcA2c=",
|
||||
["num"]=3,
|
||||
["num_for_nothing"]="VQ=="
|
||||
}
|
||||
},
|
||||
[211]={
|
||||
["act_id"]=206,
|
||||
["exp"]=150,
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=20,
|
||||
["num_for_nothing"]="VAg="
|
||||
},
|
||||
["reward_pro"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=40,
|
||||
["num_for_nothing"]="Ugg="
|
||||
},
|
||||
["reward_pro_max"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=60,
|
||||
["num_for_nothing"]="UAg="
|
||||
}
|
||||
},
|
||||
[212]={
|
||||
["act_id"]=206,
|
||||
["exp"]=165,
|
||||
["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"
|
||||
}
|
||||
},
|
||||
[213]={
|
||||
["act_id"]=206,
|
||||
["exp"]=180,
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=20,
|
||||
["num_for_nothing"]="VAg="
|
||||
},
|
||||
["reward_pro"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=40,
|
||||
["num_for_nothing"]="Ugg="
|
||||
},
|
||||
["reward_pro_max"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=60,
|
||||
["num_for_nothing"]="UAg="
|
||||
}
|
||||
},
|
||||
[214]={
|
||||
["act_id"]=206,
|
||||
["exp"]=195,
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=3,
|
||||
["id_for_nothing"]="VQ==",
|
||||
["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="
|
||||
}
|
||||
},
|
||||
[215]={
|
||||
["act_id"]=206,
|
||||
["exp"]=210,
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=24002,
|
||||
["id_for_nothing"]="VAxcA2c=",
|
||||
["num"]=1,
|
||||
["num_for_nothing"]="Vw=="
|
||||
},
|
||||
["reward_pro"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=24002,
|
||||
["id_for_nothing"]="VAxcA2c=",
|
||||
["num"]=2,
|
||||
["num_for_nothing"]="VA=="
|
||||
},
|
||||
["reward_pro_max"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=24002,
|
||||
["id_for_nothing"]="VAxcA2c=",
|
||||
["num"]=3,
|
||||
["num_for_nothing"]="VQ=="
|
||||
}
|
||||
},
|
||||
[216]={
|
||||
["act_id"]=206,
|
||||
["exp"]=225,
|
||||
["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=="
|
||||
}
|
||||
},
|
||||
[217]={
|
||||
["act_id"]=206,
|
||||
["exp"]=240,
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=20,
|
||||
["num_for_nothing"]="VAg="
|
||||
},
|
||||
["reward_pro"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=40,
|
||||
["num_for_nothing"]="Ugg="
|
||||
},
|
||||
["reward_pro_max"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=60,
|
||||
["num_for_nothing"]="UAg="
|
||||
}
|
||||
},
|
||||
[218]={
|
||||
["act_id"]=206,
|
||||
["exp"]=255,
|
||||
["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"
|
||||
}
|
||||
},
|
||||
[219]={
|
||||
["act_id"]=206,
|
||||
["exp"]=270,
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=11,
|
||||
["id_for_nothing"]="Vwk=",
|
||||
["num"]=1,
|
||||
["num_for_nothing"]="Vw=="
|
||||
},
|
||||
["reward_pro"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=47,
|
||||
["id_for_nothing"]="Ug8=",
|
||||
["num"]=2,
|
||||
["num_for_nothing"]="VA=="
|
||||
},
|
||||
["reward_pro_max"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=24002,
|
||||
["id_for_nothing"]="VAxcA2c=",
|
||||
["num"]=3,
|
||||
["num_for_nothing"]="VQ=="
|
||||
}
|
||||
},
|
||||
[220]={
|
||||
["act_id"]=206,
|
||||
["exp"]=285,
|
||||
["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=="
|
||||
}
|
||||
},
|
||||
[221]={
|
||||
["act_id"]=206,
|
||||
["exp"]=300,
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=20,
|
||||
["num_for_nothing"]="VAg="
|
||||
},
|
||||
["reward_pro"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=40,
|
||||
["num_for_nothing"]="Ugg="
|
||||
},
|
||||
["reward_pro_max"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=60,
|
||||
["num_for_nothing"]="UAg="
|
||||
}
|
||||
},
|
||||
[222]={
|
||||
["act_id"]=206,
|
||||
["exp"]=315,
|
||||
["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=="
|
||||
}
|
||||
},
|
||||
[223]={
|
||||
["act_id"]=206,
|
||||
["exp"]=330,
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=24002,
|
||||
["id_for_nothing"]="VAxcA2c=",
|
||||
["num"]=1,
|
||||
["num_for_nothing"]="Vw=="
|
||||
},
|
||||
["reward_pro"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=24002,
|
||||
["id_for_nothing"]="VAxcA2c=",
|
||||
["num"]=2,
|
||||
["num_for_nothing"]="VA=="
|
||||
},
|
||||
["reward_pro_max"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=24002,
|
||||
["id_for_nothing"]="VAxcA2c=",
|
||||
["num"]=3,
|
||||
["num_for_nothing"]="VQ=="
|
||||
}
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=activity_bounty_level,count=30
|
||||
data=activity_bounty_level,count=53
|
||||
}
|
||||
return config
|
||||
186
lua/app/config/activity_exchange.lua
Normal file
186
lua/app/config/activity_exchange.lua
Normal file
@ -0,0 +1,186 @@
|
||||
local activity_exchange = {
|
||||
[101]={
|
||||
["activity"]=206,
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=14002,
|
||||
["id_for_nothing"]="VwxcA2c=",
|
||||
["num"]=3,
|
||||
["num_for_nothing"]="VQ=="
|
||||
},
|
||||
["cost"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=300,
|
||||
["num_for_nothing"]="VQhc"
|
||||
},
|
||||
["limit"]=10
|
||||
},
|
||||
[102]={
|
||||
["activity"]=206,
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=34003,
|
||||
["id_for_nothing"]="VQxcA2Y=",
|
||||
["num"]=3,
|
||||
["num_for_nothing"]="VQ=="
|
||||
},
|
||||
["cost"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=200,
|
||||
["num_for_nothing"]="VAhc"
|
||||
},
|
||||
["limit"]=10
|
||||
},
|
||||
[103]={
|
||||
["activity"]=206,
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=44001,
|
||||
["id_for_nothing"]="UgxcA2Q=",
|
||||
["num"]=3,
|
||||
["num_for_nothing"]="VQ=="
|
||||
},
|
||||
["cost"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=200,
|
||||
["num_for_nothing"]="VAhc"
|
||||
},
|
||||
["limit"]=10
|
||||
},
|
||||
[104]={
|
||||
["activity"]=206,
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=54002,
|
||||
["id_for_nothing"]="UwxcA2c=",
|
||||
["num"]=3,
|
||||
["num_for_nothing"]="VQ=="
|
||||
},
|
||||
["cost"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=200,
|
||||
["num_for_nothing"]="VAhc"
|
||||
},
|
||||
["limit"]=10
|
||||
},
|
||||
[105]={
|
||||
["activity"]=206,
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=15,
|
||||
["id_for_nothing"]="Vw0=",
|
||||
["num"]=1,
|
||||
["num_for_nothing"]="Vw=="
|
||||
},
|
||||
["cost"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=240,
|
||||
["num_for_nothing"]="VAxc"
|
||||
},
|
||||
["limit"]=3
|
||||
},
|
||||
[106]={
|
||||
["activity"]=206,
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=14,
|
||||
["id_for_nothing"]="Vww=",
|
||||
["num"]=1,
|
||||
["num_for_nothing"]="Vw=="
|
||||
},
|
||||
["cost"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=100,
|
||||
["num_for_nothing"]="Vwhc"
|
||||
},
|
||||
["limit"]=3
|
||||
},
|
||||
[107]={
|
||||
["activity"]=206,
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=3,
|
||||
["id_for_nothing"]="VQ==",
|
||||
["num"]=15,
|
||||
["num_for_nothing"]="Vw0="
|
||||
},
|
||||
["cost"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=5,
|
||||
["num_for_nothing"]="Uw=="
|
||||
},
|
||||
["limit"]=10
|
||||
},
|
||||
[108]={
|
||||
["activity"]=206,
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=1,
|
||||
["id_for_nothing"]="Vw==",
|
||||
["num"]=800,
|
||||
["num_for_nothing"]="Xghc"
|
||||
},
|
||||
["cost"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=5,
|
||||
["num_for_nothing"]="Uw=="
|
||||
},
|
||||
["limit"]=999
|
||||
},
|
||||
[109]={
|
||||
["activity"]=206,
|
||||
["reward"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=13,
|
||||
["id_for_nothing"]="Vws=",
|
||||
["num"]=1,
|
||||
["num_for_nothing"]="Vw=="
|
||||
},
|
||||
["cost"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=52,
|
||||
["id_for_nothing"]="Uwo=",
|
||||
["num"]=5,
|
||||
["num_for_nothing"]="Uw=="
|
||||
},
|
||||
["limit"]=999
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=activity_exchange,count=9
|
||||
}
|
||||
return config
|
||||
10
lua/app/config/activity_exchange.lua.meta
Normal file
10
lua/app/config/activity_exchange.lua.meta
Normal file
@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 59cc689139c1fb0429cd581fc781710e
|
||||
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
@ -3253,8 +3253,8 @@ local arena_bounty_level = {
|
||||
["reward_pro"]={
|
||||
["type"]=1,
|
||||
["type_for_nothing"]="Vw==",
|
||||
["id"]=23,
|
||||
["id_for_nothing"]="VAs=",
|
||||
["id"]=1400101,
|
||||
["id_for_nothing"]="VwxcA2RRfg==",
|
||||
["num"]=1,
|
||||
["num_for_nothing"]="Vw=="
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -2,20 +2,29 @@ local arena_time = {
|
||||
[1]={
|
||||
["season"]=1,
|
||||
["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]={
|
||||
["season"]=2,
|
||||
["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]={
|
||||
["season"]=3,
|
||||
["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"
|
||||
},
|
||||
[4]={
|
||||
["season"]=4,
|
||||
["start_time"]="2023-10-16 00:00:00",
|
||||
["end_time"]="2023-11-15 00:00:00",
|
||||
["ui_banner"]="ui_arena_bounty_banner_1"
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=arena_time,count=3
|
||||
data=arena_time,count=4
|
||||
}
|
||||
return config
|
||||
@ -6,7 +6,8 @@ local avatar = {
|
||||
},
|
||||
[24]={
|
||||
["iconId"]="avatar_2",
|
||||
["item"]=44
|
||||
["item"]=44,
|
||||
["unlock_show"]=true
|
||||
},
|
||||
[1001]={
|
||||
["iconId"]="1",
|
||||
@ -132,23 +133,27 @@ local avatar = {
|
||||
["hero"]=54003
|
||||
},
|
||||
[1400201]={
|
||||
["iconId"]="skin_3",
|
||||
["iconId"]="23_1",
|
||||
["item"]=1400201
|
||||
},
|
||||
[3400101]={
|
||||
["iconId"]="skin_1",
|
||||
["iconId"]="18_1",
|
||||
["item"]=3400101
|
||||
},
|
||||
[5300101]={
|
||||
["iconId"]="skin_4",
|
||||
["iconId"]="10_1",
|
||||
["item"]=5300101
|
||||
},
|
||||
[5400101]={
|
||||
["iconId"]="skin_2",
|
||||
["iconId"]="20_1",
|
||||
["item"]=5400101
|
||||
},
|
||||
[1400101]={
|
||||
["iconId"]="16_1",
|
||||
["item"]=1400101
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=avatar,count=36
|
||||
data=avatar,count=37
|
||||
}
|
||||
return config
|
||||
@ -20,9 +20,19 @@ local avatar_frame = {
|
||||
[27]={
|
||||
["iconId"]="avatar_frame_5",
|
||||
["item"]=46
|
||||
},
|
||||
[28]={
|
||||
["iconId"]="avatar_frame_6",
|
||||
["item"]=53,
|
||||
["unlock_show"]=true
|
||||
},
|
||||
[29]={
|
||||
["iconId"]="avatar_frame_7",
|
||||
["item"]=54,
|
||||
["unlock_show"]=true
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=avatar_frame,count=5
|
||||
data=avatar_frame,count=7
|
||||
}
|
||||
return config
|
||||
@ -199,7 +199,8 @@ local buff = {
|
||||
["name"]="atkp_color_add",
|
||||
["buff_type"]=1,
|
||||
["stack"]=2,
|
||||
["decr"]=1
|
||||
["decr"]=1,
|
||||
["limit_parameter"]=10000
|
||||
},
|
||||
[26]={
|
||||
["id"]=26,
|
||||
@ -207,7 +208,8 @@ local buff = {
|
||||
["buff_type"]=1,
|
||||
["stack"]=2,
|
||||
["position"]=1,
|
||||
["decr"]=1
|
||||
["decr"]=1,
|
||||
["limit_parameter"]=10000
|
||||
},
|
||||
[27]={
|
||||
["id"]=27,
|
||||
@ -215,7 +217,8 @@ local buff = {
|
||||
["buff_type"]=1,
|
||||
["stack"]=2,
|
||||
["position"]=2,
|
||||
["decr"]=1
|
||||
["decr"]=1,
|
||||
["limit_parameter"]=10000
|
||||
},
|
||||
[28]={
|
||||
["id"]=28,
|
||||
@ -223,7 +226,8 @@ local buff = {
|
||||
["buff_type"]=1,
|
||||
["stack"]=2,
|
||||
["position"]=3,
|
||||
["decr"]=1
|
||||
["decr"]=1,
|
||||
["limit_parameter"]=10000
|
||||
},
|
||||
[29]={
|
||||
["id"]=29,
|
||||
@ -231,7 +235,8 @@ local buff = {
|
||||
["buff_type"]=1,
|
||||
["stack"]=2,
|
||||
["position"]=4,
|
||||
["decr"]=1
|
||||
["decr"]=1,
|
||||
["limit_parameter"]=10000
|
||||
},
|
||||
[30]={
|
||||
["id"]=30,
|
||||
@ -239,7 +244,8 @@ local buff = {
|
||||
["buff_type"]=1,
|
||||
["stack"]=2,
|
||||
["position"]=5,
|
||||
["decr"]=1
|
||||
["decr"]=1,
|
||||
["limit_parameter"]=10000
|
||||
},
|
||||
[31]={
|
||||
["id"]=31,
|
||||
@ -532,7 +538,8 @@ local buff = {
|
||||
["name"]="skill_hurt_add",
|
||||
["buff_type"]=1,
|
||||
["stack"]=2,
|
||||
["decr"]=1
|
||||
["decr"]=1,
|
||||
["limit_parameter"]=10000
|
||||
},
|
||||
[61]={
|
||||
["id"]=61,
|
||||
|
||||
@ -7580,8 +7580,8 @@ local chapter = {
|
||||
["num_for_nothing"]="Vw=="
|
||||
}
|
||||
},
|
||||
["idle_exp"]=30,
|
||||
["idle_gold"]=55,
|
||||
["idle_exp"]=35,
|
||||
["idle_gold"]=87,
|
||||
["idle_drop"]={
|
||||
{
|
||||
["type"]=1,
|
||||
@ -7799,8 +7799,8 @@ local chapter = {
|
||||
["num_for_nothing"]="Vw=="
|
||||
}
|
||||
},
|
||||
["idle_exp"]=32,
|
||||
["idle_gold"]=55,
|
||||
["idle_exp"]=35,
|
||||
["idle_gold"]=88,
|
||||
["idle_drop"]={
|
||||
{
|
||||
["type"]=1,
|
||||
@ -8018,8 +8018,8 @@ local chapter = {
|
||||
["num_for_nothing"]="Vw=="
|
||||
}
|
||||
},
|
||||
["idle_exp"]=32,
|
||||
["idle_gold"]=56,
|
||||
["idle_exp"]=36,
|
||||
["idle_gold"]=88,
|
||||
["idle_drop"]={
|
||||
{
|
||||
["type"]=1,
|
||||
@ -8237,8 +8237,8 @@ local chapter = {
|
||||
["num_for_nothing"]="Vw=="
|
||||
}
|
||||
},
|
||||
["idle_exp"]=34,
|
||||
["idle_gold"]=56,
|
||||
["idle_exp"]=36,
|
||||
["idle_gold"]=89,
|
||||
["idle_drop"]={
|
||||
{
|
||||
["type"]=1,
|
||||
@ -8455,8 +8455,8 @@ local chapter = {
|
||||
["num_for_nothing"]="Vw=="
|
||||
}
|
||||
},
|
||||
["idle_exp"]=34,
|
||||
["idle_gold"]=57,
|
||||
["idle_exp"]=37,
|
||||
["idle_gold"]=89,
|
||||
["idle_drop"]={
|
||||
{
|
||||
["type"]=1,
|
||||
|
||||
31710
lua/app/config/chapter_board_bossrush.lua
Normal file
31710
lua/app/config/chapter_board_bossrush.lua
Normal file
File diff suppressed because it is too large
Load Diff
10
lua/app/config/chapter_board_bossrush.lua.meta
Normal file
10
lua/app/config/chapter_board_bossrush.lua.meta
Normal file
@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f136cacb0fc4a2e47b93053e37dcf71b
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
|
||||
@ -13699,7 +13699,7 @@ local chapter_board_dungeon_armor = {
|
||||
},
|
||||
{
|
||||
21,
|
||||
0
|
||||
5
|
||||
},
|
||||
{
|
||||
0,
|
||||
|
||||
@ -376,9 +376,53 @@ local const = {
|
||||
},
|
||||
["bounty_click"]={
|
||||
["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_1"]={
|
||||
["value"]=1750
|
||||
},
|
||||
["activity_boss_rush_atk_add_1"]={
|
||||
["value"]=1370
|
||||
},
|
||||
["activity_boss_rush_hp_add_2"]={
|
||||
["value"]=2700
|
||||
},
|
||||
["activity_boss_rush_atk_add_2"]={
|
||||
["value"]=2200
|
||||
},
|
||||
["activity_boss_rush_hp_add_3"]={
|
||||
["value"]=4100
|
||||
},
|
||||
["activity_boss_rush_atk_add_3"]={
|
||||
["value"]=3500
|
||||
},
|
||||
["activity_recurring_day"]={
|
||||
["value"]=15
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=const,count=77
|
||||
data=const,count=87
|
||||
}
|
||||
return config
|
||||
@ -1550,6 +1550,26 @@ local item = {
|
||||
}
|
||||
}
|
||||
},
|
||||
[51]={
|
||||
["type"]=2,
|
||||
["qlt"]=4,
|
||||
["icon"]="51"
|
||||
},
|
||||
[52]={
|
||||
["type"]=2,
|
||||
["qlt"]=4,
|
||||
["icon"]="52"
|
||||
},
|
||||
[53]={
|
||||
["type"]=10,
|
||||
["qlt"]=4,
|
||||
["icon"]="53"
|
||||
},
|
||||
[54]={
|
||||
["type"]=10,
|
||||
["qlt"]=5,
|
||||
["icon"]="54"
|
||||
},
|
||||
[1001]={
|
||||
["type"]=2,
|
||||
["qlt"]=1,
|
||||
@ -2378,6 +2398,6 @@ local item = {
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=item,count=112
|
||||
data=item,count=116
|
||||
}
|
||||
return config
|
||||
@ -461,11 +461,58 @@ local LocalizationGlobalConst =
|
||||
ARENA_DESC_40 = "ARENA_DESC_40",
|
||||
ARENA_DESC_41 = "ARENA_DESC_41",
|
||||
ARENA_DESC_42 = "ARENA_DESC_42",
|
||||
EQUIP_DESC_26 = "EQUIP_DESC_26",
|
||||
EQUIP_DESC_27 = "EQUIP_DESC_27",
|
||||
EQUIP_DESC_28 = "EQUIP_DESC_28",
|
||||
SEIZED_DESC_1 = "SEIZED_DESC_1",
|
||||
SEIZED_DESC_2 = "SEIZED_DESC_2",
|
||||
SEIZED_DESC_3 = "SEIZED_DESC_3",
|
||||
ACT_FOURTEEN_TITLE_1 = "ACT_FOURTEEN_TITLE_1",
|
||||
ACT_FOURTEEN_TITLE_2 = "ACT_FOURTEEN_TITLE_2",
|
||||
ACT_FOURTEEN_TITLE_3 = "ACT_FOURTEEN_TITLE_3",
|
||||
ACT_FOURTEEN_TITLE_4 = "ACT_FOURTEEN_TITLE_4",
|
||||
ACT_FOURTEEN_DESC_1 = "ACT_FOURTEEN_DESC_1",
|
||||
ACT_FOURTEEN_DESC_2 = "ACT_FOURTEEN_DESC_2",
|
||||
ACT_FOURTEEN_DESC_3 = "ACT_FOURTEEN_DESC_3",
|
||||
ACT_FOURTEEN_DESC_5 = "ACT_FOURTEEN_DESC_5",
|
||||
ACT_FOURTEEN_DESC_6 = "ACT_FOURTEEN_DESC_6",
|
||||
ACT_FOURTEEN_DESC_7 = "ACT_FOURTEEN_DESC_7",
|
||||
ACT_FOURTEEN_DESC_8 = "ACT_FOURTEEN_DESC_8",
|
||||
ACT_FOURTEEN_DESC_9 = "ACT_FOURTEEN_DESC_9",
|
||||
ACT_BOSS_RUSH_DESC_1 = "ACT_BOSS_RUSH_DESC_1",
|
||||
ACT_BOSS_RUSH_DESC_2 = "ACT_BOSS_RUSH_DESC_2",
|
||||
ACT_BOSS_RUSH_DESC_3 = "ACT_BOSS_RUSH_DESC_3",
|
||||
ACT_BOSS_RUSH_DESC_4 = "ACT_BOSS_RUSH_DESC_4",
|
||||
ACT_BOSS_RUSH_DESC_5 = "ACT_BOSS_RUSH_DESC_5",
|
||||
ACT_BOSS_RUSH_DESC_6 = "ACT_BOSS_RUSH_DESC_6",
|
||||
ACT_BOSS_RUSH_DESC_7 = "ACT_BOSS_RUSH_DESC_7",
|
||||
ACT_BOSS_RUSH_DESC_8 = "ACT_BOSS_RUSH_DESC_8",
|
||||
ACT_BOSS_RUSH_DESC_9 = "ACT_BOSS_RUSH_DESC_9",
|
||||
ACT_BOSS_RUSH_DESC_10 = "ACT_BOSS_RUSH_DESC_10",
|
||||
ACT_BOSS_RUSH_DESC_11 = "ACT_BOSS_RUSH_DESC_11",
|
||||
ACT_BOSS_RUSH_DESC_12 = "ACT_BOSS_RUSH_DESC_12",
|
||||
ACT_BOSS_RUSH_DESC_13 = "ACT_BOSS_RUSH_DESC_13",
|
||||
ACT_BOSS_RUSH_DESC_14 = "ACT_BOSS_RUSH_DESC_14",
|
||||
ACT_BOSS_RUSH_DESC_15 = "ACT_BOSS_RUSH_DESC_15",
|
||||
ACT_BOSS_RUSH_DESC_16 = "ACT_BOSS_RUSH_DESC_16",
|
||||
ACT_BOSS_RUSH_DESC_17 = "ACT_BOSS_RUSH_DESC_17",
|
||||
ACT_BOSS_RUSH_DESC_18 = "ACT_BOSS_RUSH_DESC_18",
|
||||
ACT_BOSS_RUSH_DESC_19 = "ACT_BOSS_RUSH_DESC_19",
|
||||
ACT_BOSS_RUSH_DESC_20 = "ACT_BOSS_RUSH_DESC_20",
|
||||
ACT_BOSS_RUSH_DESC_21 = "ACT_BOSS_RUSH_DESC_21",
|
||||
ACT_BOSS_RUSH_DESC_22 = "ACT_BOSS_RUSH_DESC_22",
|
||||
ACT_BOSS_RUSH_DESC_23 = "ACT_BOSS_RUSH_DESC_23",
|
||||
ACT_BOSS_RUSH_DESC_24 = "ACT_BOSS_RUSH_DESC_24",
|
||||
ACT_BOSS_RUSH_DESC_25 = "ACT_BOSS_RUSH_DESC_25",
|
||||
ACT_BOSS_RUSH_DESC_26 = "ACT_BOSS_RUSH_DESC_26",
|
||||
ACT_BOSS_RUSH_DESC_27 = "ACT_BOSS_RUSH_DESC_27",
|
||||
ACT_BOSS_RUSH_DESC_28 = "ACT_BOSS_RUSH_DESC_28",
|
||||
ACT_BOSS_RUSH_DESC_29 = "ACT_BOSS_RUSH_DESC_29",
|
||||
ACT_BOSS_RUSH_DESC_30 = "ACT_BOSS_RUSH_DESC_30",
|
||||
ACT_BOSS_RUSH_DESC_31 = "ACT_BOSS_RUSH_DESC_31",
|
||||
ACT_BOSS_RUSH_DESC_32 = "ACT_BOSS_RUSH_DESC_32",
|
||||
ACT_BOSS_RUSH_DESC_33 = "ACT_BOSS_RUSH_DESC_33",
|
||||
NOT_POP_TODAY = "NOT_POP_TODAY",
|
||||
ACT_BOSS_RUSH_DESC_34 = "ACT_BOSS_RUSH_DESC_34",
|
||||
}
|
||||
|
||||
return LocalizationGlobalConst
|
||||
777
lua/app/config/monster_activity.lua
Normal file
777
lua/app/config/monster_activity.lua
Normal file
@ -0,0 +1,777 @@
|
||||
local monster_activity = {
|
||||
[104]={
|
||||
["monster_base"]=20001,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30001,
|
||||
30002,
|
||||
30003
|
||||
},
|
||||
["skill"]={
|
||||
10020
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[204]={
|
||||
["monster_base"]=20002,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30004,
|
||||
30005,
|
||||
30006
|
||||
},
|
||||
["skill"]={
|
||||
10019
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[304]={
|
||||
["monster_base"]=20004,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30010,
|
||||
30011,
|
||||
30012
|
||||
},
|
||||
["skill"]={
|
||||
10015
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[404]={
|
||||
["monster_base"]=20006,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30016,
|
||||
30017,
|
||||
30018
|
||||
},
|
||||
["skill"]={
|
||||
10033
|
||||
},
|
||||
["passive_skill"]={
|
||||
10010
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[504]={
|
||||
["monster_base"]=20007,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30019,
|
||||
30020,
|
||||
30021
|
||||
},
|
||||
["skill"]={
|
||||
10060
|
||||
},
|
||||
["passive_skill"]={
|
||||
10061
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[604]={
|
||||
["monster_base"]=20008,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30022,
|
||||
30023,
|
||||
30024
|
||||
},
|
||||
["skill"]={
|
||||
10032
|
||||
},
|
||||
["passive_skill"]={
|
||||
10009
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[704]={
|
||||
["monster_base"]=20012,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30034,
|
||||
30035,
|
||||
30036
|
||||
},
|
||||
["skill"]={
|
||||
10017
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[804]={
|
||||
["monster_base"]=20014,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30040,
|
||||
30041,
|
||||
30042
|
||||
},
|
||||
["skill"]={
|
||||
10016
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[904]={
|
||||
["monster_base"]=20015,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30043,
|
||||
30044,
|
||||
30045
|
||||
},
|
||||
["skill"]={
|
||||
10070
|
||||
},
|
||||
["passive_skill"]={
|
||||
10008
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[1004]={
|
||||
["monster_base"]=20023,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30067,
|
||||
30068,
|
||||
30069
|
||||
},
|
||||
["skill"]={
|
||||
10063
|
||||
},
|
||||
["passive_skill"]={
|
||||
10013
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[1104]={
|
||||
["monster_base"]=20009,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30025,
|
||||
30026,
|
||||
30027
|
||||
},
|
||||
["skill"]={
|
||||
10039
|
||||
},
|
||||
["passive_skill"]={
|
||||
10010,
|
||||
10011
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[1204]={
|
||||
["monster_base"]=20011,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30031,
|
||||
30032,
|
||||
30033
|
||||
},
|
||||
["skill"]={
|
||||
10018
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[1304]={
|
||||
["monster_base"]=20017,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30049,
|
||||
30050,
|
||||
30051
|
||||
},
|
||||
["skill"]={
|
||||
10027
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[1404]={
|
||||
["monster_base"]=20019,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30055,
|
||||
30056,
|
||||
30057
|
||||
},
|
||||
["skill"]={
|
||||
10045
|
||||
},
|
||||
["passive_skill"]={
|
||||
10013
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[1504]={
|
||||
["monster_base"]=20022,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30064,
|
||||
30065,
|
||||
30066
|
||||
},
|
||||
["skill"]={
|
||||
10023
|
||||
},
|
||||
["passive_skill"]={
|
||||
10013
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[1604]={
|
||||
["monster_base"]=20026,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30076,
|
||||
30077,
|
||||
30078
|
||||
},
|
||||
["skill"]={
|
||||
10064
|
||||
},
|
||||
["passive_skill"]={
|
||||
10013
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[1704]={
|
||||
["monster_base"]=20028,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30162,
|
||||
30163,
|
||||
30164
|
||||
},
|
||||
["skill"]={
|
||||
10142
|
||||
},
|
||||
["passive_skill"]={
|
||||
10011
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[1804]={
|
||||
["monster_base"]=20029,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30085,
|
||||
30086,
|
||||
30087
|
||||
},
|
||||
["skill"]={
|
||||
10065
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[1904]={
|
||||
["monster_base"]=20010,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30028,
|
||||
30029,
|
||||
30030
|
||||
},
|
||||
["skill"]={
|
||||
10041,
|
||||
10066
|
||||
},
|
||||
["passive_skill"]={
|
||||
10008,
|
||||
10009,
|
||||
10013
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[2004]={
|
||||
["monster_base"]=20016,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30046,
|
||||
30047,
|
||||
30048
|
||||
},
|
||||
["skill"]={
|
||||
10036
|
||||
},
|
||||
["passive_skill"]={
|
||||
10010,
|
||||
10011
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[2104]={
|
||||
["monster_base"]=20018,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30052,
|
||||
30053,
|
||||
30054
|
||||
},
|
||||
["skill"]={
|
||||
10051
|
||||
},
|
||||
["passive_skill"]={
|
||||
10011,
|
||||
10012
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[2204]={
|
||||
["monster_base"]=20021,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30061,
|
||||
30062,
|
||||
30063
|
||||
},
|
||||
["skill"]={
|
||||
10034
|
||||
},
|
||||
["passive_skill"]={
|
||||
10011,
|
||||
10008
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[2304]={
|
||||
["monster_base"]=20025,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30073,
|
||||
30074,
|
||||
30075
|
||||
},
|
||||
["skill"]={
|
||||
10062
|
||||
},
|
||||
["passive_skill"]={
|
||||
10013
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[2404]={
|
||||
["monster_base"]=20027,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30079,
|
||||
30080,
|
||||
30081
|
||||
},
|
||||
["skill"]={
|
||||
10082
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[2504]={
|
||||
["monster_base"]=20035,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30100,
|
||||
30101,
|
||||
30102,
|
||||
30113
|
||||
},
|
||||
["skill"]={
|
||||
10076
|
||||
},
|
||||
["passive_skill"]={
|
||||
10011,
|
||||
10009
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[2604]={
|
||||
["monster_base"]=20036,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30103,
|
||||
30104,
|
||||
30105
|
||||
},
|
||||
["skill"]={
|
||||
10077,
|
||||
10078
|
||||
},
|
||||
["passive_skill"]={
|
||||
10011
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[2704]={
|
||||
["monster_base"]=20044,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30147,
|
||||
30148,
|
||||
30149
|
||||
},
|
||||
["skill"]={
|
||||
10130,
|
||||
10131
|
||||
},
|
||||
["passive_skill"]={
|
||||
10132,
|
||||
10013,
|
||||
10011
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[2804]={
|
||||
["monster_base"]=20003,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30007,
|
||||
30008,
|
||||
30009
|
||||
},
|
||||
["skill"]={
|
||||
10029
|
||||
},
|
||||
["passive_skill"]={
|
||||
10013
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[2904]={
|
||||
["monster_base"]=20005,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30013,
|
||||
30014,
|
||||
30015
|
||||
},
|
||||
["skill"]={
|
||||
10024
|
||||
},
|
||||
["passive_skill"]={
|
||||
10012
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[3004]={
|
||||
["monster_base"]=20020,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30058,
|
||||
30059,
|
||||
30060
|
||||
},
|
||||
["skill"]={
|
||||
10047
|
||||
},
|
||||
["passive_skill"]={
|
||||
10013
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[3104]={
|
||||
["monster_base"]=20030,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30088,
|
||||
30089,
|
||||
30090
|
||||
},
|
||||
["skill"]={
|
||||
10056,
|
||||
10057
|
||||
},
|
||||
["passive_skill"]={
|
||||
10014
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[3204]={
|
||||
["monster_base"]=20034,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30097,
|
||||
30098,
|
||||
30099
|
||||
},
|
||||
["skill"]={
|
||||
10074,
|
||||
10075
|
||||
},
|
||||
["passive_skill"]={
|
||||
10013,
|
||||
10012
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[3304]={
|
||||
["monster_base"]=20037,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30106,
|
||||
30107,
|
||||
30108
|
||||
},
|
||||
["skill"]={
|
||||
10079
|
||||
},
|
||||
["passive_skill"]={
|
||||
10013,
|
||||
10009,
|
||||
10084
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[3404]={
|
||||
["monster_base"]=20045,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30150,
|
||||
30151,
|
||||
30152
|
||||
},
|
||||
["skill"]={
|
||||
10133,
|
||||
10134
|
||||
},
|
||||
["passive_skill"]={
|
||||
10012
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[3504]={
|
||||
["monster_base"]=20046,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30153,
|
||||
30154,
|
||||
30155
|
||||
},
|
||||
["skill"]={
|
||||
10135,
|
||||
10136
|
||||
},
|
||||
["passive_skill"]={
|
||||
10012
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[3604]={
|
||||
["monster_base"]=20013,
|
||||
["is_boss"]=1,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30037,
|
||||
30038,
|
||||
30039
|
||||
},
|
||||
["skill"]={
|
||||
10049,
|
||||
10050
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[3704]={
|
||||
["monster_base"]=20024,
|
||||
["is_boss"]=1,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30070,
|
||||
30071,
|
||||
30072
|
||||
},
|
||||
["skill"]={
|
||||
10043,
|
||||
10044
|
||||
},
|
||||
["passive_skill"]={
|
||||
10012
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[3804]={
|
||||
["monster_base"]=20031,
|
||||
["is_boss"]=1,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30091,
|
||||
30092,
|
||||
30093
|
||||
},
|
||||
["skill"]={
|
||||
10058,
|
||||
10059
|
||||
},
|
||||
["passive_skill"]={
|
||||
10008,
|
||||
10011,
|
||||
10013
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[3904]={
|
||||
["monster_base"]=20032,
|
||||
["is_boss"]=1,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30094,
|
||||
30095,
|
||||
30096
|
||||
},
|
||||
["skill"]={
|
||||
10052,
|
||||
10053,
|
||||
10054
|
||||
},
|
||||
["passive_skill"]={
|
||||
10008,
|
||||
10010,
|
||||
10013
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[4004]={
|
||||
["monster_base"]=20038,
|
||||
["is_boss"]=1,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30109,
|
||||
30110,
|
||||
30111,
|
||||
30112
|
||||
},
|
||||
["skill"]={
|
||||
10080,
|
||||
10081
|
||||
},
|
||||
["passive_skill"]={
|
||||
10083,
|
||||
10009,
|
||||
10011
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[4104]={
|
||||
["monster_base"]=20047,
|
||||
["is_boss"]=1,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30156,
|
||||
30157,
|
||||
30158
|
||||
},
|
||||
["skill"]={
|
||||
10137,
|
||||
10138
|
||||
},
|
||||
["passive_skill"]={
|
||||
10013,
|
||||
10010
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
},
|
||||
[4204]={
|
||||
["monster_base"]=20048,
|
||||
["is_boss"]=1,
|
||||
["hp"]=107230000,
|
||||
["atk"]=930000,
|
||||
["atk_times"]=4,
|
||||
["hurt_skill"]={
|
||||
30159,
|
||||
30160,
|
||||
30161
|
||||
},
|
||||
["skill"]={
|
||||
10139,
|
||||
10140
|
||||
},
|
||||
["passive_skill"]={
|
||||
10141,
|
||||
10014,
|
||||
10009
|
||||
},
|
||||
["monster_exp"]=15000
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=monster_activity,count=42
|
||||
}
|
||||
return config
|
||||
10
lua/app/config/monster_activity.lua.meta
Normal file
10
lua/app/config/monster_activity.lua.meta
Normal file
@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 228b857e2abcb754185db1ca23e6184e
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
|
||||
@ -1714,6 +1714,14 @@ local skill = {
|
||||
["round"]=1
|
||||
}
|
||||
},
|
||||
["pvp_effect"]={
|
||||
{
|
||||
["type"]="rebirth",
|
||||
["num"]=5000,
|
||||
["ratio"]=10000,
|
||||
["round"]=1
|
||||
}
|
||||
},
|
||||
["obj"]=1
|
||||
},
|
||||
[1400325]={
|
||||
@ -1723,8 +1731,16 @@ local skill = {
|
||||
["effect"]={
|
||||
{
|
||||
["type"]="rebirth",
|
||||
["num"]=10000,
|
||||
["ratio"]=15000,
|
||||
["num"]=15000,
|
||||
["ratio"]=10000,
|
||||
["round"]=2
|
||||
}
|
||||
},
|
||||
["pvp_effect"]={
|
||||
{
|
||||
["type"]="rebirth",
|
||||
["num"]=7500,
|
||||
["ratio"]=10000,
|
||||
["round"]=2
|
||||
}
|
||||
},
|
||||
@ -12583,7 +12599,7 @@ local skill = {
|
||||
["name_act"]="skill01",
|
||||
["fx_self"]=200171,
|
||||
["bullet_time"]={
|
||||
583,
|
||||
1100,
|
||||
3000,
|
||||
400
|
||||
}
|
||||
@ -12618,7 +12634,7 @@ local skill = {
|
||||
["sound_delay"]=0.0,
|
||||
["name_act"]="skill02",
|
||||
["bullet_time"]={
|
||||
1300,
|
||||
583,
|
||||
3000,
|
||||
400
|
||||
}
|
||||
@ -12935,6 +12951,42 @@ local skill = {
|
||||
["cd"]=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]={
|
||||
["effect_type"]=1,
|
||||
["trigger"]=1,
|
||||
@ -22518,6 +22570,78 @@ local skill = {
|
||||
["name_act"]="attack03",
|
||||
["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]={
|
||||
["effect_type"]=1,
|
||||
["trigger"]=1,
|
||||
@ -27444,6 +27568,6 @@ local skill = {
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=skill,count=985
|
||||
data=skill,count=989
|
||||
}
|
||||
return config
|
||||
@ -36,7 +36,7 @@ local skin = {
|
||||
["num"]=1000
|
||||
}
|
||||
},
|
||||
["icon"]="skin_5",
|
||||
["icon"]="16_1",
|
||||
["got"]=1,
|
||||
["skin_point"]=10,
|
||||
["hero_id"]=14001,
|
||||
@ -68,7 +68,7 @@ local skin = {
|
||||
["num"]=1000
|
||||
}
|
||||
},
|
||||
["icon"]="skin_3",
|
||||
["icon"]="23_1",
|
||||
["got"]=1,
|
||||
["skin_point"]=10,
|
||||
["hero_id"]=14002,
|
||||
@ -160,7 +160,7 @@ local skin = {
|
||||
["num"]=2000
|
||||
}
|
||||
},
|
||||
["icon"]="skin_1",
|
||||
["icon"]="18_1",
|
||||
["got"]=1,
|
||||
["skin_point"]=15,
|
||||
["hero_id"]=34001,
|
||||
@ -246,7 +246,7 @@ local skin = {
|
||||
["num"]=1000000
|
||||
}
|
||||
},
|
||||
["icon"]="skin_4",
|
||||
["icon"]="10_1",
|
||||
["got"]=1,
|
||||
["skin_point"]=5,
|
||||
["hero_id"]=53001,
|
||||
@ -284,7 +284,7 @@ local skin = {
|
||||
["num"]=2000
|
||||
}
|
||||
},
|
||||
["icon"]="skin_2",
|
||||
["icon"]="20_1",
|
||||
["got"]=1,
|
||||
["skin_point"]=15,
|
||||
["hero_id"]=54001,
|
||||
|
||||
@ -106,9 +106,12 @@ local avatar = {
|
||||
},
|
||||
[5400101]={
|
||||
["desc"]="激活刀姬翩然起舞皮肤获得。"
|
||||
},
|
||||
[1400101]={
|
||||
["desc"]="遗迹战甲"
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=avatar,count=36
|
||||
data=avatar,count=37
|
||||
}
|
||||
return config
|
||||
@ -13,9 +13,15 @@ local avatar_frame = {
|
||||
},
|
||||
[27]={
|
||||
["desc"]="S2竞技场黄金头像框,英雄的光辉。"
|
||||
},
|
||||
[28]={
|
||||
["desc"]="S3竞技场白银头像,勇气的代表。"
|
||||
},
|
||||
[29]={
|
||||
["desc"]="S3竞技场黄金头像,实力的证明。"
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=avatar_frame,count=5
|
||||
data=avatar_frame,count=7
|
||||
}
|
||||
return config
|
||||
@ -225,18 +225,23 @@ local buff = {
|
||||
},
|
||||
[84]={
|
||||
["id"]=84,
|
||||
["show_name"]="重生",
|
||||
["desc"]="重生:持续期间被击败则会触发重生并恢复生命,回合结束时未触发重生也会恢复生命。",
|
||||
["tips_desc"]="重生:持续期间被击败则会触发重生并恢复生命,回合结束时未触发重生也会恢复生命。",
|
||||
["name"]="rebirth"
|
||||
},
|
||||
[85]={
|
||||
["id"]=85,
|
||||
["show_name"]="海洋护盾",
|
||||
["desc"]="海洋护盾:承受一定伤害,免疫所有负面效果。",
|
||||
["tips_desc"]="海洋护盾:承受一定伤害,免疫所有负面效果。",
|
||||
["name"]="ocean_shield"
|
||||
},
|
||||
[86]={
|
||||
["id"]=86,
|
||||
["show_name"]="自愈",
|
||||
["desc"]="自愈:回合结束时恢复生命。",
|
||||
["tips_desc"]="自愈:回合结束时恢复生命。",
|
||||
["name"]="self_heal"
|
||||
}
|
||||
}
|
||||
|
||||
@ -454,18 +454,65 @@ local localization_global =
|
||||
["HERO_FUND_DESCC_1"] = "新活动月之祝福开启",
|
||||
["HERO_FUND_DESCC_2"] = "月之祝福",
|
||||
["HERO_FUND_DESCC_3"] = "拥有月之祝福后,在战斗中累计通过波次可获得丰厚奖励。",
|
||||
["HERO_FUND_DESCC_4"] = "新活动14日达标开启",
|
||||
["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}级礼包",
|
||||
["EQUIP_DESC_28"] = "武器直升{0}级礼包",
|
||||
["SEIZED_DESC_1"] = "检测到你的账号存在异常,请联系客服或删除账号使用新建账号继续游戏。",
|
||||
["SEIZED_DESC_2"] = "联系客服",
|
||||
["SEIZED_DESC_3"] = "删除账号",
|
||||
["ACT_FOURTEEN_TITLE_1"] = "登录好礼",
|
||||
["ACT_FOURTEEN_TITLE_2"] = "进阶挑战",
|
||||
["ACT_FOURTEEN_TITLE_3"] = "限时兑换",
|
||||
["ACT_FOURTEEN_TITLE_4"] = "限时礼包",
|
||||
["ACT_FOURTEEN_DESC_1"] = "登陆游戏,既享大礼!",
|
||||
["ACT_FOURTEEN_DESC_2"] = "挑战自己,更有好礼相送!",
|
||||
["ACT_FOURTEEN_DESC_3"] = "时不待人,机不再来!",
|
||||
["ACT_FOURTEEN_DESC_5"] = "登录即可领取奖励,解锁高级战令领取额外奖励!",
|
||||
["ACT_FOURTEEN_DESC_6"] = "阶段",
|
||||
["ACT_FOURTEEN_DESC_7"] = "尚未解锁,请明日再来~",
|
||||
["ACT_FOURTEEN_DESC_8"] = "完成当前阶段所有任务可获得:",
|
||||
["ACT_FOURTEEN_DESC_9"] = "活动期间,完成进阶挑战可获得【挑战点】",
|
||||
["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"] = "参与公开赛,挑战各类首领!\n赢稀有S级英雄!!",
|
||||
["ACT_BOSS_RUSH_DESC_14"] = "立即前往",
|
||||
["ACT_BOSS_RUSH_DESC_15"] = "首领巡礼",
|
||||
["ACT_BOSS_RUSH_DESC_16"] = "累计公开赛挑战波次,可领取首领巡礼奖励。",
|
||||
["ACT_BOSS_RUSH_DESC_17"] = "首领巡礼中获得【首领金币】兑换奖励,活动结束时【首领金币】奖杯回收,请尽快兑换。",
|
||||
["ACT_BOSS_RUSH_DESC_18"] = "兑换",
|
||||
["ACT_BOSS_RUSH_DESC_19"] = "剩余次数:{0}",
|
||||
["ACT_BOSS_RUSH_DESC_20"] = "昨日",
|
||||
["ACT_BOSS_RUSH_DESC_21"] = "今日",
|
||||
["ACT_BOSS_RUSH_DESC_22"] = "奖励",
|
||||
["ACT_BOSS_RUSH_DESC_23"] = "排名:{0}",
|
||||
["ACT_BOSS_RUSH_DESC_24"] = "排名",
|
||||
["ACT_BOSS_RUSH_DESC_25"] = "玩家",
|
||||
["ACT_BOSS_RUSH_DESC_26"] = "记录",
|
||||
["ACT_BOSS_RUSH_DESC_27"] = "1.排行榜将以当日最大波数进行排名,波数相同的玩家将对比最小回合数。\n2.排行榜每日0点(UTC-0)刷新重置,重置后可根据前一天的排名领取奖励,奖励过期未领将不会补发。",
|
||||
["ACT_BOSS_RUSH_DESC_28"] = "新纪录",
|
||||
["ACT_BOSS_RUSH_DESC_29"] = "巡回积分",
|
||||
["ACT_BOSS_RUSH_DESC_30"] = "挑战完成",
|
||||
["ACT_BOSS_RUSH_DESC_31"] = "1.首领出场顺序和地图每日都将进行变化。\n2.战斗开始后,您的英雄技能默认已激活,但强化技能还需要升级获得,战斗内最多提升40级。\n3.叠加属性的强化技能,最多可生效10次。\n4.每日公开赛的排名都将结算一次,结算可获得大量【首领金币】,可用于活动商店兑换奖励。\n5.首领巡礼将根据您参与公开赛战斗的累计波次给与奖励。\n5.每日可免费挑战1次,后续挑战需要消耗钻石,请准备好再开始挑战。",
|
||||
["ACT_BOSS_RUSH_DESC_32"] = "限时礼包,倾情回馈!",
|
||||
["ACT_BOSS_RUSH_DESC_33"] = "阶段{0}解锁",
|
||||
["NOT_POP_TODAY"] = "今日不再提醒",
|
||||
["ACT_BOSS_RUSH_DESC_34"] = "退出将按照当前波次结算,是否退出?",
|
||||
}
|
||||
|
||||
return localization_global
|
||||
@ -187,6 +187,22 @@ local item = {
|
||||
["name"]="随机史诗英雄",
|
||||
["desc"]="批量获取时只会随机以下英雄中的一名"
|
||||
},
|
||||
[51]={
|
||||
["name"]="挑战点",
|
||||
["desc"]="挑战点,进阶挑战限时兑换奖励。"
|
||||
},
|
||||
[52]={
|
||||
["name"]="首领金币",
|
||||
["desc"]="首领金币,可在首领公开赛的活动商店中兑换奖励。"
|
||||
},
|
||||
[53]={
|
||||
["name"]="S3赛季白银头像框",
|
||||
["desc"]="S3竞技场白银头像框,勇气的代表。"
|
||||
},
|
||||
[54]={
|
||||
["name"]="S3赛季黄金头像框",
|
||||
["desc"]="S3竞技场黄金头像框,实力的证明。"
|
||||
},
|
||||
[1001]={
|
||||
["name"]="暗淡陨铁",
|
||||
["desc"]="一块暗淡的陨铁,蕴含着神秘的能量。"
|
||||
@ -445,6 +461,6 @@ local item = {
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=item,count=111
|
||||
data=item,count=115
|
||||
}
|
||||
return config
|
||||
123
lua/app/config/strings/cn/task_type.lua
Normal file
123
lua/app/config/strings/cn/task_type.lua
Normal file
@ -0,0 +1,123 @@
|
||||
local task_type = {
|
||||
[1]={
|
||||
["desc"]="累计观看广告"
|
||||
},
|
||||
[2]={
|
||||
["desc"]="获得金币"
|
||||
},
|
||||
[3]={
|
||||
["desc"]="获得钻石"
|
||||
},
|
||||
[4]={
|
||||
["desc"]="消耗金币"
|
||||
},
|
||||
[5]={
|
||||
["desc"]="消耗钻石"
|
||||
},
|
||||
[6]={
|
||||
["desc"]="开启商城任意宝箱"
|
||||
},
|
||||
[7]={
|
||||
["desc"]="开启商城史诗宝箱"
|
||||
},
|
||||
[8]={
|
||||
["desc"]="关卡内打开技能神灯"
|
||||
},
|
||||
[9]={
|
||||
["desc"]="在战斗中获胜"
|
||||
},
|
||||
[10]={
|
||||
["desc"]="升级你的英雄"
|
||||
},
|
||||
[11]={
|
||||
["desc"]="获得英雄碎片"
|
||||
},
|
||||
[12]={
|
||||
["desc"]="击杀首领"
|
||||
},
|
||||
[13]={
|
||||
["desc"]="击杀小怪"
|
||||
},
|
||||
[14]={
|
||||
["desc"]="累计消除元素"
|
||||
},
|
||||
[15]={
|
||||
["desc"]="6连消次数"
|
||||
},
|
||||
[16]={
|
||||
["desc"]="8连消次数"
|
||||
},
|
||||
[17]={
|
||||
["desc"]="战斗中超过10连击次数"
|
||||
},
|
||||
[18]={
|
||||
["desc"]="战斗中释放技能次数"
|
||||
},
|
||||
[19]={
|
||||
["desc"]="通过战斗波次"
|
||||
},
|
||||
[20]={
|
||||
["desc"]="每日任务完成X个"
|
||||
},
|
||||
[21]={
|
||||
["desc"]="直接看1次广告的任务"
|
||||
},
|
||||
[22]={
|
||||
["desc"]="累计签到{0}天"
|
||||
},
|
||||
[23]={
|
||||
["desc"]="等级达到{0}"
|
||||
},
|
||||
[24]={
|
||||
["desc"]="通过主线章节{0}"
|
||||
},
|
||||
[25]={
|
||||
["desc"]="英雄最高等级达到{0}"
|
||||
},
|
||||
[26]={
|
||||
["desc"]="消耗体力{0}点"
|
||||
},
|
||||
[27]={
|
||||
["desc"]="拥有{0}个英雄"
|
||||
},
|
||||
[28]={
|
||||
["desc"]="开启{0}次普通宝箱"
|
||||
},
|
||||
[29]={
|
||||
["desc"]="开启{0}次珍贵宝箱"
|
||||
},
|
||||
[30]={
|
||||
["desc"]="竞技场挑战次数"
|
||||
},
|
||||
[31]={
|
||||
["desc"]="竞技场段位达到{0}"
|
||||
},
|
||||
[32]={
|
||||
["desc"]="深渊挑战通关{0}"
|
||||
},
|
||||
[33]={
|
||||
["desc"]="通关时空裂隙{0}-{1}"
|
||||
},
|
||||
[34]={
|
||||
["desc"]="通关矿车拦截{0}"
|
||||
},
|
||||
[35]={
|
||||
["desc"]="通关灯神之塔{0}"
|
||||
},
|
||||
[36]={
|
||||
["desc"]="每日挑战胜利{0}次"
|
||||
},
|
||||
[37]={
|
||||
["desc"]="开启主线宝箱{0}个"
|
||||
},
|
||||
[38]={
|
||||
["desc"]="武器升级{0}次"
|
||||
},
|
||||
[39]={
|
||||
["desc"]="防具升级{0}次"
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=task_type,count=39
|
||||
}
|
||||
return config
|
||||
10
lua/app/config/strings/cn/task_type.lua.meta
Normal file
10
lua/app/config/strings/cn/task_type.lua.meta
Normal file
@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b10781256ecf831459ed491d7dab37ea
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
|
||||
@ -106,9 +106,12 @@ local avatar = {
|
||||
},
|
||||
[5400101]={
|
||||
|
||||
},
|
||||
[1400101]={
|
||||
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=avatar,count=36
|
||||
data=avatar,count=37
|
||||
}
|
||||
return config
|
||||
@ -13,9 +13,15 @@ local avatar_frame = {
|
||||
},
|
||||
[27]={
|
||||
|
||||
},
|
||||
[28]={
|
||||
|
||||
},
|
||||
[29]={
|
||||
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=avatar_frame,count=5
|
||||
data=avatar_frame,count=7
|
||||
}
|
||||
return config
|
||||
@ -32,6 +32,7 @@ local localization_global =
|
||||
["TWITTER_DESC"] = "Twitter",
|
||||
["NAVER_SETTING_DESC"] = "Naver",
|
||||
["ACT_DESC_12"] = "LV",
|
||||
["ACT_BOSS_RUSH_DESC_6"] = "Chances de hoy:{0}",
|
||||
}
|
||||
|
||||
return localization_global
|
||||
@ -139,6 +139,18 @@ local item = {
|
||||
},
|
||||
[47]={
|
||||
|
||||
},
|
||||
[51]={
|
||||
|
||||
},
|
||||
[52]={
|
||||
|
||||
},
|
||||
[53]={
|
||||
|
||||
},
|
||||
[54]={
|
||||
|
||||
},
|
||||
[1001]={
|
||||
|
||||
@ -334,6 +346,6 @@ local item = {
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=item,count=111
|
||||
data=item,count=115
|
||||
}
|
||||
return config
|
||||
123
lua/app/config/strings/de/task_type.lua
Normal file
123
lua/app/config/strings/de/task_type.lua
Normal file
@ -0,0 +1,123 @@
|
||||
local task_type = {
|
||||
[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]={
|
||||
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=task_type,count=39
|
||||
}
|
||||
return config
|
||||
10
lua/app/config/strings/de/task_type.lua.meta
Normal file
10
lua/app/config/strings/de/task_type.lua.meta
Normal file
@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1d88d0e4f96b2a8488ecd37a95288351
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
|
||||
@ -106,9 +106,12 @@ local avatar = {
|
||||
},
|
||||
[5400101]={
|
||||
["desc"]="Obtained after activating Graceful Dance."
|
||||
},
|
||||
[1400101]={
|
||||
["desc"]="Relic Armor"
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=avatar,count=36
|
||||
data=avatar,count=37
|
||||
}
|
||||
return config
|
||||
@ -13,9 +13,15 @@ local avatar_frame = {
|
||||
},
|
||||
[27]={
|
||||
["desc"]="S2 Gold Arena Avatar Frame, shining with heroic radiance."
|
||||
},
|
||||
[28]={
|
||||
["desc"]="S3 Silver Arena Avatar Frame. It is reversed for hero."
|
||||
},
|
||||
[29]={
|
||||
["desc"]="S3 Gold Arena Avatar Frame. Proof of your prowess."
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=avatar_frame,count=5
|
||||
data=avatar_frame,count=7
|
||||
}
|
||||
return config
|
||||
@ -225,14 +225,23 @@ local buff = {
|
||||
},
|
||||
[84]={
|
||||
["id"]=84,
|
||||
["show_name"]="Rebirth",
|
||||
["desc"]="Rebirth: During the Rebirth, when you are defeated or the turn ends, it will trigger to restore HP.",
|
||||
["tips_desc"]="Rebirth: During the Rebirth, when you are defeated or the turn ends, it will trigger to restore HP.",
|
||||
["name"]="rebirth"
|
||||
},
|
||||
[85]={
|
||||
["id"]=85,
|
||||
["show_name"]="Ocean Shield",
|
||||
["desc"]="Ocean Shield: Can take a certain amount of damage and stay immune to all debuffs.",
|
||||
["tips_desc"]="Ocean Shield: Can take a certain amount of damage and stay immune to all debuffs.",
|
||||
["name"]="ocean_shield"
|
||||
},
|
||||
[86]={
|
||||
["id"]=86,
|
||||
["show_name"]="Self-healing",
|
||||
["desc"]="Self-healing: Restore HP at the end of the turn.",
|
||||
["tips_desc"]="Self-healing: Restore HP at the end of the turn.",
|
||||
["name"]="self_heal"
|
||||
}
|
||||
}
|
||||
|
||||
@ -460,11 +460,58 @@ local localization_global =
|
||||
["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",
|
||||
["EQUIP_DESC_28"] = "Weapon 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",
|
||||
["ACT_FOURTEEN_TITLE_1"] = "Login Rewards",
|
||||
["ACT_FOURTEEN_TITLE_2"] = "Advanced Challenge",
|
||||
["ACT_FOURTEEN_TITLE_3"] = "Limited-Time Exchange",
|
||||
["ACT_FOURTEEN_TITLE_4"] = "Limited-Time Pack",
|
||||
["ACT_FOURTEEN_DESC_1"] = "Log in to the game and receive great rewards!",
|
||||
["ACT_FOURTEEN_DESC_2"] = "Challenge yourself and receive even better rewards!",
|
||||
["ACT_FOURTEEN_DESC_3"] = "Time waits for no one, and chances don't come again!",
|
||||
["ACT_FOURTEEN_DESC_5"] = "Log in to claim rewards and get extra rewards by unlocking Premium Battle Pass!",
|
||||
["ACT_FOURTEEN_DESC_6"] = "Stage",
|
||||
["ACT_FOURTEEN_DESC_7"] = "Locked. Please come back tomorrow~",
|
||||
["ACT_FOURTEEN_DESC_8"] = "Completing all quests in the current stage grants:",
|
||||
["ACT_FOURTEEN_DESC_9"] = "During the event, completing the advanced challenges grants [Challenge Points].",
|
||||
["ACT_BOSS_RUSH_DESC_1"] = "Confirm to spend {0} Diamonds to battle?",
|
||||
["ACT_BOSS_RUSH_DESC_2"] = "Boss Championship",
|
||||
["ACT_BOSS_RUSH_DESC_3"] = "Master Today",
|
||||
["ACT_BOSS_RUSH_DESC_4"] = "My highest today:",
|
||||
["ACT_BOSS_RUSH_DESC_5"] = "My challenges today: {0} times",
|
||||
["ACT_BOSS_RUSH_DESC_6"] = "今日次数:{0}",
|
||||
["ACT_BOSS_RUSH_DESC_7"] = "Cost:",
|
||||
["ACT_BOSS_RUSH_DESC_8"] = "Vacant",
|
||||
["ACT_BOSS_RUSH_DESC_9"] = "Line-up",
|
||||
["ACT_BOSS_RUSH_DESC_10"] = "Leaderboard",
|
||||
["ACT_BOSS_RUSH_DESC_11"] = "Boss Parade",
|
||||
["ACT_BOSS_RUSH_DESC_12"] = "Event Shop",
|
||||
["ACT_BOSS_RUSH_DESC_13"] = "Participate in the championship to challenge bosses!Win rare S heroes!!",
|
||||
["ACT_BOSS_RUSH_DESC_14"] = "Go",
|
||||
["ACT_BOSS_RUSH_DESC_15"] = "Boss Parade",
|
||||
["ACT_BOSS_RUSH_DESC_16"] = "Challenge enough boss championship waves to claim Boss Parade rewards.",
|
||||
["ACT_BOSS_RUSH_DESC_17"] = "Obtain [Boss Coins] in the Boss Parade to exchange for rewards. [Boss Coins] will be reclaimed when the event ends. Please exchange them on time.",
|
||||
["ACT_BOSS_RUSH_DESC_18"] = "Exchange",
|
||||
["ACT_BOSS_RUSH_DESC_19"] = "Remaining Attempts:{0}",
|
||||
["ACT_BOSS_RUSH_DESC_20"] = "Yesterday",
|
||||
["ACT_BOSS_RUSH_DESC_21"] = "Today",
|
||||
["ACT_BOSS_RUSH_DESC_22"] = "Rewards",
|
||||
["ACT_BOSS_RUSH_DESC_23"] = "Ranking:{0}",
|
||||
["ACT_BOSS_RUSH_DESC_24"] = "Ranking",
|
||||
["ACT_BOSS_RUSH_DESC_25"] = "Player",
|
||||
["ACT_BOSS_RUSH_DESC_26"] = "Record",
|
||||
["ACT_BOSS_RUSH_DESC_27"] = "1. Ranking will be based on the highest wave reached within the given day, and if multiple players have the same wave, the comparison will be based on the lowest number of turns taken. \n2. Ranking resets at 0:00 UTC daily, and then you can claim rewards based on your ranking from the previous day. Unclaimed rewards will not be reissued.",
|
||||
["ACT_BOSS_RUSH_DESC_28"] = "New Record",
|
||||
["ACT_BOSS_RUSH_DESC_29"] = "Parade Points",
|
||||
["ACT_BOSS_RUSH_DESC_30"] = "Challenge Completed",
|
||||
["ACT_BOSS_RUSH_DESC_31"] = "1. The order of bosses' appearance and the map will change daily. \n2. When the battle starts, your hero's skills are initially activated, but enhanced skills need to be upgraded, up to Lv. 40 in the battle. \n3. Enhancement skills that stack attributes can be effective up to 10 times.\n4. Championship ranking will be calculated once daily, and then you'll receive tons of [Boss Coins] that can exchange rewards in the event shop. \n5. Boss Parade will grant rewards based on the cumulative waves of battles you participate in during the championship. \n6. You can challenge once for free every day, and later challenges will consume Diamonds. Please brace yourself before engaging.",
|
||||
["ACT_BOSS_RUSH_DESC_32"] = "Highly rewarding limited time packages!",
|
||||
["ACT_BOSS_RUSH_DESC_33"] = "Stage {0} Unlocked",
|
||||
["NOT_POP_TODAY"] = "Don't remind me today",
|
||||
["ACT_BOSS_RUSH_DESC_34"] = "When you quit, the battle will be settled according to the current wave, do you quit?",
|
||||
}
|
||||
|
||||
return localization_global
|
||||
@ -187,6 +187,22 @@ local item = {
|
||||
["name"]="Random Epic Hero",
|
||||
["desc"]="Shards obtained in batch will only randomly grant one of the following heroes."
|
||||
},
|
||||
[51]={
|
||||
["name"]="Challenge Points",
|
||||
["desc"]="Challenge Points can exchange time-limited rewards of Advanced Challenges."
|
||||
},
|
||||
[52]={
|
||||
["name"]="Boss Coins",
|
||||
["desc"]="Boss Coin can exchange rewards in the event shop of Boss Championship."
|
||||
},
|
||||
[53]={
|
||||
["name"]="S3 Silver Avatar Frame",
|
||||
["desc"]="S3 Silver Arena Avatar Frame. It is reversed for hero."
|
||||
},
|
||||
[54]={
|
||||
["name"]="S3 Gold Avatar Frame",
|
||||
["desc"]="S3 Gold Arena Avatar Frame. Proof of your prowess."
|
||||
},
|
||||
[1001]={
|
||||
["name"]="Dim Meteorite",
|
||||
["desc"]="A dim meteorite that holds a mysterious energy."
|
||||
@ -445,6 +461,6 @@ local item = {
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=item,count=111
|
||||
data=item,count=115
|
||||
}
|
||||
return config
|
||||
@ -474,7 +474,7 @@ local skill_rogue = {
|
||||
["desc"]="Alluring Nightmare can clear additional <color=#3cff28>4</color> grids in the X direction."
|
||||
},
|
||||
[3400202]={
|
||||
["desc"]="<color=#fcff28>Combo</color>: Alluring Nightmare deals <color=#3cff28>50%</color> more damage to Vulnerable enemies."
|
||||
["desc"]="<color=#fcff28>Combo</color>: Alluring Nightmare deals <color=#3cff28>50%</color> more damage to <color=#3cff28>Weak</color> enemies."
|
||||
},
|
||||
[3400203]={
|
||||
["desc"]="Alluring Nightmare can clear additional <color=#3cff28>4</color> grids in the X direction."
|
||||
|
||||
123
lua/app/config/strings/en/task_type.lua
Normal file
123
lua/app/config/strings/en/task_type.lua
Normal file
@ -0,0 +1,123 @@
|
||||
local task_type = {
|
||||
[1]={
|
||||
["desc"]="Ads watched"
|
||||
},
|
||||
[2]={
|
||||
["desc"]="Obtain Gold Coins"
|
||||
},
|
||||
[3]={
|
||||
["desc"]="Obtain Diamonds"
|
||||
},
|
||||
[4]={
|
||||
["desc"]="Spend Gold Coins"
|
||||
},
|
||||
[5]={
|
||||
["desc"]="Spend Diamonds"
|
||||
},
|
||||
[6]={
|
||||
["desc"]="Open Any Chest in the Shop"
|
||||
},
|
||||
[7]={
|
||||
["desc"]="Open Epic Chest in the Shop"
|
||||
},
|
||||
[8]={
|
||||
["desc"]="Open skill lamp in the stage"
|
||||
},
|
||||
[9]={
|
||||
["desc"]="Win the battle"
|
||||
},
|
||||
[10]={
|
||||
["desc"]="Upgrade Hero"
|
||||
},
|
||||
[11]={
|
||||
["desc"]="Obtain Hero Shard"
|
||||
},
|
||||
[12]={
|
||||
["desc"]="Kill boss"
|
||||
},
|
||||
[13]={
|
||||
["desc"]="Kill minions"
|
||||
},
|
||||
[14]={
|
||||
["desc"]="Elements cleared"
|
||||
},
|
||||
[15]={
|
||||
["desc"]="6-Links"
|
||||
},
|
||||
[16]={
|
||||
["desc"]="8-Links"
|
||||
},
|
||||
[17]={
|
||||
["desc"]="10 Hits or more in battle"
|
||||
},
|
||||
[18]={
|
||||
["desc"]="Skills used in battle"
|
||||
},
|
||||
[19]={
|
||||
["desc"]="Clear battle waves"
|
||||
},
|
||||
[20]={
|
||||
|
||||
},
|
||||
[21]={
|
||||
|
||||
},
|
||||
[22]={
|
||||
["desc"]="Log in for {0} day"
|
||||
},
|
||||
[23]={
|
||||
["desc"]="Reach level {0}"
|
||||
},
|
||||
[24]={
|
||||
["desc"]="Clear Chapter {0} of Main Story"
|
||||
},
|
||||
[25]={
|
||||
["desc"]="Hero's highest level reaches {0}"
|
||||
},
|
||||
[26]={
|
||||
["desc"]="Use {0} stamina"
|
||||
},
|
||||
[27]={
|
||||
["desc"]="Own {0} heroes"
|
||||
},
|
||||
[28]={
|
||||
["desc"]="Open {0} Common Chest"
|
||||
},
|
||||
[29]={
|
||||
["desc"]="Open {0} Precious Chest"
|
||||
},
|
||||
[30]={
|
||||
["desc"]="Arena Challenge Attempts"
|
||||
},
|
||||
[31]={
|
||||
["desc"]="Reach {0} in the Arena"
|
||||
},
|
||||
[32]={
|
||||
["desc"]="Clear Abyss Challenge {0}"
|
||||
},
|
||||
[33]={
|
||||
["desc"]="Clear Time Rift {0}-{1}"
|
||||
},
|
||||
[34]={
|
||||
["desc"]="Clear Minecart Interception {0}"
|
||||
},
|
||||
[35]={
|
||||
["desc"]="Clear Tower of Lumens {0}"
|
||||
},
|
||||
[36]={
|
||||
["desc"]="Win in Daily Challenges {0} times"
|
||||
},
|
||||
[37]={
|
||||
["desc"]="Open {0} Main Story Chests"
|
||||
},
|
||||
[38]={
|
||||
["desc"]="Upgrade weapon {0} times"
|
||||
},
|
||||
[39]={
|
||||
["desc"]="Upgrade armor {0} times"
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=task_type,count=39
|
||||
}
|
||||
return config
|
||||
10
lua/app/config/strings/en/task_type.lua.meta
Normal file
10
lua/app/config/strings/en/task_type.lua.meta
Normal file
@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ad57b1002d1ee974d97f01d213b96642
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
|
||||
@ -106,9 +106,12 @@ local avatar = {
|
||||
},
|
||||
[5400101]={
|
||||
["desc"]="Se obtiene tras activar Danza Elegante."
|
||||
},
|
||||
[1400101]={
|
||||
["desc"]="Armadura de Ruinas"
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=avatar,count=36
|
||||
data=avatar,count=37
|
||||
}
|
||||
return config
|
||||
@ -13,9 +13,15 @@ local avatar_frame = {
|
||||
},
|
||||
[27]={
|
||||
["desc"]="Marco de avatar de oro de Arena S1, gloria del héroe."
|
||||
},
|
||||
[28]={
|
||||
["desc"]="Marco de avatar de plata Temporada S3, símbolo de valentía."
|
||||
},
|
||||
[29]={
|
||||
["desc"]="Marco de avatar de oro Temporada S3, prueba de fuerza."
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=avatar_frame,count=5
|
||||
data=avatar_frame,count=7
|
||||
}
|
||||
return config
|
||||
@ -225,14 +225,23 @@ local buff = {
|
||||
},
|
||||
[84]={
|
||||
["id"]=84,
|
||||
["show_name"]="Resucitación",
|
||||
["desc"]="Resucitación: se activa y restaura HP cuando el héroe es derrotado durante el efecto, o cuando llega el final de la ronda.",
|
||||
["tips_desc"]="Resucitación: se activa y restaura HP cuando el héroe es derrotado durante el efecto, o cuando llega el final de la ronda.",
|
||||
["name"]="rebirth"
|
||||
},
|
||||
[85]={
|
||||
["id"]=85,
|
||||
["show_name"]="Escudo Marino",
|
||||
["desc"]="Escudo Marino: Soporta una cierta cantidad de daño y es inmune a todos los debuffs.",
|
||||
["tips_desc"]="Escudo Marino: Soporta una cierta cantidad de daño y es inmune a todos los debuffs.",
|
||||
["name"]="ocean_shield"
|
||||
},
|
||||
[86]={
|
||||
["id"]=86,
|
||||
["show_name"]="Autocura",
|
||||
["desc"]="Autocura: Restaura HP al final de la ronda.",
|
||||
["tips_desc"]="Autocura: Restaura HP al final de la ronda.",
|
||||
["name"]="self_heal"
|
||||
}
|
||||
}
|
||||
|
||||
@ -460,11 +460,58 @@ local localization_global =
|
||||
["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}",
|
||||
["EQUIP_DESC_28"] = "Paquete de Mejora de Arma 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",
|
||||
["ACT_FOURTEEN_TITLE_1"] = "Regalo de Acceso",
|
||||
["ACT_FOURTEEN_TITLE_2"] = "Desafío Avanzado",
|
||||
["ACT_FOURTEEN_TITLE_3"] = "Canje por Tiempo Limitado",
|
||||
["ACT_FOURTEEN_TITLE_4"] = "Paquete por Tiempo Limitado",
|
||||
["ACT_FOURTEEN_DESC_1"] = "¡Entra en el juego y disfruta de regalos!",
|
||||
["ACT_FOURTEEN_DESC_2"] = "¡Desafíate y recibe regalos!",
|
||||
["ACT_FOURTEEN_DESC_3"] = "¡Es ahora o nunca!",
|
||||
["ACT_FOURTEEN_DESC_5"] = "¡Entra el juego para recibir recompensas, y gana recompensas adicionales al desbloquear el Pase de Batalla Premium!",
|
||||
["ACT_FOURTEEN_DESC_6"] = "Etapa",
|
||||
["ACT_FOURTEEN_DESC_7"] = "Está bloqueado. Por favor vuelve mañana.",
|
||||
["ACT_FOURTEEN_DESC_8"] = "Tras completar todas las misiones en la etapa actual, podrá obtener:",
|
||||
["ACT_FOURTEEN_DESC_9"] = "Durante el evento, se puede obtener [Puntos de desafío] completando Desafío Avanzado.",
|
||||
["ACT_BOSS_RUSH_DESC_1"] = "¿Quieres entrar en combate con {0} diamantes?",
|
||||
["ACT_BOSS_RUSH_DESC_2"] = "Abierto de Jefes",
|
||||
["ACT_BOSS_RUSH_DESC_3"] = "El maestro de hoy",
|
||||
["ACT_BOSS_RUSH_DESC_4"] = "Mi récord de hoy:",
|
||||
["ACT_BOSS_RUSH_DESC_5"] = "Mis desafíos de hoy: {0}",
|
||||
["ACT_BOSS_RUSH_DESC_6"] = "จำนวนวันนี้:{0}",
|
||||
["ACT_BOSS_RUSH_DESC_7"] = "Consumo:",
|
||||
["ACT_BOSS_RUSH_DESC_8"] = "Vacante",
|
||||
["ACT_BOSS_RUSH_DESC_9"] = "Alineación",
|
||||
["ACT_BOSS_RUSH_DESC_10"] = "Clasificación",
|
||||
["ACT_BOSS_RUSH_DESC_11"] = "Desfile de Jefes",
|
||||
["ACT_BOSS_RUSH_DESC_12"] = "Tienda del Evento",
|
||||
["ACT_BOSS_RUSH_DESC_13"] = "¡Participa en torneos abiertos y desafía a los jefes!¡Gana héroes raros de clase S!",
|
||||
["ACT_BOSS_RUSH_DESC_14"] = "Ir ahora",
|
||||
["ACT_BOSS_RUSH_DESC_15"] = "Desfile de Jefes",
|
||||
["ACT_BOSS_RUSH_DESC_16"] = "Acumula las ondas de desafíos del Abierto para recibir recompensas de Desfile de Jefes.",
|
||||
["ACT_BOSS_RUSH_DESC_17"] = "Obtén [Monedas de Jefe] en Desfile de Jefes para canjearlas por recompensas. Cuando termina el evento, las [Monedas de Jefe] serán recicladas. No olvides de canjearlas a tiempo.",
|
||||
["ACT_BOSS_RUSH_DESC_18"] = "Canjear",
|
||||
["ACT_BOSS_RUSH_DESC_19"] = "Chances Restantes:{0}",
|
||||
["ACT_BOSS_RUSH_DESC_20"] = "Ayer",
|
||||
["ACT_BOSS_RUSH_DESC_21"] = "Hoy",
|
||||
["ACT_BOSS_RUSH_DESC_22"] = "Recompensa",
|
||||
["ACT_BOSS_RUSH_DESC_23"] = "Clasificación:{0}",
|
||||
["ACT_BOSS_RUSH_DESC_24"] = "Clasificación",
|
||||
["ACT_BOSS_RUSH_DESC_25"] = "Jugador",
|
||||
["ACT_BOSS_RUSH_DESC_26"] = "Récord",
|
||||
["ACT_BOSS_RUSH_DESC_27"] = "1.La clasificación se basará en el número máximo de ondas del día. Para los jugadores con el mismo número de ondas, se compararán el número menor de rondas. \2.La clasificación se restablecerá a las 0:00 (UTC-0) todos los días y, tras el restablecimiento, podrás colectar las recompensas según la clasificación del día anterior. Las recompensas no colectadas no serán reemitidas.",
|
||||
["ACT_BOSS_RUSH_DESC_28"] = "Nuevo Récord",
|
||||
["ACT_BOSS_RUSH_DESC_29"] = "Puntos de Desfile",
|
||||
["ACT_BOSS_RUSH_DESC_30"] = "Desafío completado",
|
||||
["ACT_BOSS_RUSH_DESC_31"] = "1. El orden de aparición de los jefes y del mapa cambian diariamente. \n2. Cuando comienza la batalla, las habilidades de tu héroe se activan por defecto, pero las habilidades reforzadas requieren mejoras, hasta 40 niveles dentro de la batalla. \n3. Las habilidades de refuerzo de atributos superpuestos pueden entrar en vigor hasta 10 veces. \n4. La clasificación del Abierto se calcula diariamente, y se otorgará una gran cantidad de [Monedas de Jefe], que se puede utilizar en la tienda del evento para canjear por recompensas. \n5. Las recompensas del Desfile de Jefes se basa en el número acumulado de ondas participadas en las batallas del Abierto. \n6. Puedes desafiar gratuitamente una vez al día, y los desafíos posteriores requieren diamantes. Prepárate antes de empezar un desafío adicional.",
|
||||
["ACT_BOSS_RUSH_DESC_32"] = "¡Paquete especial de tiempo limitado!",
|
||||
["ACT_BOSS_RUSH_DESC_33"] = "Desbloqueo de la etapa {0}",
|
||||
["NOT_POP_TODAY"] = "No más notas por hoy",
|
||||
["ACT_BOSS_RUSH_DESC_34"] = "¿Después de la salida, la batalla se liquidará de acuerdo con la ola actual, ¿ se retirará?",
|
||||
}
|
||||
|
||||
return localization_global
|
||||
@ -187,6 +187,22 @@ local item = {
|
||||
["name"]="Héroe Épico aleatorio",
|
||||
["desc"]="Al obtener por lote, solo aparecerá uno de los siguientes héroes"
|
||||
},
|
||||
[51]={
|
||||
["name"]="Puntos de Desafío",
|
||||
["desc"]="Los Puntos de Desafío se pueden canjear por recompensas en Desafío Avanzado por tiempo limitado."
|
||||
},
|
||||
[52]={
|
||||
["name"]="Monedas de Jefe",
|
||||
["desc"]="Las Monedas de Jefe se pueden canjear por recompensas en la tienda del evento Abierto de Jefes."
|
||||
},
|
||||
[53]={
|
||||
["name"]="Marco de avatar de plata Temporada S3",
|
||||
["desc"]="Marco de avatar de plata Temporada S3, símbolo de valentía."
|
||||
},
|
||||
[54]={
|
||||
["name"]="Marco de avatar de oro Temporada S3",
|
||||
["desc"]="Marco de avatar de oro Temporada S3, prueba de fuerza."
|
||||
},
|
||||
[1001]={
|
||||
["name"]="Meteorito Opaco",
|
||||
["desc"]="Un trozo de meteorito opaco que contiene energía misteriosa."
|
||||
@ -445,6 +461,6 @@ local item = {
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=item,count=111
|
||||
data=item,count=115
|
||||
}
|
||||
return config
|
||||
123
lua/app/config/strings/es/task_type.lua
Normal file
123
lua/app/config/strings/es/task_type.lua
Normal file
@ -0,0 +1,123 @@
|
||||
local task_type = {
|
||||
[1]={
|
||||
["desc"]="Anuncios vistos"
|
||||
},
|
||||
[2]={
|
||||
["desc"]="Obtener monedas"
|
||||
},
|
||||
[3]={
|
||||
["desc"]="Obtener diamantes"
|
||||
},
|
||||
[4]={
|
||||
["desc"]="Gastar monedas"
|
||||
},
|
||||
[5]={
|
||||
["desc"]="Gastar diamantes"
|
||||
},
|
||||
[6]={
|
||||
["desc"]="Abre cualquier cofre de la Tienda"
|
||||
},
|
||||
[7]={
|
||||
["desc"]="Abre un cofre épico de la Tienda"
|
||||
},
|
||||
[8]={
|
||||
["desc"]="Enciende la lámpara de habilidad en la fase."
|
||||
},
|
||||
[9]={
|
||||
["desc"]="Gana un combate"
|
||||
},
|
||||
[10]={
|
||||
["desc"]="Mejora tus héroes"
|
||||
},
|
||||
[11]={
|
||||
["desc"]="Obtiene fragmentos de héroes"
|
||||
},
|
||||
[12]={
|
||||
["desc"]="Mata al jefe"
|
||||
},
|
||||
[13]={
|
||||
["desc"]="Mata los monstruos"
|
||||
},
|
||||
[14]={
|
||||
["desc"]="Elementos eliminados"
|
||||
},
|
||||
[15]={
|
||||
["desc"]="Eliminaciones de 6 objetos"
|
||||
},
|
||||
[16]={
|
||||
["desc"]="Eliminaciones de 8 objetos"
|
||||
},
|
||||
[17]={
|
||||
["desc"]="Número de 10 o más hits en un combate"
|
||||
},
|
||||
[18]={
|
||||
["desc"]="Número de habilidades lanzadas en un combate"
|
||||
},
|
||||
[19]={
|
||||
["desc"]="Ondas de combates completadas"
|
||||
},
|
||||
[20]={
|
||||
|
||||
},
|
||||
[21]={
|
||||
|
||||
},
|
||||
[22]={
|
||||
["desc"]="Acumular {0} dia de check-in"
|
||||
},
|
||||
[23]={
|
||||
["desc"]="Atingir nível {0}"
|
||||
},
|
||||
[24]={
|
||||
["desc"]="Passar pelo Capítulo {0} da campanha principal"
|
||||
},
|
||||
[25]={
|
||||
["desc"]="Nível máximo do herói atingir {0}"
|
||||
},
|
||||
[26]={
|
||||
["desc"]="Gastar {0} pontos de energia"
|
||||
},
|
||||
[27]={
|
||||
["desc"]="Possuir {0} heróis"
|
||||
},
|
||||
[28]={
|
||||
["desc"]="Abrir {0} baú comum"
|
||||
},
|
||||
[29]={
|
||||
["desc"]="Abrir {0} baú valioso"
|
||||
},
|
||||
[30]={
|
||||
["desc"]="Desafíos de Arena"
|
||||
},
|
||||
[31]={
|
||||
["desc"]="Alcanza {0} en la Arena"
|
||||
},
|
||||
[32]={
|
||||
["desc"]="Completa el Desafío Abisal {0}"
|
||||
},
|
||||
[33]={
|
||||
["desc"]="Completa fases 3 a 6 de Grieta de Tiempo"
|
||||
},
|
||||
[34]={
|
||||
["desc"]="Completa Interceptación de Vagoneta"
|
||||
},
|
||||
[35]={
|
||||
["desc"]="Completa Torre de Genio de Lámpara"
|
||||
},
|
||||
[36]={
|
||||
["desc"]="{0} victorias en desafíos diarios"
|
||||
},
|
||||
[37]={
|
||||
["desc"]="Abre {0} cofres de línea principal"
|
||||
},
|
||||
[38]={
|
||||
["desc"]="Mejora armas {0} veces"
|
||||
},
|
||||
[39]={
|
||||
["desc"]="Mejora armadura {0} veces"
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=task_type,count=39
|
||||
}
|
||||
return config
|
||||
10
lua/app/config/strings/es/task_type.lua.meta
Normal file
10
lua/app/config/strings/es/task_type.lua.meta
Normal file
@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 34df813ee2b77d349b67572822b40e7e
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
|
||||
@ -106,9 +106,12 @@ local avatar = {
|
||||
},
|
||||
[5400101]={
|
||||
|
||||
},
|
||||
[1400101]={
|
||||
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=avatar,count=36
|
||||
data=avatar,count=37
|
||||
}
|
||||
return config
|
||||
@ -13,9 +13,15 @@ local avatar_frame = {
|
||||
},
|
||||
[27]={
|
||||
|
||||
},
|
||||
[28]={
|
||||
|
||||
},
|
||||
[29]={
|
||||
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=avatar_frame,count=5
|
||||
data=avatar_frame,count=7
|
||||
}
|
||||
return config
|
||||
@ -139,6 +139,18 @@ local item = {
|
||||
},
|
||||
[47]={
|
||||
|
||||
},
|
||||
[51]={
|
||||
|
||||
},
|
||||
[52]={
|
||||
|
||||
},
|
||||
[53]={
|
||||
|
||||
},
|
||||
[54]={
|
||||
|
||||
},
|
||||
[1001]={
|
||||
|
||||
@ -334,6 +346,6 @@ local item = {
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=item,count=111
|
||||
data=item,count=115
|
||||
}
|
||||
return config
|
||||
123
lua/app/config/strings/fr/task_type.lua
Normal file
123
lua/app/config/strings/fr/task_type.lua
Normal file
@ -0,0 +1,123 @@
|
||||
local task_type = {
|
||||
[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]={
|
||||
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=task_type,count=39
|
||||
}
|
||||
return config
|
||||
10
lua/app/config/strings/fr/task_type.lua.meta
Normal file
10
lua/app/config/strings/fr/task_type.lua.meta
Normal file
@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9bee2ea317c2e364d8ebe91c5c217a76
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
|
||||
@ -106,9 +106,12 @@ local avatar = {
|
||||
},
|
||||
[5400101]={
|
||||
["desc"]="Dapat setelah lolos Tarian Anggun"
|
||||
},
|
||||
[1400101]={
|
||||
["desc"]="Armor Relik"
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=avatar,count=36
|
||||
data=avatar,count=37
|
||||
}
|
||||
return config
|
||||
@ -13,9 +13,15 @@ local avatar_frame = {
|
||||
},
|
||||
[27]={
|
||||
["desc"]="Bingkai Avatar Emas Arena S2.Pahlawan mulia."
|
||||
},
|
||||
[28]={
|
||||
["desc"]="Bingkai Avatar Silver S3. Simbol keberanian."
|
||||
},
|
||||
[29]={
|
||||
["desc"]="Bingkai Avatar Emas S3. Bukti kekuatan!"
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=avatar_frame,count=5
|
||||
data=avatar_frame,count=7
|
||||
}
|
||||
return config
|
||||
@ -225,14 +225,23 @@ local buff = {
|
||||
},
|
||||
[84]={
|
||||
["id"]=84,
|
||||
["show_name"]="Lahir Kembali",
|
||||
["desc"]="Lahir Kembali: Kelahiran kembali dipicu dan memulihkan HP jika dikalahkan selama durasi, dan juga memulihkan HP jika tidak dipicu di akhir giliran.",
|
||||
["tips_desc"]="Lahir Kembali: Kelahiran kembali dipicu dan memulihkan HP jika dikalahkan selama durasi, dan juga memulihkan HP jika tidak dipicu di akhir giliran.",
|
||||
["name"]="rebirth"
|
||||
},
|
||||
[85]={
|
||||
["id"]=85,
|
||||
["show_name"]="Perisai Samudra",
|
||||
["desc"]="Perisai Samudra: Menahan sejumlah DMG dan kebal terhadap semua efek negatif.",
|
||||
["tips_desc"]="Perisai Samudra: Menahan sejumlah DMG dan kebal terhadap semua efek negatif.",
|
||||
["name"]="ocean_shield"
|
||||
},
|
||||
[86]={
|
||||
["id"]=86,
|
||||
["show_name"]="Pemulihan Diri",
|
||||
["desc"]="Pemulihan Diri: Mengembalikan HP di akhir giliran.",
|
||||
["tips_desc"]="Pemulihan Diri: Mengembalikan HP di akhir giliran.",
|
||||
["name"]="self_heal"
|
||||
}
|
||||
}
|
||||
|
||||
@ -460,11 +460,58 @@ local localization_global =
|
||||
["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}",
|
||||
["EQUIP_DESC_28"] = "Pack Peningkatan Senjata 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",
|
||||
["ACT_FOURTEEN_TITLE_1"] = "Hadiah Login",
|
||||
["ACT_FOURTEEN_TITLE_2"] = "Tantangan Advanced",
|
||||
["ACT_FOURTEEN_TITLE_3"] = "Penukaran Berbatas Waktu",
|
||||
["ACT_FOURTEEN_TITLE_4"] = "Pack Berbatas Waktu",
|
||||
["ACT_FOURTEEN_DESC_1"] = "Login game dan nikmati hadiah menarik!",
|
||||
["ACT_FOURTEEN_DESC_2"] = "Tantang diri sendiri dan dapatkan lebih banyak hadiah!",
|
||||
["ACT_FOURTEEN_DESC_3"] = "Waktu tidak menunggu siapa pun, dan kesempatan tidak akan datang dua kali!",
|
||||
["ACT_FOURTEEN_DESC_5"] = "Login untuk klaim hadiah dan dapatkan hadiah tambahan dengan membuka Pass Premium!",
|
||||
["ACT_FOURTEEN_DESC_6"] = "Stage",
|
||||
["ACT_FOURTEEN_DESC_7"] = "Terkunci. Silakan kembali lagi besok!",
|
||||
["ACT_FOURTEEN_DESC_8"] = "Selesaikan semua quest di stage saat ini bisa mendapatkan:",
|
||||
["ACT_FOURTEEN_DESC_9"] = "Selama periode acara, [Poin Tantangan] dapat diperoleh dengan menyelesaikan Tantangan Advanced.",
|
||||
["ACT_BOSS_RUSH_DESC_1"] = "Gunakan {0} berlian untuk battle?",
|
||||
["ACT_BOSS_RUSH_DESC_2"] = "Kejuaraan Boss",
|
||||
["ACT_BOSS_RUSH_DESC_3"] = "Master hari ini",
|
||||
["ACT_BOSS_RUSH_DESC_4"] = "Tertinggi hari ini:",
|
||||
["ACT_BOSS_RUSH_DESC_5"] = "Tantangan hari ini: {0} kali",
|
||||
["ACT_BOSS_RUSH_DESC_6"] = "今日次數:{0}",
|
||||
["ACT_BOSS_RUSH_DESC_7"] = "Biaya:",
|
||||
["ACT_BOSS_RUSH_DESC_8"] = "Kosong",
|
||||
["ACT_BOSS_RUSH_DESC_9"] = "Line-up",
|
||||
["ACT_BOSS_RUSH_DESC_10"] = "Papan Peringkat",
|
||||
["ACT_BOSS_RUSH_DESC_11"] = "Parade Boss",
|
||||
["ACT_BOSS_RUSH_DESC_12"] = "Mall Event",
|
||||
["ACT_BOSS_RUSH_DESC_13"] = "Berpartisipasilah dalam kejuaraan untuk menantang Boss!Menangkan Hero S langka!!",
|
||||
["ACT_BOSS_RUSH_DESC_14"] = "Pergi",
|
||||
["ACT_BOSS_RUSH_DESC_15"] = "Parade Boss",
|
||||
["ACT_BOSS_RUSH_DESC_16"] = "Tantang sejumlah kejuaraan Boss untuk mendapatkan hadiah Parade Boss.",
|
||||
["ACT_BOSS_RUSH_DESC_17"] = "Dapatkan [Koin Boss] di Parade Boss untuk ditukar dengan hadiah. [Koin Boss] dapat diklaim kembali setelah event berakhir. Harap tukarkan tepat waktu.",
|
||||
["ACT_BOSS_RUSH_DESC_18"] = "Tukar",
|
||||
["ACT_BOSS_RUSH_DESC_19"] = "Sisa:{0}",
|
||||
["ACT_BOSS_RUSH_DESC_20"] = "Kemarin",
|
||||
["ACT_BOSS_RUSH_DESC_21"] = "Hari ini",
|
||||
["ACT_BOSS_RUSH_DESC_22"] = "Hadiah",
|
||||
["ACT_BOSS_RUSH_DESC_23"] = "Rank:{0}",
|
||||
["ACT_BOSS_RUSH_DESC_24"] = "Rank",
|
||||
["ACT_BOSS_RUSH_DESC_25"] = "Pemain",
|
||||
["ACT_BOSS_RUSH_DESC_26"] = "Log",
|
||||
["ACT_BOSS_RUSH_DESC_27"] = "1. Peringkat akan didasarkan pada gelombang tertinggi yang dicapai pada hari tertentu, dan jika beberapa pemain memiliki gelombang yang sama, perbandingan akan didasarkan pada jumlah putaran terendah yang dilakukan. \n2. Peringkat direset setiap hari pada pukul 00:00 UTC, lalu dapat klaim hadiah berdasarkan peringkatmu dari hari sebelumnya. Hadiah yang tidak diklaim tidak akan diterbitkan kembali.",
|
||||
["ACT_BOSS_RUSH_DESC_28"] = "Log Baru",
|
||||
["ACT_BOSS_RUSH_DESC_29"] = "Poin Parade",
|
||||
["ACT_BOSS_RUSH_DESC_30"] = "Tatangan selesai",
|
||||
["ACT_BOSS_RUSH_DESC_31"] = "1. Urutan kemunculan Boss dan peta akan berubah setiap hari. \n2. Saat battle dimulai, skill Hero diaktifkan, tapi skill yang ditingkatkan perlu diupgrade hingga Lv. 40 dalam battle. \n3. Kemampuan yang meningkat dengan atribut yang terkumpul dapat mengambil efek sampai 10 kali. \n4. Peringkat kejuaraan akan dihitung 1x per hari, dan kamu akan mendapat [Koin Boss] yang dapat ditukarkan dengan hadiah di toko event. \n5. Parade Boss akan memberikan hadiah berdasarkan gelombang kumulatif battle yang diikuti selama kejuaraan. \n6. Dapat menantang sekali secara gratis setiap hari, dan tantangan selanjutnya akan mengonsumsi Berlian.",
|
||||
["ACT_BOSS_RUSH_DESC_32"] = "Paket waktu terbatas yang sangat bermanfaat!",
|
||||
["ACT_BOSS_RUSH_DESC_33"] = "Fase {0} membuka kunci",
|
||||
["NOT_POP_TODAY"] = "Jangan ingatkan lagi hari ini",
|
||||
["ACT_BOSS_RUSH_DESC_34"] = "Setelah keluar, pertempuran akan diselesaikan menurut gelombang saat ini. Apakah Anda ingin keluar?",
|
||||
}
|
||||
|
||||
return localization_global
|
||||
@ -187,6 +187,22 @@ local item = {
|
||||
["name"]="Hero Epik acak",
|
||||
["desc"]="Hanya satu dari Hero berikut yang akan muncul secara acak saat dapat dalam jumlah banyak."
|
||||
},
|
||||
[51]={
|
||||
["name"]="Poin Tantangan",
|
||||
["desc"]="Poin Tantangan dapat ditukarkan hadiah Tantangan Advanced berbatas waktu."
|
||||
},
|
||||
[52]={
|
||||
["name"]="Koin Boss",
|
||||
["desc"]="Koin Boss dapat ditukarkan hadiah di toko event Kejuaraan Boss."
|
||||
},
|
||||
[53]={
|
||||
["name"]="Bingkai Avatar Silver Musim S3",
|
||||
["desc"]="Bingkai Avatar Silver S3. Simbol keberanian."
|
||||
},
|
||||
[54]={
|
||||
["name"]="Bingkai Avatar Emas Musim S3",
|
||||
["desc"]="Bingkai Avatar Emas S3. Bukti kekuatan!"
|
||||
},
|
||||
[1001]={
|
||||
["name"]="Chondrite",
|
||||
["desc"]="Meteorit redup yang menyimpan energi misterius."
|
||||
@ -445,6 +461,6 @@ local item = {
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=item,count=111
|
||||
data=item,count=115
|
||||
}
|
||||
return config
|
||||
123
lua/app/config/strings/id/task_type.lua
Normal file
123
lua/app/config/strings/id/task_type.lua
Normal file
@ -0,0 +1,123 @@
|
||||
local task_type = {
|
||||
[1]={
|
||||
["desc"]="Iklan ditonton"
|
||||
},
|
||||
[2]={
|
||||
["desc"]="Dapat Koin"
|
||||
},
|
||||
[3]={
|
||||
["desc"]="Dapat Berlian"
|
||||
},
|
||||
[4]={
|
||||
["desc"]="Konsumsi Koin"
|
||||
},
|
||||
[5]={
|
||||
["desc"]="Konsumsi Berlian"
|
||||
},
|
||||
[6]={
|
||||
["desc"]="Buka peti harta di Mall"
|
||||
},
|
||||
[7]={
|
||||
["desc"]="Buka peti epik di Mall"
|
||||
},
|
||||
[8]={
|
||||
["desc"]="Nyalakan lampu skill di level"
|
||||
},
|
||||
[9]={
|
||||
["desc"]="Memenangkan Battle"
|
||||
},
|
||||
[10]={
|
||||
["desc"]="Upgrade Hero"
|
||||
},
|
||||
[11]={
|
||||
["desc"]="Dapatkan Shard Hero"
|
||||
},
|
||||
[12]={
|
||||
["desc"]="Bunuh Boss"
|
||||
},
|
||||
[13]={
|
||||
["desc"]="Bunuh Minion"
|
||||
},
|
||||
[14]={
|
||||
["desc"]="Hapus elemen"
|
||||
},
|
||||
[15]={
|
||||
["desc"]="6x Hapus"
|
||||
},
|
||||
[16]={
|
||||
["desc"]="8x Hapus"
|
||||
},
|
||||
[17]={
|
||||
["desc"]="10 Kombo atau lebih dalam battle"
|
||||
},
|
||||
[18]={
|
||||
["desc"]="Skill yang dilepaskan dalam battle"
|
||||
},
|
||||
[19]={
|
||||
["desc"]="Hapus gelombang battle"
|
||||
},
|
||||
[20]={
|
||||
|
||||
},
|
||||
[21]={
|
||||
|
||||
},
|
||||
[22]={
|
||||
["desc"]="Total Sign-in {0} hari"
|
||||
},
|
||||
[23]={
|
||||
["desc"]="Capai Lv.{0}"
|
||||
},
|
||||
[24]={
|
||||
["desc"]="Lolos Quest Utama Bab {0}"
|
||||
},
|
||||
[25]={
|
||||
["desc"]="Level max Hero mencapai {0}"
|
||||
},
|
||||
[26]={
|
||||
["desc"]="Konsumsi {0} poin Energi"
|
||||
},
|
||||
[27]={
|
||||
["desc"]="Punya {0} Hero"
|
||||
},
|
||||
[28]={
|
||||
["desc"]="Membuka Peti Umum {0} kali"
|
||||
},
|
||||
[29]={
|
||||
["desc"]="Membuka Peti Premium {0} kali"
|
||||
},
|
||||
[30]={
|
||||
["desc"]="Jumlah tantangan arena"
|
||||
},
|
||||
[31]={
|
||||
["desc"]="Raih {0} di Arena"
|
||||
},
|
||||
[32]={
|
||||
["desc"]="Lolos Tantangan Abyssal {0}"
|
||||
},
|
||||
[33]={
|
||||
["desc"]="Lolos Celah Waktu {0}-{1}"
|
||||
},
|
||||
[34]={
|
||||
["desc"]="Lolos Mencegat Kereta Tambang {0}"
|
||||
},
|
||||
[35]={
|
||||
["desc"]="Lolos Menara Lumen {0}"
|
||||
},
|
||||
[36]={
|
||||
["desc"]="Menang Tantangan Harian {0} kali"
|
||||
},
|
||||
[37]={
|
||||
["desc"]="Buka {0} Peti Quest Utama"
|
||||
},
|
||||
[38]={
|
||||
["desc"]="Upgrade senjata {0} kali"
|
||||
},
|
||||
[39]={
|
||||
["desc"]="Upgrade Armor {0} kali"
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=task_type,count=39
|
||||
}
|
||||
return config
|
||||
10
lua/app/config/strings/id/task_type.lua.meta
Normal file
10
lua/app/config/strings/id/task_type.lua.meta
Normal file
@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 10f39500da2f33f49b932f55ded99502
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
|
||||
@ -106,9 +106,12 @@ local avatar = {
|
||||
},
|
||||
[5400101]={
|
||||
["desc"]="グレイスフルダンスをアクティブ化後獲得できる。"
|
||||
},
|
||||
[1400101]={
|
||||
["desc"]="レリックアーマー"
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=avatar,count=36
|
||||
data=avatar,count=37
|
||||
}
|
||||
return config
|
||||
@ -13,9 +13,15 @@ local avatar_frame = {
|
||||
},
|
||||
[27]={
|
||||
["desc"]="S2闘技場ゴールドフレーム。ヒーローの輝き。"
|
||||
},
|
||||
[28]={
|
||||
["desc"]="S3闘技場シルバーフレーム。勇気の証。"
|
||||
},
|
||||
[29]={
|
||||
["desc"]="S3闘技場ゴールドフレーム。実力の証。"
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=avatar_frame,count=5
|
||||
data=avatar_frame,count=7
|
||||
}
|
||||
return config
|
||||
@ -225,14 +225,23 @@ local buff = {
|
||||
},
|
||||
[84]={
|
||||
["id"]=84,
|
||||
["show_name"]="再生",
|
||||
["desc"]="再生:持続期間中に撃破されると、再生を発動してHPを回復する。ターン終了時に再生を発動してもHPが回復される。",
|
||||
["tips_desc"]="再生:持続期間中に撃破されると、再生を発動してHPを回復する。ターン終了時に再生を発動してもHPが回復される。",
|
||||
["name"]="rebirth"
|
||||
},
|
||||
[85]={
|
||||
["id"]=85,
|
||||
["show_name"]="オーシャンシールド",
|
||||
["desc"]="オーシャンシールド:一定量のダメージには耐えられ、全てのデバフ効果を無効化する。",
|
||||
["tips_desc"]="オーシャンシールド:一定量のダメージには耐えられ、全てのデバフ効果を無効化する。",
|
||||
["name"]="ocean_shield"
|
||||
},
|
||||
[86]={
|
||||
["id"]=86,
|
||||
["show_name"]="自己回復",
|
||||
["desc"]="自己回復:ターン終了時にHPを回復する。",
|
||||
["tips_desc"]="自己回復:ターン終了時にHPを回復する。",
|
||||
["name"]="self_heal"
|
||||
}
|
||||
}
|
||||
|
||||
@ -460,11 +460,58 @@ local localization_global =
|
||||
["ARENA_DESC_40"] = "ランクアップ報酬",
|
||||
["ARENA_DESC_41"] = "決算報酬",
|
||||
["ARENA_DESC_42"] = "未受取の報酬",
|
||||
["EQUIP_DESC_26"] = "武器Lv{0}レベルアップパック",
|
||||
["EQUIP_DESC_27"] = "防具Lv{0}レベルアップパック",
|
||||
["EQUIP_DESC_28"] = "武器Lv{0}レベルアップパック",
|
||||
["SEIZED_DESC_1"] = "アカウントに異常が検出されました。サポートセンターに連絡するか、アカウントを削除し、新しいアカウントを作成してゲームを続行してください。",
|
||||
["SEIZED_DESC_2"] = "サポートセンターに連絡する",
|
||||
["SEIZED_DESC_3"] = "アカウントを削除する",
|
||||
["ACT_FOURTEEN_TITLE_1"] = "ログインボーナス",
|
||||
["ACT_FOURTEEN_TITLE_2"] = "ランクアップ挑戦",
|
||||
["ACT_FOURTEEN_TITLE_3"] = "期間限定交換",
|
||||
["ACT_FOURTEEN_TITLE_4"] = "期間限定パック",
|
||||
["ACT_FOURTEEN_DESC_1"] = "ログインすると、豪華なボーナスを獲得可能!",
|
||||
["ACT_FOURTEEN_DESC_2"] = "自分自身に挑戦して、豪華な報酬をゲットしよう!",
|
||||
["ACT_FOURTEEN_DESC_3"] = "期間限定、お見逃しなく!",
|
||||
["ACT_FOURTEEN_DESC_5"] = "ログインすると報酬を獲得できます。プレミアム戦令を解放すると、追加報酬も獲得できます!",
|
||||
["ACT_FOURTEEN_DESC_6"] = "ステージ",
|
||||
["ACT_FOURTEEN_DESC_7"] = "未解放、明日また来てください~",
|
||||
["ACT_FOURTEEN_DESC_8"] = "現在のステージのすべてのミッションを完了すると、以下を獲得可能:",
|
||||
["ACT_FOURTEEN_DESC_9"] = "イベント期間中、ランクアップ挑戦を完了すると、【挑戦ポイント】を獲得できる。",
|
||||
["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"] = "Attempts Today:{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"] = "選手権大会に参加して、様々なボスに挑戦しよう!レアS級ヒーローをゲットしよう!!",
|
||||
["ACT_BOSS_RUSH_DESC_14"] = "移動",
|
||||
["ACT_BOSS_RUSH_DESC_15"] = "ボスパレード",
|
||||
["ACT_BOSS_RUSH_DESC_16"] = "選手権大会の挑戦回数を貯めると、ボスパレード報酬を獲得できます。",
|
||||
["ACT_BOSS_RUSH_DESC_17"] = "ボスパレードで【ボスコイン】を獲得し、報酬と交換できます。イベント終了後、【ボスコイン】は回収されますので、お早めに交換してください。",
|
||||
["ACT_BOSS_RUSH_DESC_18"] = "交換",
|
||||
["ACT_BOSS_RUSH_DESC_19"] = "残りの回数:{0}",
|
||||
["ACT_BOSS_RUSH_DESC_20"] = "昨日",
|
||||
["ACT_BOSS_RUSH_DESC_21"] = "今日",
|
||||
["ACT_BOSS_RUSH_DESC_22"] = "報酬",
|
||||
["ACT_BOSS_RUSH_DESC_23"] = "ランキング:{0}",
|
||||
["ACT_BOSS_RUSH_DESC_24"] = "ランキング",
|
||||
["ACT_BOSS_RUSH_DESC_25"] = "プレーヤー",
|
||||
["ACT_BOSS_RUSH_DESC_26"] = "記録",
|
||||
["ACT_BOSS_RUSH_DESC_27"] = "1.ランキングは当日最大回数によって作成され、回数が同じのプレーヤーは最小ラウンド数を比較します。\n2.ランキングは毎日の0時(UTC-0)にリセットされます。リセット後、前日のランキングに応じて報酬を獲得できます。報酬の有効期限が過ぎても受け取らなかった場合、報酬は再発行されません。",
|
||||
["ACT_BOSS_RUSH_DESC_28"] = "新記録",
|
||||
["ACT_BOSS_RUSH_DESC_29"] = "パレードポイント",
|
||||
["ACT_BOSS_RUSH_DESC_30"] = "挑戦完了",
|
||||
["ACT_BOSS_RUSH_DESC_31"] = "1.ボスの登場順とマップは毎日変わります。\n2.バトル開始後、ヒーローのスキルはデフォルトで解放されますが、強化スキルを獲得するにはレベルアップが必要です。バトル中最大40級までレベルアップできます。\n3.属性を重ねた強化スキルは、最大10回有効になります。\n4.選手権大会のランキングは1日1回決算され、決算完了後に大量の【ボスコイン】を獲得でき、イベントショップで報酬と交換できます。\n5.ボスパレードでは、選手権大会で参加したバトルの回数に応じて報酬を獲得できます。\n6.1日1回無料で挑戦でき、それ以降の挑戦にはダイヤを消費する必要があります。きちんと準備して挑戦を開始しましょう。",
|
||||
["ACT_BOSS_RUSH_DESC_32"] = "報酬の高い期間限定パック!",
|
||||
["ACT_BOSS_RUSH_DESC_33"] = "フェーズ{0}ロック解除",
|
||||
["NOT_POP_TODAY"] = "今日は見ない",
|
||||
["ACT_BOSS_RUSH_DESC_34"] = "撤退後は、現在の波次決済に従って戦いますが、撤退しますか?",
|
||||
}
|
||||
|
||||
return localization_global
|
||||
@ -187,6 +187,22 @@ local item = {
|
||||
["name"]="ランダムエピックヒーロー",
|
||||
["desc"]="一括獲得の時、以下のいずれかのヒーロー1名をランダムで獲得できる。"
|
||||
},
|
||||
[51]={
|
||||
["name"]="挑戦ポイント",
|
||||
["desc"]="挑戦ポイント、ランクアップ挑戦で期間限定報酬と交換できる。"
|
||||
},
|
||||
[52]={
|
||||
["name"]="ボスコイン",
|
||||
["desc"]="ボスコイン、ボス選手権大会のイベントショップで報酬と交換できる。"
|
||||
},
|
||||
[53]={
|
||||
["name"]="S3シーズンシルバーフレーム",
|
||||
["desc"]="S3闘技場シルバーフレーム。勇気の証。"
|
||||
},
|
||||
[54]={
|
||||
["name"]="S3シーズンゴールドフレーム",
|
||||
["desc"]="S3闘技場ゴールドフレーム。実力の証。"
|
||||
},
|
||||
[1001]={
|
||||
["name"]="薄暗い隕石",
|
||||
["desc"]="謎のエネルギーを秘めた隕石。"
|
||||
@ -445,6 +461,6 @@ local item = {
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=item,count=111
|
||||
data=item,count=115
|
||||
}
|
||||
return config
|
||||
123
lua/app/config/strings/ja/task_type.lua
Normal file
123
lua/app/config/strings/ja/task_type.lua
Normal file
@ -0,0 +1,123 @@
|
||||
local task_type = {
|
||||
[1]={
|
||||
["desc"]="合計CM視聴回数"
|
||||
},
|
||||
[2]={
|
||||
["desc"]="コインを入手する"
|
||||
},
|
||||
[3]={
|
||||
["desc"]="ダイヤを入手する"
|
||||
},
|
||||
[4]={
|
||||
["desc"]="コインを消費する"
|
||||
},
|
||||
[5]={
|
||||
["desc"]="ダイヤを消費する"
|
||||
},
|
||||
[6]={
|
||||
["desc"]="ショップでいずれの宝箱を開ける"
|
||||
},
|
||||
[7]={
|
||||
["desc"]="ショップでエピック宝箱を開ける"
|
||||
},
|
||||
[8]={
|
||||
["desc"]="クエスト内でスキルランプを点灯する"
|
||||
},
|
||||
[9]={
|
||||
["desc"]="バトルに勝利する"
|
||||
},
|
||||
[10]={
|
||||
["desc"]="ヒーローをレベルアップする"
|
||||
},
|
||||
[11]={
|
||||
["desc"]="ヒーローピースを入手する"
|
||||
},
|
||||
[12]={
|
||||
["desc"]="ボスを撃破する"
|
||||
},
|
||||
[13]={
|
||||
["desc"]="手下を撃破する"
|
||||
},
|
||||
[14]={
|
||||
["desc"]="合計消した元素"
|
||||
},
|
||||
[15]={
|
||||
["desc"]="6連消しの回数"
|
||||
},
|
||||
[16]={
|
||||
["desc"]="8連消しの回数"
|
||||
},
|
||||
[17]={
|
||||
["desc"]="10連消し回数"
|
||||
},
|
||||
[18]={
|
||||
["desc"]="バトル中スキルを発動する回数"
|
||||
},
|
||||
[19]={
|
||||
["desc"]="波をクリアする回数"
|
||||
},
|
||||
[20]={
|
||||
|
||||
},
|
||||
[21]={
|
||||
|
||||
},
|
||||
[22]={
|
||||
["desc"]="{0}日ログインする"
|
||||
},
|
||||
[23]={
|
||||
["desc"]="レベル{0}に到達する"
|
||||
},
|
||||
[24]={
|
||||
["desc"]="メインクエスト{0}をクリアする"
|
||||
},
|
||||
[25]={
|
||||
["desc"]="ヒーローがレベル{0}に到達する"
|
||||
},
|
||||
[26]={
|
||||
["desc"]="スタミナを{0}消費する"
|
||||
},
|
||||
[27]={
|
||||
["desc"]="ヒーローを{0}体入手する"
|
||||
},
|
||||
[28]={
|
||||
["desc"]="普通の宝箱を{0}箱開ける"
|
||||
},
|
||||
[29]={
|
||||
["desc"]="貴重の宝箱を{0}箱開ける"
|
||||
},
|
||||
[30]={
|
||||
["desc"]="闘技場挑戦回数"
|
||||
},
|
||||
[31]={
|
||||
["desc"]="闘技場で{0}に達する"
|
||||
},
|
||||
[32]={
|
||||
["desc"]="アビス挑戦で{0}をクリアする"
|
||||
},
|
||||
[33]={
|
||||
["desc"]="時空の裂け目{0}-{1}をクリアする"
|
||||
},
|
||||
[34]={
|
||||
["desc"]="トロッコを阻む{0}をクリアする"
|
||||
},
|
||||
[35]={
|
||||
["desc"]="ランプの魔神の塔{0}をクリアする"
|
||||
},
|
||||
[36]={
|
||||
["desc"]="デイリー挑戦で{0}回勝利する"
|
||||
},
|
||||
[37]={
|
||||
["desc"]="メインストーリー宝箱を{0}個開ける"
|
||||
},
|
||||
[38]={
|
||||
["desc"]="武器を{0}回レベルアップする"
|
||||
},
|
||||
[39]={
|
||||
["desc"]="防具を{0}回レベルアップする"
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=task_type,count=39
|
||||
}
|
||||
return config
|
||||
10
lua/app/config/strings/ja/task_type.lua.meta
Normal file
10
lua/app/config/strings/ja/task_type.lua.meta
Normal file
@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 79ef9e9ef8a9dc549ba2e2205713633c
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
|
||||
@ -106,9 +106,12 @@ local avatar = {
|
||||
},
|
||||
[5400101]={
|
||||
["desc"]="날아오르는 춤(를) 활성화한 후, 획득할 수 있습니다."
|
||||
},
|
||||
[1400101]={
|
||||
["desc"]="유적 갑옷"
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=avatar,count=36
|
||||
data=avatar,count=37
|
||||
}
|
||||
return config
|
||||
@ -13,9 +13,15 @@ local avatar_frame = {
|
||||
},
|
||||
[27]={
|
||||
["desc"]="S2 아레나 골드 아이콘 프레임, 영웅의 눈부신 업적입니다."
|
||||
},
|
||||
[28]={
|
||||
["desc"]="S3 아레나 실버 아이콘 프레임, 용기를 대표합니다."
|
||||
},
|
||||
[29]={
|
||||
["desc"]="S3 아레나 골드 아이콘 프레임, 검증받은 실력입니다."
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=avatar_frame,count=5
|
||||
data=avatar_frame,count=7
|
||||
}
|
||||
return config
|
||||
@ -225,14 +225,23 @@ local buff = {
|
||||
},
|
||||
[84]={
|
||||
["id"]=84,
|
||||
["show_name"]="부활",
|
||||
["desc"]="부활: 지속 시간 동안 패배하면 부활하여 HP를 회복하며 턴 종료 시 부활이 발동되지 않아도 HP를 회복합니다.",
|
||||
["tips_desc"]="부활: 지속 시간 동안 패배하면 부활하여 HP를 회복하며 턴 종료 시 부활이 발동되지 않아도 HP를 회복합니다.",
|
||||
["name"]="rebirth"
|
||||
},
|
||||
[85]={
|
||||
["id"]=85,
|
||||
["show_name"]="해양 방패",
|
||||
["desc"]="해양 방패: 일정량의 피해를 감내하고 모든 부정적인 효과에 면역이 됩니다.",
|
||||
["tips_desc"]="해양 방패: 일정량의 피해를 감내하고 모든 부정적인 효과에 면역이 됩니다.",
|
||||
["name"]="ocean_shield"
|
||||
},
|
||||
[86]={
|
||||
["id"]=86,
|
||||
["show_name"]="자가 치유",
|
||||
["desc"]="자가 치유: 턴이 끝날 때 HP를 회복합니다.",
|
||||
["tips_desc"]="자가 치유: 턴이 끝날 때 HP를 회복합니다.",
|
||||
["name"]="self_heal"
|
||||
}
|
||||
}
|
||||
|
||||
@ -460,11 +460,58 @@ local localization_global =
|
||||
["ARENA_DESC_40"] = "승급 보상",
|
||||
["ARENA_DESC_41"] = "정산 보상",
|
||||
["ARENA_DESC_42"] = "미수령 보상",
|
||||
["EQUIP_DESC_26"] = "무기 {0}레벨 업그레이드 패키지",
|
||||
["EQUIP_DESC_27"] = "방어구 {0}레벨 업그레이드 패키지",
|
||||
["EQUIP_DESC_28"] = "무기 {0}레벨 업그레이드 패키지",
|
||||
["SEIZED_DESC_1"] = "계정에 이상이 발견되었습니다. 문제 해결을 위해 고객 서비스에 문의하거나 계정을 삭제하시고 새 계정을 사용하여 게임을 계속 진행하시기 바랍니다.",
|
||||
["SEIZED_DESC_2"] = "고객 서비스 문의",
|
||||
["SEIZED_DESC_3"] = "계정 삭제",
|
||||
["ACT_FOURTEEN_TITLE_1"] = "로그인 선물",
|
||||
["ACT_FOURTEEN_TITLE_2"] = "고급 도전",
|
||||
["ACT_FOURTEEN_TITLE_3"] = "기간 한정 교환",
|
||||
["ACT_FOURTEEN_TITLE_4"] = "한정 시간 패키지",
|
||||
["ACT_FOURTEEN_DESC_1"] = "게임에 로그인하고 푸짐한 보상을 획득하세요!",
|
||||
["ACT_FOURTEEN_DESC_2"] = "멈추지 않는 도전으로 더 많은 선물을 받으세요!",
|
||||
["ACT_FOURTEEN_DESC_3"] = "시간은 사람을 기다리지 않고 기회는 다시 오지 않습니다!",
|
||||
["ACT_FOURTEEN_DESC_5"] = "로그인하면 즉시 보상을 받을 수 있습니다. 고급 배틀 패스를 해제하여 추가 보상을 받으세요!",
|
||||
["ACT_FOURTEEN_DESC_6"] = "스테이지",
|
||||
["ACT_FOURTEEN_DESC_7"] = "아직 잠겨 있습니다. 내일 다시 시도하세요~",
|
||||
["ACT_FOURTEEN_DESC_8"] = "현재 스테이지의 모든 퀘스트를 완료하면 획득 가능:",
|
||||
["ACT_FOURTEEN_DESC_9"] = "이벤트 기간 고급 도전을 완료하면 [도전 포인트]를 획득할 수 있습니다.",
|
||||
["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"] = "오픈 토너먼트에 참가하여 다양한 보스에게 도전해보세요!희귀한 S레벨 영웅을 획득하세요!!",
|
||||
["ACT_BOSS_RUSH_DESC_14"] = "바로가기",
|
||||
["ACT_BOSS_RUSH_DESC_15"] = "보스 퍼레이드",
|
||||
["ACT_BOSS_RUSH_DESC_16"] = "오픈 토너먼트의 챌린지 웨이브를 누적하여 보스 퍼레이드 보상을 받으세요.",
|
||||
["ACT_BOSS_RUSH_DESC_17"] = "보스 퍼레이드에서 [보스 코인]을 획득하여 보상으로 교환하세요. 이벤트 종료 후 [보스 코인] 은 회수되므로 빨리 교환하시길 바랍니다.",
|
||||
["ACT_BOSS_RUSH_DESC_18"] = "교환",
|
||||
["ACT_BOSS_RUSH_DESC_19"] = "남은 횟수:{0}",
|
||||
["ACT_BOSS_RUSH_DESC_20"] = "어제",
|
||||
["ACT_BOSS_RUSH_DESC_21"] = "오늘",
|
||||
["ACT_BOSS_RUSH_DESC_22"] = "보상",
|
||||
["ACT_BOSS_RUSH_DESC_23"] = "순위:{0}",
|
||||
["ACT_BOSS_RUSH_DESC_24"] = "순위",
|
||||
["ACT_BOSS_RUSH_DESC_25"] = "플레이어",
|
||||
["ACT_BOSS_RUSH_DESC_26"] = "기록",
|
||||
["ACT_BOSS_RUSH_DESC_27"] = "1. 랭킹은 당일 최대 웨이브 수에 따라 순위가 결정되며, 같은 웨이브 수를 가진 플레이어들은 최소 라운드 수를 비교합니다. \n2. 랭킹은 매일 0시(UTC-0)에 초기화되며, 그 후 전날의 랭킹 결과에 기반하여 보상을 받을 수 있습니다. 기간이 만료된 후 받지 보상은 다시 지급되지 않습니다.",
|
||||
["ACT_BOSS_RUSH_DESC_28"] = "신기록",
|
||||
["ACT_BOSS_RUSH_DESC_29"] = "퍼레이드 포인트",
|
||||
["ACT_BOSS_RUSH_DESC_30"] = "도전 완료",
|
||||
["ACT_BOSS_RUSH_DESC_31"] = "1. 보스 등장 순서와 맵은 매일 달라집니다. \n2. 전투가 시작되면 영웅 스킬은 기본적으로 활성화되지만 강화 스킬은 업그레이드를 통해 획득해야 합니다. 전투에서 최대 40레벨까지 업그레이드할 수 있습니다. \n3. 속성을 중첩하는 강화 스킬, 최대 10회 유효. \n4. 오픈 토너먼트 랭킹은 매일 한번 정산됩니다. 정산 시 대량의 [보스 코인]이 지급되며 이벤트 상점에서 보상으로 교환할 수 있습니다. \n5. 보스 퍼레이드에서는 오픈 토너먼트 전투에 참여한 누적 웨이브 수에 따라 보상이 지급됩니다.\n6. 하루에 한 번 무료로 도전할 수 있으며, 이후 도전에는 다이아가 소모됩니다. 준비가 되면 도전을 시작하세요.",
|
||||
["ACT_BOSS_RUSH_DESC_32"] = "고수익 기간 한정 선물 팩!",
|
||||
["ACT_BOSS_RUSH_DESC_33"] = "{0}단계 잠금 해제",
|
||||
["NOT_POP_TODAY"] = "오늘 더 이상 알림 받지 않음",
|
||||
["ACT_BOSS_RUSH_DESC_34"] = "퇴장 후, 현재 라운드 결산에 따라 전투, 퇴장하시겠습니까?",
|
||||
}
|
||||
|
||||
return localization_global
|
||||
@ -187,6 +187,22 @@ local item = {
|
||||
["name"]="랜덤의 에픽 영웅",
|
||||
["desc"]="일괄 획득 시 다음 영웅 중 한 명만 무작위로 선택됩니다."
|
||||
},
|
||||
[51]={
|
||||
["name"]="도전 포인트",
|
||||
["desc"]="도전 포인트, 고급 도전에 참여하여 기간 한정 보상으로 교환할 수 있습니다."
|
||||
},
|
||||
[52]={
|
||||
["name"]="보스 코인",
|
||||
["desc"]="보스 오픈 토너먼트 이벤트 상점에서 보상으로 교환할 수 있는 보스 코인"
|
||||
},
|
||||
[53]={
|
||||
["name"]="S3 시즌 실버 아이콘 프레임",
|
||||
["desc"]="S3 아레나 실버 아이콘 프레임, 용기를 대표합니다."
|
||||
},
|
||||
[54]={
|
||||
["name"]="S3 시즌 골드 아이콘 프레임",
|
||||
["desc"]="S3 아레나 골드 아이콘 프레임, 검증받은 실력입니다."
|
||||
},
|
||||
[1001]={
|
||||
["name"]="알렌데 운석",
|
||||
["desc"]="암흑의 운석 한 조각, 신비한 에너지를 품고 있습니다."
|
||||
@ -445,6 +461,6 @@ local item = {
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=item,count=111
|
||||
data=item,count=115
|
||||
}
|
||||
return config
|
||||
123
lua/app/config/strings/ko/task_type.lua
Normal file
123
lua/app/config/strings/ko/task_type.lua
Normal file
@ -0,0 +1,123 @@
|
||||
local task_type = {
|
||||
[1]={
|
||||
["desc"]="누적 광고 시청"
|
||||
},
|
||||
[2]={
|
||||
["desc"]="골드 획득하기"
|
||||
},
|
||||
[3]={
|
||||
["desc"]="다이아 얻기"
|
||||
},
|
||||
[4]={
|
||||
["desc"]="골드 소비하기"
|
||||
},
|
||||
[5]={
|
||||
["desc"]="다이아 소모하기"
|
||||
},
|
||||
[6]={
|
||||
["desc"]="상점에서 임의의 보물상자 오픈하기"
|
||||
},
|
||||
[7]={
|
||||
["desc"]="상점에서 에픽 보물상자 오픈하기"
|
||||
},
|
||||
[8]={
|
||||
["desc"]="스테이지에서 스킬 램프 오픈하기"
|
||||
},
|
||||
[9]={
|
||||
["desc"]="전투에서 승리하기"
|
||||
},
|
||||
[10]={
|
||||
["desc"]="영웅을 업그레이드하기"
|
||||
},
|
||||
[11]={
|
||||
["desc"]="영웅 파편 획득하기"
|
||||
},
|
||||
[12]={
|
||||
["desc"]="보스 처치하기"
|
||||
},
|
||||
[13]={
|
||||
["desc"]="미니언 처치하기"
|
||||
},
|
||||
[14]={
|
||||
["desc"]="누적 소멸한 원소"
|
||||
},
|
||||
[15]={
|
||||
["desc"]="6콤보 소멸 횟수"
|
||||
},
|
||||
[16]={
|
||||
["desc"]="8콤보 소멸 횟수"
|
||||
},
|
||||
[17]={
|
||||
["desc"]="전투에서 10연타 이상 공격한 횟수"
|
||||
},
|
||||
[18]={
|
||||
["desc"]="전투에서 스킬을 시전한 횟수"
|
||||
},
|
||||
[19]={
|
||||
["desc"]="클리어한 전투 웨이브 수"
|
||||
},
|
||||
[20]={
|
||||
|
||||
},
|
||||
[21]={
|
||||
|
||||
},
|
||||
[22]={
|
||||
["desc"]="누적 출석 {0}일"
|
||||
},
|
||||
[23]={
|
||||
["desc"]="레벨 {0}에 도달하기"
|
||||
},
|
||||
[24]={
|
||||
["desc"]="메인라인 챕터{0} 클리어하기"
|
||||
},
|
||||
[25]={
|
||||
["desc"]="영웅 최고 레벨이 {0}에 도달하기"
|
||||
},
|
||||
[26]={
|
||||
["desc"]="체력 {0} 포인트 소모하기"
|
||||
},
|
||||
[27]={
|
||||
["desc"]="{0}명의 영웅 보유하기"
|
||||
},
|
||||
[28]={
|
||||
["desc"]="일반 보물 상자 {0}번 오픈하기"
|
||||
},
|
||||
[29]={
|
||||
["desc"]="귀중한 보물 상자 {0}번 오픈하기"
|
||||
},
|
||||
[30]={
|
||||
["desc"]="아레나 도전 횟수"
|
||||
},
|
||||
[31]={
|
||||
["desc"]="아레나에서 {0} 달성"
|
||||
},
|
||||
[32]={
|
||||
["desc"]="어비스 챌린지 {0} 클리어"
|
||||
},
|
||||
[33]={
|
||||
["desc"]="시공간의 균열 {0}-{1} 클리어"
|
||||
},
|
||||
[34]={
|
||||
["desc"]="트램카 막기 {0} 클리어"
|
||||
},
|
||||
[35]={
|
||||
["desc"]="램프신의 탑 {0} 클리어"
|
||||
},
|
||||
[36]={
|
||||
["desc"]="데일리 챌린지에서 {0}회 승리"
|
||||
},
|
||||
[37]={
|
||||
["desc"]="메인라인 보물 상자 {0}개 오픈"
|
||||
},
|
||||
[38]={
|
||||
["desc"]="무기 업그레이드 {0}회"
|
||||
},
|
||||
[39]={
|
||||
["desc"]="방어구 업그레이드 {0}회"
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=task_type,count=39
|
||||
}
|
||||
return config
|
||||
10
lua/app/config/strings/ko/task_type.lua.meta
Normal file
10
lua/app/config/strings/ko/task_type.lua.meta
Normal file
@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 013b5d3e9ea538844bf8a3a4dfebfe8c
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
|
||||
@ -106,9 +106,12 @@ local avatar = {
|
||||
},
|
||||
[5400101]={
|
||||
["desc"]="Ativar Dança Fluida para obter."
|
||||
},
|
||||
[1400101]={
|
||||
["desc"]="Armadura das Ruínas"
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=avatar,count=36
|
||||
data=avatar,count=37
|
||||
}
|
||||
return config
|
||||
@ -13,9 +13,15 @@ local avatar_frame = {
|
||||
},
|
||||
[27]={
|
||||
["desc"]="Moldura de avatar de ouro da Arena S2, o brilho de um herói."
|
||||
},
|
||||
[28]={
|
||||
["desc"]="Moldura de avatar de prata da Arena S3, um símbolo de coragem."
|
||||
},
|
||||
[29]={
|
||||
["desc"]="Moldura de avatar de ouro da Arena S3, uma testemunha do poder."
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=avatar_frame,count=5
|
||||
data=avatar_frame,count=7
|
||||
}
|
||||
return config
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user