Compare commits

..

No commits in common. "master" and "v0.1.1_ios" have entirely different histories.

1199 changed files with 16321 additions and 646831 deletions

View File

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

View File

@ -166,6 +166,9 @@ end
function CharacterSpineObject:playAnimation(animName, loop, forceRefresh) function CharacterSpineObject:playAnimation(animName, loop, forceRefresh)
if self.characterSpineHelper then if self.characterSpineHelper then
if not self:getAnimationExist(animName) then
return
end
self.characterSpineHelper:PlayAnimation(animName, loop, forceRefresh) self.characterSpineHelper:PlayAnimation(animName, loop, forceRefresh)
end end
end end
@ -209,9 +212,15 @@ function CharacterSpineObject:getAnimationDuration(animationName)
return 0 return 0
end end
function CharacterSpineObject:getAnimationExist(animationName)
local animation = self:getSkeletonGraphic().skeletonDataAsset:GetAnimationStateData().SkeletonData:FindAnimation(animationName)
return animation ~= nil
end
function CharacterSpineObject:getAnimationKeyFrameTimes(animationName) function CharacterSpineObject:getAnimationKeyFrameTimes(animationName)
local times = {} local times = {}
if self.characterSpineHelper then if self.characterSpineHelper then
if self:getAnimationExist(animationName) then
local timeList = self.characterSpineHelper:GetAnimationKeyFrameTime(animationName) local timeList = self.characterSpineHelper:GetAnimationKeyFrameTime(animationName)
local count = timeList.Count local count = timeList.Count
if count > 0 then if count > 0 then
@ -220,6 +229,7 @@ function CharacterSpineObject:getAnimationKeyFrameTimes(animationName)
end end
end end
end end
end
return times return times
end end

View File

@ -51,12 +51,6 @@ function UISpineObject:playAnim(animName, loop, forceRefresh, forceGetSG)
end end
end end
function UISpineObject:setSkin(skinName)
self.skeletonGraphic.initialSkinName = skinName
self.skeletonGraphic:Initialize(true)
self:getAnimationState(true)
end
function UISpineObject:getAnimationKeyFrameTime(animName) function UISpineObject:getAnimationKeyFrameTime(animName)
if not self.animationKeyFrameTime then if not self.animationKeyFrameTime then
self.animationKeyFrameTime = {} self.animationKeyFrameTime = {}

View File

@ -763,9 +763,6 @@ function UIPrefabObject:addRedPoint(offsetX, offsetY, scale, iconName, count, na
if not self.redPoint then if not self.redPoint then
if not self.loadRpOver then if not self.loadRpOver then
self.loadRpOver = true self.loadRpOver = true
if self:isDestroyed() or CS.BF.Utils.IsNull(self:getGameObject()) then
return
end
UIPrefabManager:loadUIWidgetAsync("assets/prefabs/ui/common/red_point_cell.prefab", self, function(prefabObject) UIPrefabManager:loadUIWidgetAsync("assets/prefabs/ui/common/red_point_cell.prefab", self, function(prefabObject)
self.redPoint = prefabObject self.redPoint = prefabObject
prefabObject:initPrefabHelper() prefabObject:initPrefabHelper()

View File

@ -8,9 +8,6 @@ local AUDIO_CLIP = typeof(CS.UnityEngine.AudioClip)
AudioManager.BGM_ID = { AudioManager.BGM_ID = {
MAINCITY = "assets/arts/sounds/music/main_city.wav", MAINCITY = "assets/arts/sounds/music/main_city.wav",
BATTLE = "assets/arts/sounds/music/battle.wav", BATTLE = "assets/arts/sounds/music/battle.wav",
ACT_PVP_CHOOSEBGM = "assets/arts/sounds/music/act_pvp_choosebgm.wav",
ACT_PVP_FIGHT = "assets/arts/sounds/music/act_pvp_fight.wav",
ACT_PVP_MAINBGM = "assets/arts/sounds/music/act_pvp_mainbgm.wav",
} }
AudioManager.CLICK_ID = { AudioManager.CLICK_ID = {
@ -40,11 +37,6 @@ AudioManager.EFFECT_ID = {
LINK_CANCEL = "assets/arts/sounds/sfx/battle/link_cancel.wav", LINK_CANCEL = "assets/arts/sounds/sfx/battle/link_cancel.wav",
FUNC_OPEN = "assets/arts/sounds/sfx/ui/func_open.wav", FUNC_OPEN = "assets/arts/sounds/sfx/ui/func_open.wav",
BATTLE_BOX_OPEN = "assets/arts/sounds/sfx/ui/ui_battle_open_box.wav", BATTLE_BOX_OPEN = "assets/arts/sounds/sfx/ui/ui_battle_open_box.wav",
EQUIP_WEAPON_UP = "assets/arts/sounds/sfx/ui/equip_up.wav",
EQUIP_ARMOR_UP = "assets/arts/sounds/sfx/ui/armor_up.wav",
DUNGEON_SMASH = "assets/arts/sounds/sfx/ui/smash.wav",
STAR_GET = "assets/arts/sounds/sfx/ui/star_get.wav",
ACT_PVP_FINISH = "assets/arts/sounds/sfx/ui/act_pvp_finish.wav",
} }
AudioManager.BO_EFFECT_ID = { AudioManager.BO_EFFECT_ID = {

File diff suppressed because it is too large Load Diff

View File

@ -113,10 +113,6 @@ function ConfigManager:preLoadConfig()
handleMonsterGrow("monster_daily_challenge") handleMonsterGrow("monster_daily_challenge")
handleMonsterGrow("monster_dungeon_gold") handleMonsterGrow("monster_dungeon_gold")
handleMonsterGrow("monster_dungeon_shards") handleMonsterGrow("monster_dungeon_shards")
handleMonsterGrow("monster_dungeon_equip")
handleMonsterGrow("monster_dungeon_armor")
handleMonsterGrow("monster_activity")
handleMonsterGrow("monster_dungeon_rune")
self.configs["monster"] = { self.configs["monster"] = {
data = monsterFullData, data = monsterFullData,

View File

@ -10,22 +10,15 @@ function DataManager:init()
self:initManager("ChapterData", "app/userdata/chapter/chapter_data") self:initManager("ChapterData", "app/userdata/chapter/chapter_data")
self:initManager("DailyChallengeData", "app/userdata/daily_challenge/daily_challenge_data") self:initManager("DailyChallengeData", "app/userdata/daily_challenge/daily_challenge_data")
self:initManager("DungeonData", "app/userdata/dungeon/dungeon_data") self:initManager("DungeonData", "app/userdata/dungeon/dungeon_data")
self:initManager("ArenaData", "app/userdata/arena/arena_data")
self:initManager("CollectionData", "app/userdata/collection/collection_data")
self:initManager("HeroData", "app/userdata/hero/hero_data") self:initManager("HeroData", "app/userdata/hero/hero_data")
self:initManager("BagData", "app/userdata/bag/bag_data") self:initManager("BagData", "app/userdata/bag/bag_data")
self:initManager("EquipData", "app/userdata/equip/equip_data")
self:initManager("SkinData", "app/userdata/skin/skin_data")
self:initManager("RunesData", "app/userdata/runes/runes_data")
self:initManager("BattleData", "app/userdata/battle/battle_data") self:initManager("BattleData", "app/userdata/battle/battle_data")
self:initManager("BattlePVPData", "app/userdata/battle/battle_pvp_data")
self:initManager("FormationData", "app/userdata/formation/formation_data") self:initManager("FormationData", "app/userdata/formation/formation_data")
self:initManager("TutorialData", "app/userdata/tutorial/tutorial_data") self:initManager("TutorialData", "app/userdata/tutorial/tutorial_data")
self:initManager("MailData", "app/userdata/mail/mail_data") self:initManager("MailData", "app/userdata/mail/mail_data")
self:initManager("ActivityData", "app/userdata/activity/activity_data") self:initManager("ActivityData", "app/userdata/activity/activity_data")
self:initManager("GoldPigData", "app/userdata/activity/gold_pig/gold_pig_data") self:initManager("GoldPigData", "app/userdata/activity/gold_pig/gold_pig_data")
self:initManager("BountyData", "app/userdata/bounty/bounty_data") self:initManager("BountyData", "app/userdata/bounty/bounty_data")
self:initManager("ArenaBountyData", "app/userdata/arena/arena_bounty_data")
self:initManager("TaskData", "app/userdata/task/task_data") self:initManager("TaskData", "app/userdata/task/task_data")
self:initManager("DailyTaskData", "app/userdata/task/daily_task_data") self:initManager("DailyTaskData", "app/userdata/task/daily_task_data")
self:initManager("IdleData", "app/userdata/idle/idle_data") self:initManager("IdleData", "app/userdata/idle/idle_data")
@ -33,14 +26,6 @@ function DataManager:init()
self:initManager("SevenDayData", "app/userdata/activity/seven_day/seven_day_data") self:initManager("SevenDayData", "app/userdata/activity/seven_day/seven_day_data")
self:initManager("ShopData", "app/userdata/shop/shop_data") self:initManager("ShopData", "app/userdata/shop/shop_data")
self:initManager("SummonData", "app/userdata/summon/summon_data") self:initManager("SummonData", "app/userdata/summon/summon_data")
self:initManager("FullMoonData", "app/userdata/activity/full_moon/full_moon_data")
self:initManager("TournWaveData", "app/userdata/activity/tourn_wave/tourn_wave_data")
self:initManager("TournArenaData", "app/userdata/activity/tourn_arena/tourn_arena_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")
self:initManager("ActPvpData", "app/userdata/activity/act_pvp/act_pvp_data")
end end
function DataManager:initManager(name, path) function DataManager:initManager(name, path)
@ -48,7 +33,7 @@ function DataManager:initManager(name, path)
self._cacheManager[name] = self[name] self._cacheManager[name] = self[name]
end end
if (name == "BattleData" or name == "BattlePVPData") and self._cacheManager[name] then if name == "BattleData" and self._cacheManager[name] then
else else
self[name] = require(path):create() self[name] = require(path):create()
end end
@ -85,16 +70,13 @@ function DataManager:checkDataBind()
if name == "BagData" then if name == "BagData" then
changeBindFunc(baseData.ItemData, self[name].ItemData) changeBindFunc(baseData.ItemData, self[name].ItemData)
else else
if baseData ~= self[name] then
changeBindFunc(baseData, self[name]) changeBindFunc(baseData, self[name])
end end
end end
end end
end
end end
function DataManager:clear() function DataManager:clear()
self.loginSuccess = false
self.initWithServer = false self.initWithServer = false
if self.cacheTimer then if self.cacheTimer then
SchedulerManager:unscheduleGlobal(self.cacheTimer) SchedulerManager:unscheduleGlobal(self.cacheTimer)
@ -105,38 +87,23 @@ function DataManager:clear()
self.ChapterData:clear() self.ChapterData:clear()
self.DailyChallengeData:clear() self.DailyChallengeData:clear()
self.DungeonData:clear() self.DungeonData:clear()
self.ArenaData:clear()
self.CollectionData:clear()
self.HeroData:clear() self.HeroData:clear()
self.BagData:clear() self.BagData:clear()
self.EquipData:clear()
self.SkinData:clear()
self.RunesData:clear()
self.FormationData:clear() self.FormationData:clear()
self.ActivityData:clear() self.ActivityData:clear()
self.MailData:clear() self.MailData:clear()
self.GoldPigData:clear() self.GoldPigData:clear()
self.BountyData:clear() self.BountyData:clear()
self.ArenaBountyData:clear()
self.DailyTaskData:clear() self.DailyTaskData:clear()
self.IdleData:clear() self.IdleData:clear()
self.GrowthFundData:clear() self.GrowthFundData:clear()
self.SevenDayData:clear() self.SevenDayData:clear()
self.ShopData:clear() self.ShopData:clear()
self.SummonData:clear() self.SummonData:clear()
self.FullMoonData:clear()
self.TournWaveData:clear()
self.TournArenaData:clear()
-- 任务数据最后清理 -- 任务数据最后清理
self.TaskData:clear() self.TaskData:clear()
self.AIHelperData:clear()
self.HeroFundData:clear()
self.ActBossRushData:clear()
self.FourteenDayData:clear()
self.ActPvpData:clear()
ModuleManager.TaskManager:clear() ModuleManager.TaskManager:clear()
self:clearTryOpenFunc() self:clearTryOpenFunc()
self.activityBountyLevelMap = nil
end end
function DataManager:initWithServerData(data) function DataManager:initWithServerData(data)
@ -148,34 +115,21 @@ function DataManager:initWithServerData(data)
if EDITOR_MODE then if EDITOR_MODE then
Logger.logHighlight("initWithServerData") Logger.logHighlight("initWithServerData")
Logger.printTable(data) Logger.printTable(data)
Logger.logHighlight("注册时间 : " .. Time:formatTimeYMDHMS(GFunc.formatTimeStep(data.stat.register_ts)))
end end
self.registerTs = data.stat and data.stat.register_ts or Time:getServerTime()
self.registerTs = GFunc.formatTimeStep(self.registerTs or Time:getServerTime())
self.todayFirstLogin = data.today_first_login self.todayFirstLogin = data.today_first_login
self.PlayerData:init(data) self.PlayerData:init(data)
self.ChapterData:init(data.chapter) self.ChapterData:init(data.chapter)
self.DailyChallengeData:init(data.chapter_daily_challenge) self.DailyChallengeData:init(data.chapter_daily_challenge)
self.DungeonData:initDungeonGold(data.chapter_gold_challenge) self.DungeonData:initDungeonGold(data.chapter_gold_challenge)
self.DungeonData:initDungeonShards(data.chapter_shards_challenge) self.DungeonData:initDungeonShards(data.chapter_shards_challenge)
-- FormationData要在RunesData之前初始化依赖阵容数据进行上报
self.FormationData:init(data.fight_info)
self.EquipData:init(data.heroes_equips)
self.EquipData:initGifts(data.act_weapon_armor_gift)
self.SkinData:init(data.bag.skins)
self.RunesData:init(data.rune)
-- HeroData要在EquipData、SkinData、RunesData之后初始化依赖它们的属性数据
self.HeroData:init(data.bag.heroes) self.HeroData:init(data.bag.heroes)
self.BagData:init(data.bag) self.BagData:init(data.bag)
self.DungeonData:initDungeonWeapon(data.chapter_weapon_challenge) self.FormationData:init(data.fight_info)
self.DungeonData:initDungeonArmor(data.chapter_armor_challenge)
self.CollectionData:init(data.collection)
self.TutorialData:init(data.guide) self.TutorialData:init(data.guide)
self.MailData:init(data.mail_info) self.MailData:init(data.mail_info)
self.ActivityData:init()
self.GoldPigData:init(data.pig, true) self.GoldPigData:init(data.pig, true)
self.BountyData:init(data.bounty) self.BountyData:init(data.bounty)
self.ArenaBountyData:init(data.arena_bounty)
self.ArenaData:initGiftInfo(data.act_arena_gift, true)
-- 任务要在BountyData之后初始化依赖BountyData的数据 -- 任务要在BountyData之后初始化依赖BountyData的数据
self.DailyTaskData:init(data.task_daily) self.DailyTaskData:init(data.task_daily)
self.IdleData:init(data.idle) self.IdleData:init(data.idle)
@ -184,31 +138,21 @@ function DataManager:initWithServerData(data)
self.ShopData:initActGift(data.act) -- 礼包购买信息 self.ShopData:initActGift(data.act) -- 礼包购买信息
self.ShopData:initMallDaily(data.mall_daily) -- 每日特惠 self.ShopData:initMallDaily(data.mall_daily) -- 每日特惠
self.ShopData:initCommonDailyGoldGift(data.mall_idle and data.mall_idle.ad_count) -- 常驻金币礼包 self.ShopData:initCommonDailyGoldGift(data.mall_idle and data.mall_idle.ad_count) -- 常驻金币礼包
self.ShopData:initGrowUpGift(data.act_grow_up_gift2) -- 成长礼包 self.ShopData:initGrowUpGift(data.act_grow_up_gift, data.now_ts) -- 成长礼包
self.ShopData:initLevelUpGift(data.act_level_up_gift) -- 助力/金币礼包 self.ShopData:initLevelUpGift(data.act_level_up_gift) -- 助力/金币礼包
self.ShopData:initIntroductGift(data.act_introductory_gift) -- 入门礼包
-- 活动要在礼包后初始化
self.ActivityData:init()
-- 商店礼包都初始化完了后检查一下每日红点 -- 商店礼包都初始化完了后检查一下每日红点
self.ShopData:checkShopDiscountRedPoint() self.ShopData:checkShopDiscountRedPoint()
self.ShopData:checkLoginPopInfo() -- 需要写在shopdata所有初始化之后
self.SummonData:init(data.summon, true) self.SummonData:init(data.summon, true)
self.AIHelperData:init(nil, true)
-- 成长基金要在ShopData和PlayerDataBagData还有之后初始化依赖这些数据 -- 成长基金要在ShopData和PlayerDataBagData还有之后初始化依赖这些数据
if data.fund then if data.fund then
self.GrowthFundData:init(data.fund.funds) self.GrowthFundData:init(data.fund.funds)
end end
self.HeroFundData:init(data.hero_fund)
self.FourteenDayData:init(data.fourteen_bounty)
self.DungeonData:initDungeonRune(data.chapter_rune_challenge)
-- 任务数据最后初始化,依赖其他模块的数据 -- 任务数据最后初始化,依赖其他模块的数据
self.TaskData:init() self.TaskData:init()
self:scheduleGlobal() self:scheduleGlobal()
self:checkDataBind() self:checkDataBind()
ModuleManager.ArenaManager:reqArenaInfo()
self:dealOpenActivity(data.activities)
-- 写在最后防止某些数据还未初始化就被bi访问报错 -- 写在最后防止某些数据还未初始化就被bi访问报错
self.initWithServer = true self.initWithServer = true
end end
@ -216,24 +160,12 @@ end
-- 是否首次登录 -- 是否首次登录
function DataManager:getIsFirstLogin() function DataManager:getIsFirstLogin()
local nowTime = Time:getServerTime() local nowTime = Time:getServerTime()
local offset = nowTime - (self.registerTs or 0) if self.registerTs%86400 == nowTime %8640 and self:getIsTodayFirstLogin() then
if math.abs(offset) <= 10 and self:getIsTodayFirstLogin() then -- 允许误差
return true return true
end end
return false return false
end end
-- 是否在新号24小时内
function DataManager:getIsInCreate24Hour()
local nowTime = Time:getServerTime()
local passTime = nowTime - (self.registerTs or 0)
return passTime < 86400
end
function DataManager:getRegisterTs()
return self.registerTs or 0
end
function DataManager:getIsTodayFirstLogin() function DataManager:getIsTodayFirstLogin()
return self.todayFirstLogin or false return self.todayFirstLogin or false
end end
@ -430,149 +362,4 @@ function DataManager:getManager(name, path)
return self[name] return self[name]
end end
---- 缓存一下活动战令
function DataManager:getActivityBountyLevelByActId(actId)
if not self.activityBountyLevelMap then
self.activityBountyLevelMap = {}
local cfg = ConfigManager:getConfig("activity_bounty_level")
for id, info in pairs(cfg) do
if info.act_id then
if not self.activityBountyLevelMap[info.act_id] then
self.activityBountyLevelMap[info.act_id] = {}
end
table.insert(self.activityBountyLevelMap[info.act_id], id)
end
end
end
return self.activityBountyLevelMap[actId]
end
---- 缓存一下活动兑换商店
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
return self.activityExchangeMap[actId]
end
---- 缓存一下活动排行榜
function DataManager:getActivityRankByActId(actId)
if not self.activityRankMap then
self.activityRankMap = {}
local cfg = ConfigManager:getConfig("activity_rank")
for id, info in pairs(cfg) do
if info.act_id then
if not self.activityRankMap[info.act_id] then
self.activityRankMap[info.act_id] = {}
end
table.insert(self.activityRankMap[info.act_id], id)
end
end
end
return self.activityRankMap[actId]
end
function DataManager:dealOpenActivity(activityInfo)
local curTime = Time:getServerTime()
if not activityInfo then
return
end
local newActivityList = {}
local map = {}
for _, info in ipairs(activityInfo) do
if info.type then
if not map[info.type] then
map[info.type] = info
else
if map[info.type].start_at > info.start_at then
map[info.type] = info
end
end
end
end
for actType, info in pairs(map) do
table.insert(newActivityList, info)
end
local dealTypeMap = {}
for _, info in ipairs(newActivityList) 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)
DataManager.ActBossRushData:setActivityInfo(params)
ModuleManager.ActBossRushManager:reqActData()
end,
[3] = function(params)
DataManager.ActPvpData:setActivityId(params.id)
DataManager.ActPvpData:setActivityInfo(params)
DataManager.ActPvpData:init({}) -- 默认初始化
ModuleManager.ActPvpManager:reqActData()
end,
[4] = function(params)
DataManager.FullMoonData:setActStatus(params)
ModuleManager.FullMoonManager:reqActData()
ModuleManager.FullMoonManager:initTimer()
end,
[5] = function(params)
DataManager.TournWaveData:setActStatus(params)
ModuleManager.TournWaveManager:reqActData()
ModuleManager.TournWaveManager:initTimer()
end,
[6] = function(params)
DataManager.TournArenaData:setActStatus(params)
ModuleManager.TournArenaManager:reqActData()
ModuleManager.TournArenaManager:initTimer()
end,
}
DataManager.waitOpenActivity = {
[2] = function(params)
DataManager.ActBossRushData:init({activity_id = params.id}) -- 默认初始化
DataManager.ActBossRushData:setActivityInfo(params)
end,
[3] = function(params)
DataManager.ActPvpData:setActivityId(params.id)
DataManager.ActPvpData:setActivityInfo(params)
DataManager.ActPvpData:init({}) -- 默认初始化
end,
[4] = function(params)
DataManager.FullMoonData:setActStatus(params)
ModuleManager.FullMoonManager:initTimer()
end,
[5] = function(params)
DataManager.TournWaveData:setActStatus(params)
ModuleManager.TournWaveManager:initTimer()
end,
[6] = function(params)
DataManager.TournArenaData:setActStatus(params)
ModuleManager.TournArenaManager:initTimer()
end,
}
return DataManager return DataManager

View File

@ -40,37 +40,8 @@ EventManager.CUSTOM_EVENT = {
PLAYER_INFO_CLICK_AVATAR = "PLAYER_INFO_CLICK_AVATAR",-- 个人信息选择头像 PLAYER_INFO_CLICK_AVATAR = "PLAYER_INFO_CLICK_AVATAR",-- 个人信息选择头像
PLAYER_INFO_CLICK_FRAME = "PLAYER_INFO_CLICK_FRAME",-- 个人信息选择头像框 PLAYER_INFO_CLICK_FRAME = "PLAYER_INFO_CLICK_FRAME",-- 个人信息选择头像框
RENAME_SUCCESS = "RENAME_SUCCESS",-- 重命名成功 RENAME_SUCCESS = "RENAME_SUCCESS",-- 重命名成功
GETED_REWARD_SUCCESS = "GETED_REWARD_SUCCESS",-- 获取奖励成功
-- 竞技场
ARENA_SEASON_SETTLEMENT = "ARENA_SEASON_SETTLEMENT",-- 赛季结算
ARENA_SEASON_END = "ARENA_SEASON_END",-- 赛季结束
ARENA_RECORD_SUCCESS = "ARENA_RECORD_SUCCESS",-- 战报获取成功
ARENA_RANK_SUCCESS = "ARENA_RANK_SUCCESS",-- 排行榜获取成功
ARENA_AD_BOX_SUCCESS = "ARENA_AD_BOX_SUCCESS",-- ad宝箱获取成功
ARENA_BATTLE_SETTLEMENT = "ARENA_BATTLE_SETTLEMENT",-- 竞技场战斗结算
-- 图鉴
COLLECTION_CLICK_GET_POINT = "COLLECTION_CLICK_GET_POINT",
-- 装备
EQUIP_UPGRADE_SUCCESS = "EQUIP_UPGRADE_SUCCESS",
EQUIP_UPSECTION_SUCCESS = "EQUIP_UPSECTION_SUCCESS",
HERO_UPGRADE_SUCCESS = "HERO_UPGRADE_SUCCESS",
-- 符文
RUNE_QUENCHING_SUCCESS = "RUNE_QUENCHING_SUCCESS",
GO_DUNGEON_UI = "GO_DUNGEON_UI",
-- 皮肤
SKIN_SELECT = "SKIN_SELECT",
-- BORAD_TOUCH_BEGIN = "BORAD_TOUCH_BEGIN", -- BORAD_TOUCH_BEGIN = "BORAD_TOUCH_BEGIN",
-- BORAD_TOUCH_OVER = "BORAD_TOUCH_OVER" -- BORAD_TOUCH_OVER = "BORAD_TOUCH_OVER"
DUNGEON_ARMOR_TO_TARGET_ID = "DUNGEON_ARMOR_TO_TARGET_ID",
ACTIVITY_SUMMER_END = "ACTIVITY_SUMMER_END",
ACTIVITY_FULL_MOON_END = "ACTIVITY_FULL_MOON_END",
ACTIVITY_TOURN_WAVE_END = "ACTIVITY_TOURN_WAVE_END",
ACTIVITY_TOURN_ARENA_END = "ACTIVITY_TOURN_ARENA_END",
MAIN_UI_CHECK_SIDE_BAR = "MAIN_UI_CHECK_SIDE_BAR",
FORMATION_CHANGE = "FORMATION_CHANGE",
BATTLE_REBIRTH = "BATTLE_REBIRTH",
ACT_PVP_EVENT = "ACT_PVP_EVENT",
} }
-- 此方法不能直接在外部调用请使用例如BaseUIBaseModule等封装好的接口 -- 此方法不能直接在外部调用请使用例如BaseUIBaseModule等封装好的接口

View File

@ -36,11 +36,11 @@ local SUPPORT_LANGUAGE_LIST = {
GConst.LANGUAGE.PORTUGUESE, -- 葡萄牙 GConst.LANGUAGE.PORTUGUESE, -- 葡萄牙
GConst.LANGUAGE.VIETNAMESE, -- 越南 GConst.LANGUAGE.VIETNAMESE, -- 越南
GConst.LANGUAGE.INDONESIA, -- 印度尼西亚 GConst.LANGUAGE.INDONESIA, -- 印度尼西亚
GConst.LANGUAGE.THAILAND, -- 泰国 -- GConst.LANGUAGE.THAILAND, -- 泰国
-- GConst.LANGUAGE.FRENCH, -- 法语 -- GConst.LANGUAGE.FRENCH, -- 法语
-- GConst.LANGUAGE.ITALIAN, -- 意大利 -- GConst.LANGUAGE.ITALIAN, -- 意大利
-- GConst.LANGUAGE.GERMAN, -- 德国 -- GConst.LANGUAGE.GERMAN, -- 德国
GConst.LANGUAGE.SPANISH, -- 西班牙 -- GConst.LANGUAGE.SPANISH, -- 西班牙
-- GConst.LANGUAGE.TURKISH, -- 土耳其 -- GConst.LANGUAGE.TURKISH, -- 土耳其
-- GConst.LANGUAGE.MALAYSIA, -- 马来西亚 -- GConst.LANGUAGE.MALAYSIA, -- 马来西亚
} }

View File

@ -33,17 +33,6 @@ local LOCAL_DATA_KEY = {
CHALLENGE_TASK_POP_TIME = "CHALLENGE_TASK_POP_TIME", CHALLENGE_TASK_POP_TIME = "CHALLENGE_TASK_POP_TIME",
NEW_AVATAR_AND_FRAME = "NEW_AVATAR_AND_FRAME", NEW_AVATAR_AND_FRAME = "NEW_AVATAR_AND_FRAME",
SHOP_DISCOUNT_RED_POINT_TIME = "SHOP_DISCOUNT_RED_POINT_TIME", SHOP_DISCOUNT_RED_POINT_TIME = "SHOP_DISCOUNT_RED_POINT_TIME",
ARENA_BOUNTY_POP_TIME = "ARENA_BOUNTY_POP_TIME",
LINK_TOUCH_CANCEL_COUNT = "LINK_TOUCH_CANCEL_COUNT",
ARENA_TODAY_BATTLE_COUNT = "ARENA_TODAY_BATTLE_COUNT",
TRIAL_HERO = "TRIAL_HERO",
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",
ACT_PVP_SHOW_HELP = "ACT_PVP_SHOW_HELP",
} }
LocalData.KEYS = LOCAL_DATA_KEY LocalData.KEYS = LOCAL_DATA_KEY
@ -108,7 +97,7 @@ end
-- 跟角色挂钩的唯一id -- 跟角色挂钩的唯一id
function LocalData:getRoleKey(key) function LocalData:getRoleKey(key)
local uid = DataManager.PlayerData:getAcountId() local uid = DataManager.PlayerData:getUid()
if uid == "" then if uid == "" then
Logger.logError("check roleid error!") Logger.logError("check roleid error!")
end end
@ -404,103 +393,4 @@ function LocalData:setNewAvatarAndFrame(info)
self:setString(LOCAL_DATA_KEY.NEW_AVATAR_AND_FRAME, str) self:setString(LOCAL_DATA_KEY.NEW_AVATAR_AND_FRAME, str)
end end
function LocalData:setArenaBountyPopTime(time)
self:setInt(LOCAL_DATA_KEY.ARENA_BOUNTY_POP_TIME, time)
end
function LocalData:getArenaBountyPopTime()
return self:getInt(LOCAL_DATA_KEY.ARENA_BOUNTY_POP_TIME, 0)
end
function LocalData:setLinkTouchCancelCount(count)
self:setInt(LOCAL_DATA_KEY.LINK_TOUCH_CANCEL_COUNT, count)
end
function LocalData:getLinkTouchCancelCount()
return self:getInt(LOCAL_DATA_KEY.LINK_TOUCH_CANCEL_COUNT, 0)
end
function LocalData:getTodayArenaBattleCount()
return self:getInt(LOCAL_DATA_KEY.ARENA_TODAY_BATTLE_COUNT .. Time:getBeginningOfServerToday(), 0)
end
function LocalData:recordTodayArenaBattle()
local value = self:getTodayArenaBattleCount()
self:setInt(LOCAL_DATA_KEY.ARENA_TODAY_BATTLE_COUNT .. Time:getBeginningOfServerToday(), value + 1)
end
function LocalData:MarkTrailHero()
self:setInt(LocalData:getRoleKey(LOCAL_DATA_KEY.TRIAL_HERO), 1)
end
function LocalData:GetMarktrailHero()
return self:getInt(LocalData:getRoleKey(LOCAL_DATA_KEY.TRIAL_HERO), 0)
end
function LocalData:saveBattleSnapshot(snapshot)
if EDITOR_MODE then
Logger.logHighlight(json.encode(snapshot))
end
self:setString(LocalData:getRoleKey(LOCAL_DATA_KEY.BATTLE_SNAPSHOT), json.encode(snapshot))
LocalData:save()
end
function LocalData:getBattleSnapshot()
local dealedSnapshot = self:getString(LocalData:getRoleKey(LOCAL_DATA_KEY.BATTLE_SNAPSHOT), "{}")
if EDITOR_MODE then
Logger.logHighlight(dealedSnapshot)
end
return json.decode(dealedSnapshot)
end
function LocalData:getTodayActSummerWatchedSkin()
return self:getInt(LOCAL_DATA_KEY.ACTIVITY_SUMMER_TODAY_SKIN .. Time:getBeginningOfServerToday(), 0) == 1
end
function LocalData:recordTodayActSummerWatchedSkin()
self:setInt(LOCAL_DATA_KEY.ACTIVITY_SUMMER_TODAY_SKIN .. Time:getBeginningOfServerToday(), 1)
end
function LocalData:getTodayActSummerWatchedHero()
return self:getInt(LOCAL_DATA_KEY.ACTIVITY_SUMMER_TODAY_HERO .. Time:getBeginningOfServerToday(), 0) == 1
end
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
function LocalData:getActPvpShowHelpTag(actId)
actId = actId or 0
return self:getInt(LOCAL_DATA_KEY.ACT_PVP_SHOW_HELP .. actId, 0)
end
function LocalData:recordActPvpShowHelpTag(actId)
actId = actId or 0
self:setInt(LOCAL_DATA_KEY.ACT_PVP_SHOW_HELP .. actId, 1)
end
return LocalData return LocalData

View File

@ -39,8 +39,6 @@ local MODULE_PATHS = {
CommerceManager = "app/module/commerce/commerce_manager", CommerceManager = "app/module/commerce/commerce_manager",
-- 战令 -- 战令
BountyManager = "app/module/bounty/bounty_manager", BountyManager = "app/module/bounty/bounty_manager",
-- 竞技场战令
ArenaBountyManager = "app/module/arena/arena_bounty_manager",
-- 道具 -- 道具
ItemManager = "app/module/item/item_manager", ItemManager = "app/module/item/item_manager",
-- 商店 -- 商店
@ -55,38 +53,6 @@ local MODULE_PATHS = {
AccountManager= "app/module/account/account_manager", AccountManager= "app/module/account/account_manager",
-- 活动副本 -- 活动副本
DungeonManager = "app/module/dungeon/dungeon_manager", DungeonManager = "app/module/dungeon/dungeon_manager",
-- 竞技场
ArenaManager = "app/module/arena/arena_manager",
-- 图鉴
CollectionManager = "app/module/collection/collection_manager",
-- 通用
CommonManager = "app/module/common/common_manager",
-- 武器副本
DungeonWeaponManager = "app/module/dungeon_weapon/dungeon_weapon_manager",
-- 防具副本
DungeonArmorManager = "app/module/dungeon_armor/dungeon_armor_manager",
-- 装备
EquipManager = "app/module/equip/equip_manager",
-- 皮肤
SkinManager = "app/module/skin/skin_manager",
-- 皮肤
RunesManager = "app/module/runes/runes_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",
-- 圆月活动
FullMoonManager = "app/module/activity/full_moon/full_moon_manager",
-- 波次锦标赛活动
TournWaveManager = "app/module/activity/tourn_wave/tourn_wave_manager",
-- 竞技场锦标赛活动
TournArenaManager = "app/module/activity/tourn_arena/tourn_arena_manager",
-- 符文副本
DungeonRuneManager = "app/module/dungeon_rune/dungeon_rune_manager",
-- 梦魇酒馆
ActPvpManager = "app/module/activity/act_pvp/act_pvp_manager",
} }
-- 这里的key对应func_open里的id -- 这里的key对应func_open里的id
@ -98,7 +64,6 @@ ModuleManager.MODULE_KEY = {
STORE_BOX_3_OPEN = "store_box_3_open", STORE_BOX_3_OPEN = "store_box_3_open",
BOUNTY_OPEN = "bounty_open", BOUNTY_OPEN = "bounty_open",
IDLE_DROP = "idle_drop", IDLE_DROP = "idle_drop",
ACTIVITY = "activity_open",
MALL = "mall", -- 商城 MALL = "mall", -- 商城
MALL_DAILY = "mall_daily", -- 每日商城 MALL_DAILY = "mall_daily", -- 每日商城
DAILY_CHALLENGE = "daily_challenge", -- 每日挑战 DAILY_CHALLENGE = "daily_challenge", -- 每日挑战
@ -109,16 +74,6 @@ ModuleManager.MODULE_KEY = {
MAIL = "mail_open", -- 邮件 MAIL = "mail_open", -- 邮件
DUNGEON_SHARDS = "dungeon_shards_open", -- 碎片副本 DUNGEON_SHARDS = "dungeon_shards_open", -- 碎片副本
DUNGEON_GOLD = "dungeon_gold_open", -- 金币副本 DUNGEON_GOLD = "dungeon_gold_open", -- 金币副本
INTRODUCT_GIFT = "introduct_gift", -- 入门礼包
ARENA = "arena_open", -- 竞技场
ARENA_GIFT = "act_arena_gift", -- 竞技场礼包
COLLECT = "collection_open", -- 收集
DUNGEON_ARMOR = "dungeon_armor_open", -- 支线副本
DUNGEON_WEAPON = "dungeon_weapon_open", -- 装备副本
EQUIP_WEAPON = "equip_weapon_open", -- 武器
EQUIP_ARMOR = "equip_armor_open", -- 防具
SKIN = "skin_open", -- 皮肤
RUNES_OPEN = "runes_open", -- 符文
} }
local _moduleMgrs = {} local _moduleMgrs = {}
@ -141,9 +96,6 @@ setmetatable(ModuleManager, MODULE_METATABLE)
function ModuleManager:init() function ModuleManager:init()
ModuleManager.TaskManager:init() ModuleManager.TaskManager:init()
ModuleManager.DailyChallengeManager:init() ModuleManager.DailyChallengeManager:init()
ModuleManager.PlayerManager:init()
ModuleManager.SkinManager:init()
ModuleManager.TournArenaManager:init()
end end
-- 功能是否开启 -- 功能是否开启

View File

@ -4,36 +4,17 @@ PayManager.PURCHARSE_TYPE = {
ACT_GIFT = 1, ACT_GIFT = 1,
ACT_GOLD_PIG = 2, ACT_GOLD_PIG = 2,
CHAPTER_GIFT = 3, CHAPTER_GIFT = 3,
GROW_UP_GIFT = 4,-- 已废弃 GROW_UP_GIFT = 4,
MALL_TREASURE = 5, MALL_TREASURE = 5,
GROW_UP_GIFT_NEW = 6,
} }
PayManager.PURCHARSE_ACT_TYPE = { PayManager.PURCHARSE_ACT_TYPE = {
FIRST_RECHARGE = 1, FIRST_RECHARGE = 1,
COIN_GIFT = 2, COIN_GIFT = 2,
INTRODUCTORY_GIFT = 3,
BEGINNER_GIFT = 4, BEGINNER_GIFT = 4,
LEVEL_UP_GIFT = 5, LEVEL_UP_GIFT = 5,
GROWTH_FUND = 6, GROWTH_FUND = 6,
BOUNTY = 7, BOUNTY = 7,
ARENA_BOUNTY = 8,
ARENA_GIFT = 9,
ARMOR_FUND = 10,
WEAPON_GIFT = 11,
ARMOR_GIFT = 12,
ACT_SUMMER = 13,
ACT_HERO_FUND = 14,
WEAPON_UPGRADE_GIFT = 15,
ARMOR_UPGRADE_GIFT = 16,
FOURTEEN_DAY_GIFT = 17,
ACT_PVP_BOUNTY = 22,
FULL_MOON_HERO_GIFT = 18,
FULL_MOON_NEW_HERO_GIFT = 19,
FULL_MOON_SKIN_GIFT = 20,
RUNES_GIFT = 21,
TOURN_WAVE_GIFT = 23,
TOURN_ARENA_GIFT = 24,
} }
PayManager.PURCHARSE_TYPE_CONFIG = { PayManager.PURCHARSE_TYPE_CONFIG = {
@ -41,73 +22,37 @@ PayManager.PURCHARSE_TYPE_CONFIG = {
[PayManager.PURCHARSE_TYPE.ACT_GOLD_PIG] = "act_gold_pig", [PayManager.PURCHARSE_TYPE.ACT_GOLD_PIG] = "act_gold_pig",
[PayManager.PURCHARSE_TYPE.MALL_TREASURE] = "mall_treasure", [PayManager.PURCHARSE_TYPE.MALL_TREASURE] = "mall_treasure",
[PayManager.PURCHARSE_TYPE.CHAPTER_GIFT] = "act_chapter_store", [PayManager.PURCHARSE_TYPE.CHAPTER_GIFT] = "act_chapter_store",
[PayManager.PURCHARSE_TYPE.GROW_UP_GIFT_NEW] = "act_growup_gift_new", [PayManager.PURCHARSE_TYPE.GROW_UP_GIFT] = "act_growup_gift",
} }
PayManager.BI_ITEM_GET_TYPE = { PayManager.BI_ITEM_GET_TYPE = {
[PayManager.PURCHARSE_TYPE.ACT_GIFT] = { [PayManager.PURCHARSE_TYPE.ACT_GIFT] = {
[PayManager.PURCHARSE_ACT_TYPE.FIRST_RECHARGE] = BIReport.ITEM_GET_TYPE.FIRST_RECHARGE, [PayManager.PURCHARSE_ACT_TYPE.FIRST_RECHARGE] = BIReport.ITEM_GET_TYPE.FIRST_RECHARGE,
[PayManager.PURCHARSE_ACT_TYPE.COIN_GIFT] = BIReport.ITEM_GET_TYPE.COIN_GIFT, [PayManager.PURCHARSE_ACT_TYPE.COIN_GIFT] = BIReport.ITEM_GET_TYPE.COIN_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.INTRODUCTORY_GIFT] = BIReport.ITEM_GET_TYPE.INTRODUCTORY_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.BEGINNER_GIFT] = BIReport.ITEM_GET_TYPE.BEGINNER_GIFT, [PayManager.PURCHARSE_ACT_TYPE.BEGINNER_GIFT] = BIReport.ITEM_GET_TYPE.BEGINNER_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.LEVEL_UP_GIFT] = BIReport.ITEM_GET_TYPE.LEVEL_UP_GIFT, [PayManager.PURCHARSE_ACT_TYPE.LEVEL_UP_GIFT] = BIReport.ITEM_GET_TYPE.LEVEL_UP_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.GROWTH_FUND] = BIReport.ITEM_GET_TYPE.GROWTH_FUND, [PayManager.PURCHARSE_ACT_TYPE.GROWTH_FUND] = BIReport.ITEM_GET_TYPE.GROWTH_FUND,
[PayManager.PURCHARSE_ACT_TYPE.BOUNTY] = BIReport.ITEM_GET_TYPE.BOUNTY, [PayManager.PURCHARSE_ACT_TYPE.BOUNTY] = BIReport.ITEM_GET_TYPE.BOUNTY,
[PayManager.PURCHARSE_ACT_TYPE.ARENA_BOUNTY] = BIReport.ITEM_GET_TYPE.ARENA_BOUNTY,
[PayManager.PURCHARSE_ACT_TYPE.ARENA_GIFT] = BIReport.ITEM_GET_TYPE.ARENA_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.ARMOR_FUND] = BIReport.ITEM_GET_TYPE.ARMOR_FUND,
[PayManager.PURCHARSE_ACT_TYPE.WEAPON_GIFT] = BIReport.ITEM_GET_TYPE.WEAPON_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.ARMOR_GIFT] = BIReport.ITEM_GET_TYPE.ARMOR_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.ACT_SUMMER] = BIReport.ITEM_GET_TYPE.ACT_SUMMER,
[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_ACT_TYPE.ACT_PVP_BOUNTY] = BIReport.ITEM_GET_TYPE.ACT_PVP_BOUNTY_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.FULL_MOON_HERO_GIFT] = BIReport.ITEM_GET_TYPE.FULL_MOON_HERO_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.FULL_MOON_NEW_HERO_GIFT] = BIReport.ITEM_GET_TYPE.FULL_MOON_NEW_HERO_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.FULL_MOON_SKIN_GIFT] = BIReport.ITEM_GET_TYPE.FULL_MOON_SKIN_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.RUNES_GIFT] = BIReport.ITEM_GET_TYPE.RUNES_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.TOURN_WAVE_GIFT] = BIReport.ITEM_GET_TYPE.TOURN_WAVE_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.TOURN_ARENA_GIFT] = BIReport.ITEM_GET_TYPE.TOURN_ARENA_GIFT,
}, },
[PayManager.PURCHARSE_TYPE.ACT_GOLD_PIG] = BIReport.ITEM_GET_TYPE.GOLD_PIG, [PayManager.PURCHARSE_TYPE.ACT_GOLD_PIG] = BIReport.ITEM_GET_TYPE.GOLD_PIG,
[PayManager.PURCHARSE_TYPE.MALL_TREASURE] = BIReport.ITEM_GET_TYPE.MALL_TREASURE, [PayManager.PURCHARSE_TYPE.MALL_TREASURE] = BIReport.ITEM_GET_TYPE.MALL_TREASURE,
[PayManager.PURCHARSE_TYPE.CHAPTER_GIFT] = BIReport.ITEM_GET_TYPE.ACT_CHAPTER_STORE, [PayManager.PURCHARSE_TYPE.CHAPTER_GIFT] = BIReport.ITEM_GET_TYPE.ACT_CHAPTER_STORE,
[PayManager.PURCHARSE_TYPE.GROW_UP_GIFT_NEW] = BIReport.ITEM_GET_TYPE.GROW_UP_GIFT_NEW, [PayManager.PURCHARSE_TYPE.GROW_UP_GIFT] = BIReport.ITEM_GET_TYPE.GROW_UP_GIFT,
} }
PayManager.BI_GIFT_TYPE = { PayManager.BI_GIFT_TYPE = {
[PayManager.PURCHARSE_TYPE.ACT_GIFT] = { [PayManager.PURCHARSE_TYPE.ACT_GIFT] = {
[PayManager.PURCHARSE_ACT_TYPE.FIRST_RECHARGE] = BIReport.GIFT_TYPE.FIRST_RECHARGE, [PayManager.PURCHARSE_ACT_TYPE.FIRST_RECHARGE] = BIReport.GIFT_TYPE.FIRST_RECHARGE,
[PayManager.PURCHARSE_ACT_TYPE.COIN_GIFT] = BIReport.GIFT_TYPE.COIN_GIFT, [PayManager.PURCHARSE_ACT_TYPE.COIN_GIFT] = BIReport.GIFT_TYPE.COIN_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.INTRODUCTORY_GIFT] = BIReport.GIFT_TYPE.INTRODUCTORY_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.BEGINNER_GIFT] = BIReport.GIFT_TYPE.BEGINNER_GIFT, [PayManager.PURCHARSE_ACT_TYPE.BEGINNER_GIFT] = BIReport.GIFT_TYPE.BEGINNER_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.LEVEL_UP_GIFT] = BIReport.GIFT_TYPE.LEVEL_UP_GIFT, [PayManager.PURCHARSE_ACT_TYPE.LEVEL_UP_GIFT] = BIReport.GIFT_TYPE.LEVEL_UP_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.GROWTH_FUND] = BIReport.GIFT_TYPE.GROWTH_FUND, [PayManager.PURCHARSE_ACT_TYPE.GROWTH_FUND] = BIReport.GIFT_TYPE.GROWTH_FUND,
[PayManager.PURCHARSE_ACT_TYPE.BOUNTY] = BIReport.GIFT_TYPE.BOUNTY, [PayManager.PURCHARSE_ACT_TYPE.BOUNTY] = BIReport.GIFT_TYPE.BOUNTY,
[PayManager.PURCHARSE_ACT_TYPE.ARENA_BOUNTY] = BIReport.GIFT_TYPE.ARENA_BOUNTY,
[PayManager.PURCHARSE_ACT_TYPE.ARENA_GIFT] = BIReport.GIFT_TYPE.ARENA_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.ARMOR_FUND] = BIReport.GIFT_TYPE.ARMOR_FUND,
[PayManager.PURCHARSE_ACT_TYPE.WEAPON_GIFT] = BIReport.GIFT_TYPE.WEAPON_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.ARMOR_GIFT] = BIReport.GIFT_TYPE.ARMOR_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.ACT_SUMMER] = BIReport.GIFT_TYPE.ACT_SUMMER,
[PayManager.PURCHARSE_ACT_TYPE.ACT_HERO_FUND] = BIReport.GIFT_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_ACT_TYPE.ACT_PVP_BOUNTY] = BIReport.GIFT_TYPE.ACT_PVP_BOUNTY_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.FULL_MOON_HERO_GIFT] = BIReport.GIFT_TYPE.FULL_MOON_HERO_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.FULL_MOON_NEW_HERO_GIFT] = BIReport.GIFT_TYPE.FULL_MOON_NEW_HERO_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.FULL_MOON_SKIN_GIFT] = BIReport.GIFT_TYPE.FULL_MOON_SKIN_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.RUNES_GIFT] = BIReport.GIFT_TYPE.RUNES_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.TOURN_WAVE_GIFT] = BIReport.GIFT_TYPE.TOURN_WAVE_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.TOURN_ARENA_GIFT] = BIReport.GIFT_TYPE.TOURN_ARENA_GIFT,
}, },
[PayManager.PURCHARSE_TYPE.ACT_GOLD_PIG] = BIReport.GIFT_TYPE.GOLD_PIG, [PayManager.PURCHARSE_TYPE.ACT_GOLD_PIG] = BIReport.GIFT_TYPE.GOLD_PIG,
[PayManager.PURCHARSE_TYPE.MALL_TREASURE] = BIReport.GIFT_TYPE.MALL_TREASURE, [PayManager.PURCHARSE_TYPE.MALL_TREASURE] = BIReport.GIFT_TYPE.MALL_TREASURE,
[PayManager.PURCHARSE_TYPE.CHAPTER_GIFT] = BIReport.GIFT_TYPE.ACT_CHAPTER_STORE, [PayManager.PURCHARSE_TYPE.CHAPTER_GIFT] = BIReport.GIFT_TYPE.ACT_CHAPTER_STORE,
[PayManager.PURCHARSE_TYPE.GROW_UP_GIFT_NEW] = BIReport.GIFT_TYPE.GROW_UP_GIFT_NEW, [PayManager.PURCHARSE_TYPE.GROW_UP_GIFT] = BIReport.GIFT_TYPE.GROW_UP_GIFT,
} }
function PayManager:getItemGetType(purchaseType, id) function PayManager:getItemGetType(purchaseType, id)
@ -220,7 +165,6 @@ function PayManager:requestRewards(purchaseToken, orderId, originOrderId, produc
local cfgName = PayManager.PURCHARSE_TYPE_CONFIG[gift.act_type] local cfgName = PayManager.PURCHARSE_TYPE_CONFIG[gift.act_type]
local cfgInfo = ConfigManager:getConfig(cfgName)[gift.id] local cfgInfo = ConfigManager:getConfig(cfgName)[gift.id]
local rechargeId = cfgInfo.recharge_id local rechargeId = cfgInfo.recharge_id
local beforCount = DataManager.PlayerData:getPayCounts(rechargeId)
DataManager.PlayerData:addPayment(rechargeId) DataManager.PlayerData:addPayment(rechargeId)
DataManager.ShopData:addPayment(rechargeId) -- 降档版本 DataManager.ShopData:addPayment(rechargeId) -- 降档版本
DataManager.ShopData:updateGiftInfo(gift) DataManager.ShopData:updateGiftInfo(gift)
@ -229,9 +173,6 @@ function PayManager:requestRewards(purchaseToken, orderId, originOrderId, produc
giftId = gift.id, giftId = gift.id,
rechargeId = cfgInfo.recharge_id rechargeId = cfgInfo.recharge_id
}) })
if beforCount <= 0 then
BIReport:postFirstRechargeEvent(rechargeId)
end
end) end)
for _, info in ipairs(biPayGetInfo) do for _, info in ipairs(biPayGetInfo) do

View File

@ -68,8 +68,6 @@ function SDKManager:init()
local SDKMgr = CS.BF.BFMain.Instance.SDKMgr local SDKMgr = CS.BF.BFMain.Instance.SDKMgr
self:initPay() self:initPay()
self:initPayListener() self:initPayListener()
-- 初始化AF的广告回传SDK
CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:InitAppsFlyerAdRevenue()
self:initAdsListener() self:initAdsListener()
-- 拿到firebasetoken -- 拿到firebasetoken
@ -215,7 +213,6 @@ end
function SDKManager:initFireBaseToken() function SDKManager:initFireBaseToken()
CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr:GetFirebaseToken(function(token) CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr:GetFirebaseToken(function(token)
self.firebaseToken = token self.firebaseToken = token
CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:AdjustSetDeviceToken(token)
end) end)
end end
@ -277,11 +274,6 @@ function SDKManager:initAdsListener()
self.adCallback = nil self.adCallback = nil
end end
end) end)
CS.BF.BFMain.Instance.SDKMgr.BFIronSourceSDKMgr:SetAdRevenuePaidEventCallback(function (result)
if result and result ~= GConst.EMPTY_STRING then
BIReport:postIronSourceAdRevenue(result)
end
end)
elseif CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.IPhonePlayer then elseif CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.IPhonePlayer then
-- 初始化一下 -- 初始化一下
local adManager = CS.AdManager.Instance local adManager = CS.AdManager.Instance
@ -308,12 +300,6 @@ function SDKManager:showFullScreenAds(adsClickType, adCallback)
BIReport:postAdClick(adsClickType) BIReport:postAdClick(adsClickType)
if EDITOR_MODE then if EDITOR_MODE then
if DataManager.PlayerData then
DataManager.PlayerData:addAdCount()
local data = {}
data.ads_num = DataManager.PlayerData:getAdCount()
CS.ThinkingAnalytics.ThinkingAnalyticsAPI.UserSet(data)
end
self:adRewradAd() self:adRewradAd()
if adCallback then if adCallback then
adCallback() adCallback()
@ -377,7 +363,7 @@ end
function SDKManager:adRewradAd(noReport) function SDKManager:adRewradAd(noReport)
ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_WATCH_AD) ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_WATCH_AD)
if not noReport then if not noReport then
BIReport:postAdEvent() -- BIReport:postAdEvent()
end end
end end

View File

@ -66,7 +66,6 @@ function SDKPayGoogleManager:queryProducts(callback)
if #subsList > 0 then if #subsList > 0 then
self:queryProductInfo(PAY_TYPE_SUBS, json.encode(subsList), function(code, msg) self:queryProductInfo(PAY_TYPE_SUBS, json.encode(subsList), function(code, msg)
if code == 0 then if code == 0 then
self.queryProductsOver = true
if msg and msg ~= "" then -- 更新products if msg and msg ~= "" then -- 更新products
local jData = json.decode(msg) local jData = json.decode(msg)
if jData and #jData > 0 then if jData and #jData > 0 then
@ -81,7 +80,6 @@ function SDKPayGoogleManager:queryProducts(callback)
end end
end) end)
else else
self.queryProductsOver = true
if callback then if callback then
callback() callback()
end end
@ -264,7 +262,6 @@ end
-- 检查是否可以支付 -- 检查是否可以支付
function SDKPayGoogleManager:checkPay(productId, callback) function SDKPayGoogleManager:checkPay(productId, callback)
if self:_getIsGoogleStoreConnected() then -- google商店是否初始化 if self:_getIsGoogleStoreConnected() then -- google商店是否初始化
self:queryProducts(function()
self:doUncompleteOrder(function(code) -- 先处理未完成的订单 self:doUncompleteOrder(function(code) -- 先处理未完成的订单
if code == 0 then if code == 0 then
callback(0) callback(0)
@ -286,11 +283,9 @@ function SDKPayGoogleManager:checkPay(productId, callback)
callback(0) callback(0)
end end
end, productId) end, productId)
end)
else else
self:connectGoogleStore(function(code) self:connectGoogleStore(function(code)
if code == 0 then if code == 0 then
self:queryProducts(function()
self:doUncompleteOrder(function(consumeSucc) self:doUncompleteOrder(function(consumeSucc)
if code == 0 then if code == 0 then
callback(0) callback(0)
@ -312,7 +307,6 @@ function SDKPayGoogleManager:checkPay(productId, callback)
callback(0) callback(0)
end end
end, productId) end, productId)
end)
else else
local params = { local params = {
content = I18N:getGlobalText(I18N.GlobalConst.SETTING_DESC_22), content = I18N:getGlobalText(I18N.GlobalConst.SETTING_DESC_22),

View File

@ -14,16 +14,11 @@ end
function ServerPushManager:initWhenLogin() function ServerPushManager:initWhenLogin()
self:addServerPushListener(ProtoMsgType.FromMsgEnum.KickOutNtf, UIManager, UIManager.showKickOut) self:addServerPushListener(ProtoMsgType.FromMsgEnum.KickOutNtf, UIManager, UIManager.showKickOut)
self:addServerPushListener(ProtoMsgType.FromMsgEnum.BountyBoughtNtf, ModuleManager.BountyManager, ModuleManager.BountyManager.onBoughtBountyFinish) self:addServerPushListener(ProtoMsgType.FromMsgEnum.BountyBoughtNtf, ModuleManager.BountyManager, ModuleManager.BountyManager.onBoughtBountyFinish)
self:addServerPushListener(ProtoMsgType.FromMsgEnum.ArenaBountyBoughtNtf, ModuleManager.ArenaBountyManager, ModuleManager.ArenaBountyManager.onBoughtBountyFinish)
self:addServerPushListener(ProtoMsgType.FromMsgEnum.NewMailNtf, ModuleManager.MailManager, ModuleManager.MailManager.needUpdateMail) self:addServerPushListener(ProtoMsgType.FromMsgEnum.NewMailNtf, ModuleManager.MailManager, ModuleManager.MailManager.needUpdateMail)
self:addServerPushListener(ProtoMsgType.FromMsgEnum.PigLevelUpNtf, ModuleManager.ActivityManager, ModuleManager.ActivityManager.onBoughtGoldPigFinish) self:addServerPushListener(ProtoMsgType.FromMsgEnum.PigLevelUpNtf, ModuleManager.ActivityManager, ModuleManager.ActivityManager.onBoughtGoldPigFinish)
self:addServerPushListener(ProtoMsgType.FromMsgEnum.TriggerLevelUpGiftNtf, ModuleManager.ShopManager, ModuleManager.ShopManager.onTriggerLevelUpGift) self:addServerPushListener(ProtoMsgType.FromMsgEnum.TriggerLevelUpGiftNtf, ModuleManager.ShopManager, ModuleManager.ShopManager.onTriggerLevelUpGift)
self:addServerPushListener(ProtoMsgType.FromMsgEnum.TriggerGrowUpGift2Ntf, ModuleManager.ShopManager, ModuleManager.ShopManager.onTriggerGrowUpGift) self:addServerPushListener(ProtoMsgType.FromMsgEnum.TriggerGrowUpGiftNtf, ModuleManager.ShopManager, ModuleManager.ShopManager.onTriggerGrowUpGift)
self:addServerPushListener(ProtoMsgType.FromMsgEnum.MallDailyResetNtf, ModuleManager.ShopManager, ModuleManager.ShopManager.onMallDailyReset) 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)
self:addServerPushListener(ProtoMsgType.FromMsgEnum.RuneUpdateNtf, ModuleManager.RunesManager, ModuleManager.RunesManager.rspUpdate)
end end
---- 移除全局推送监听 ---- 移除全局推送监听

View File

@ -246,25 +246,6 @@ function Time:formatNumTimeStr(time)
end end
end end
-- 大于1小时显示X时前 globalkey:TIME_BEFORE_STR_H 小于1小时显示X分钟前 globalkey:TIME_BEFORE_STR_M 小于1分钟显示1分钟前
function Time:formatBeforeTimeStr(time)
local passTime = Time:getServerTime() - time
if passTime <= 0 then
return GConst.EMPTY_STRING
end
local hour = math.floor(passTime // SECONDS_PRE_HOUR)
if hour >= 1 then -- 大于1小时显示X时前
return I18N:getGlobalText(I18N.GlobalConst.TIME_BEFORE_STR_H, hour)
else
if passTime < SECONDS_PRE_MINUTE then
passTime = SECONDS_PRE_MINUTE
end
local min = math.floor(passTime // SECONDS_PRE_MINUTE)
return I18N:getGlobalText(I18N.GlobalConst.TIME_BEFORE_STR_M, min)
end
end
---- 得到time周开始时的时间戳 ---- 得到time周开始时的时间戳
function Time:getWeekBeginTimeStamp(time) function Time:getWeekBeginTimeStamp(time)
time = time or self:getServerTime() time = time or self:getServerTime()
@ -308,13 +289,6 @@ function Time:getWeekByTimeStamp(time)
return weekTab[now.wday] return weekTab[now.wday]
end end
-- 获取今天距目标日期的天数
function Time:getDistanceDays(time)
local nowNum = self:getBeginningOfOneDay(self:getServerTime())
local targetNum = self:getBeginningOfOneDay(time)
return (nowNum - targetNum)/24/60/60
end
-- 转换服务器时间字符串(ISO 8601)的对应的时间戳,例如2022-09-10T18:10:00.000Z -- 转换服务器时间字符串(ISO 8601)的对应的时间戳,例如2022-09-10T18:10:00.000Z
function Time:convertServerTimeStringToTimestamp(str) function Time:convertServerTimeStringToTimestamp(str)
local dateTime = CS.System.DateTime.Parse(str) local dateTime = CS.System.DateTime.Parse(str)

View File

@ -5,7 +5,6 @@ local WhiteResManager = {}
local GAME_RES_WHITE_LIST = { local GAME_RES_WHITE_LIST = {
-- ui -- ui
GConst.ATLAS_PATH.COMMON, GConst.ATLAS_PATH.COMMON,
GConst.ATLAS_PATH.ACT_COMMON,
-- icon -- icon
GConst.ATLAS_PATH.ICON_SKILL, GConst.ATLAS_PATH.ICON_SKILL,
GConst.ATLAS_PATH.ICON_SKILL_BIG, GConst.ATLAS_PATH.ICON_SKILL_BIG,
@ -16,7 +15,6 @@ local GAME_RES_WHITE_LIST = {
GConst.ATLAS_PATH.ICON_BUFF, GConst.ATLAS_PATH.ICON_BUFF,
GConst.ATLAS_PATH.ICON_TASK, GConst.ATLAS_PATH.ICON_TASK,
GConst.ATLAS_PATH.ICON_AVATAR, GConst.ATLAS_PATH.ICON_AVATAR,
GConst.ATLAS_PATH.ICON_EQUIP,
} }
---- 预加载游戏资源 ---- 预加载游戏资源

View File

@ -141,8 +141,8 @@ local act_chapter_store = {
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=47, ["id"]=6,
["id_for_nothing"]="Ug8=", ["id_for_nothing"]="UA==",
["num"]=1, ["num"]=1,
["num_for_nothing"]="Vw==" ["num_for_nothing"]="Vw=="
} }
@ -181,8 +181,8 @@ local act_chapter_store = {
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=47, ["id"]=6,
["id_for_nothing"]="Ug8=", ["id_for_nothing"]="UA==",
["num"]=1, ["num"]=1,
["num_for_nothing"]="Vw==" ["num_for_nothing"]="Vw=="
} }
@ -221,8 +221,8 @@ local act_chapter_store = {
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=47, ["id"]=6,
["id_for_nothing"]="Ug8=", ["id_for_nothing"]="UA==",
["num"]=3, ["num"]=3,
["num_for_nothing"]="VQ==" ["num_for_nothing"]="VQ=="
} }
@ -261,8 +261,8 @@ local act_chapter_store = {
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=47, ["id"]=6,
["id_for_nothing"]="Ug8=", ["id_for_nothing"]="UA==",
["num"]=3, ["num"]=3,
["num_for_nothing"]="VQ==" ["num_for_nothing"]="VQ=="
} }
@ -301,8 +301,8 @@ local act_chapter_store = {
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=47, ["id"]=6,
["id_for_nothing"]="Ug8=", ["id_for_nothing"]="UA==",
["num"]=6, ["num"]=6,
["num_for_nothing"]="UA==" ["num_for_nothing"]="UA=="
} }
@ -341,8 +341,8 @@ local act_chapter_store = {
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=47, ["id"]=6,
["id_for_nothing"]="Ug8=", ["id_for_nothing"]="UA==",
["num"]=6, ["num"]=6,
["num_for_nothing"]="UA==" ["num_for_nothing"]="UA=="
} }
@ -381,8 +381,8 @@ local act_chapter_store = {
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=47, ["id"]=6,
["id_for_nothing"]="Ug8=", ["id_for_nothing"]="UA==",
["num"]=8, ["num"]=8,
["num_for_nothing"]="Xg==" ["num_for_nothing"]="Xg=="
} }
@ -421,8 +421,8 @@ local act_chapter_store = {
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=47, ["id"]=6,
["id_for_nothing"]="Ug8=", ["id_for_nothing"]="UA==",
["num"]=8, ["num"]=8,
["num_for_nothing"]="Xg==" ["num_for_nothing"]="Xg=="
} }
@ -461,8 +461,8 @@ local act_chapter_store = {
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=47, ["id"]=6,
["id_for_nothing"]="Ug8=", ["id_for_nothing"]="UA==",
["num"]=8, ["num"]=8,
["num_for_nothing"]="Xg==" ["num_for_nothing"]="Xg=="
} }
@ -501,8 +501,8 @@ local act_chapter_store = {
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=47, ["id"]=6,
["id_for_nothing"]="Ug8=", ["id_for_nothing"]="UA==",
["num"]=20, ["num"]=20,
["num_for_nothing"]="VAg=" ["num_for_nothing"]="VAg="
} }
@ -541,8 +541,8 @@ local act_chapter_store = {
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=47, ["id"]=6,
["id_for_nothing"]="Ug8=", ["id_for_nothing"]="UA==",
["num"]=20, ["num"]=20,
["num_for_nothing"]="VAg=" ["num_for_nothing"]="VAg="
} }
@ -581,8 +581,8 @@ local act_chapter_store = {
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=47, ["id"]=6,
["id_for_nothing"]="Ug8=", ["id_for_nothing"]="UA==",
["num"]=20, ["num"]=20,
["num_for_nothing"]="VAg=" ["num_for_nothing"]="VAg="
} }
@ -621,8 +621,8 @@ local act_chapter_store = {
{ {
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=47, ["id"]=6,
["id_for_nothing"]="Ug8=", ["id_for_nothing"]="UA==",
["num"]=20, ["num"]=20,
["num_for_nothing"]="VAg=" ["num_for_nothing"]="VAg="
} }
@ -1190,409 +1190,9 @@ local act_chapter_store = {
["original"]=19, ["original"]=19,
["recharge_id"]=16, ["recharge_id"]=16,
["value"]=10 ["value"]=10
},
[3103]={
["chapter"]=31,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=900,
["num_for_nothing"]="Xwhc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=30000,
["num_for_nothing"]="VQhcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=47,
["id_for_nothing"]="Ug8=",
["num"]=28,
["num_for_nothing"]="VAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=15,
["id_for_nothing"]="Vw0=",
["num"]=4,
["num_for_nothing"]="Ug=="
}
},
["original"]=19,
["recharge_id"]=16,
["value"]=11
},
[3203]={
["chapter"]=32,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=900,
["num_for_nothing"]="Xwhc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=30000,
["num_for_nothing"]="VQhcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=47,
["id_for_nothing"]="Ug8=",
["num"]=28,
["num_for_nothing"]="VAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=15,
["id_for_nothing"]="Vw0=",
["num"]=4,
["num_for_nothing"]="Ug=="
}
},
["original"]=19,
["recharge_id"]=16,
["value"]=11
},
[3303]={
["chapter"]=33,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=900,
["num_for_nothing"]="Xwhc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=30000,
["num_for_nothing"]="VQhcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=47,
["id_for_nothing"]="Ug8=",
["num"]=28,
["num_for_nothing"]="VAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=15,
["id_for_nothing"]="Vw0=",
["num"]=4,
["num_for_nothing"]="Ug=="
}
},
["original"]=19,
["recharge_id"]=16,
["value"]=11
},
[3403]={
["chapter"]=34,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=900,
["num_for_nothing"]="Xwhc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=30000,
["num_for_nothing"]="VQhcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=47,
["id_for_nothing"]="Ug8=",
["num"]=28,
["num_for_nothing"]="VAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=15,
["id_for_nothing"]="Vw0=",
["num"]=4,
["num_for_nothing"]="Ug=="
}
},
["original"]=19,
["recharge_id"]=16,
["value"]=11
},
[3503]={
["chapter"]=35,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=900,
["num_for_nothing"]="Xwhc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=30000,
["num_for_nothing"]="VQhcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=47,
["id_for_nothing"]="Ug8=",
["num"]=28,
["num_for_nothing"]="VAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=15,
["id_for_nothing"]="Vw0=",
["num"]=4,
["num_for_nothing"]="Ug=="
}
},
["original"]=19,
["recharge_id"]=16,
["value"]=11
},
[3603]={
["chapter"]=36,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=1200,
["num_for_nothing"]="VwpcAw=="
},
{
["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"]=47,
["id_for_nothing"]="Ug8=",
["num"]=42,
["num_for_nothing"]="Ugo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=15,
["id_for_nothing"]="Vw0=",
["num"]=6,
["num_for_nothing"]="UA=="
}
},
["original"]=19,
["recharge_id"]=17,
["value"]=12
},
[3703]={
["chapter"]=37,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=1200,
["num_for_nothing"]="VwpcAw=="
},
{
["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"]=47,
["id_for_nothing"]="Ug8=",
["num"]=42,
["num_for_nothing"]="Ugo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=15,
["id_for_nothing"]="Vw0=",
["num"]=6,
["num_for_nothing"]="UA=="
}
},
["original"]=19,
["recharge_id"]=17,
["value"]=12
},
[3803]={
["chapter"]=38,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=1200,
["num_for_nothing"]="VwpcAw=="
},
{
["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"]=47,
["id_for_nothing"]="Ug8=",
["num"]=42,
["num_for_nothing"]="Ugo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=15,
["id_for_nothing"]="Vw0=",
["num"]=6,
["num_for_nothing"]="UA=="
}
},
["original"]=19,
["recharge_id"]=17,
["value"]=12
},
[3903]={
["chapter"]=39,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=1200,
["num_for_nothing"]="VwpcAw=="
},
{
["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"]=47,
["id_for_nothing"]="Ug8=",
["num"]=42,
["num_for_nothing"]="Ugo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=15,
["id_for_nothing"]="Vw0=",
["num"]=6,
["num_for_nothing"]="UA=="
}
},
["original"]=19,
["recharge_id"]=17,
["value"]=12
},
[4003]={
["chapter"]=40,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=1200,
["num_for_nothing"]="VwpcAw=="
},
{
["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"]=47,
["id_for_nothing"]="Ug8=",
["num"]=42,
["num_for_nothing"]="Ugo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=15,
["id_for_nothing"]="Vw0=",
["num"]=6,
["num_for_nothing"]="UA=="
}
},
["original"]=19,
["recharge_id"]=17,
["value"]=12
} }
} }
local config = { local config = {
data=act_chapter_store,count=40 data=act_chapter_store,count=30
} }
return config return config

View File

@ -1,696 +0,0 @@
local act_dungeon_armor_fund = {
[1]={
["stage"]=1,
["stage"]=1,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=10,
["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2,
["num_for_nothing"]="VA=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[2]={
["stage"]=4,
["stage"]=4,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=10,
["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2,
["num_for_nothing"]="VA=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
["num"]=2,
["num_for_nothing"]="VA=="
}
}
},
[3]={
["stage"]=6,
["stage"]=6,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=10,
["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2,
["num_for_nothing"]="VA=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
["num"]=3,
["num_for_nothing"]="VQ=="
}
}
},
[4]={
["stage"]=10,
["stage"]=10,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=10,
["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2,
["num_for_nothing"]="VA=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
["num"]=4,
["num_for_nothing"]="Ug=="
}
}
},
[5]={
["stage"]=12,
["stage"]=12,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=10,
["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2,
["num_for_nothing"]="VA=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
["num"]=5,
["num_for_nothing"]="Uw=="
}
}
},
[6]={
["stage"]=16,
["stage"]=16,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=10,
["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2,
["num_for_nothing"]="VA=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
["num"]=6,
["num_for_nothing"]="UA=="
}
}
},
[7]={
["stage"]=18,
["stage"]=18,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=10,
["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2,
["num_for_nothing"]="VA=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
["num"]=7,
["num_for_nothing"]="UQ=="
}
}
},
[8]={
["stage"]=22,
["stage"]=22,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=10,
["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2,
["num_for_nothing"]="VA=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
["num"]=8,
["num_for_nothing"]="Xg=="
}
}
},
[9]={
["stage"]=24,
["stage"]=24,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=10,
["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2,
["num_for_nothing"]="VA=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
["num"]=9,
["num_for_nothing"]="Xw=="
}
}
},
[10]={
["stage"]=28,
["stage"]=28,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=10,
["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2,
["num_for_nothing"]="VA=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
["num"]=10,
["num_for_nothing"]="Vwg="
}
}
},
[11]={
["stage"]=30,
["stage"]=30,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=10,
["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2,
["num_for_nothing"]="VA=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
["num"]=11,
["num_for_nothing"]="Vwk="
}
}
},
[12]={
["stage"]=31,
["stage"]=31,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=10,
["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2,
["num_for_nothing"]="VA=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
["num"]=12,
["num_for_nothing"]="Vwo="
}
}
},
[13]={
["stage"]=34,
["stage"]=34,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=10,
["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2,
["num_for_nothing"]="VA=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
["num"]=13,
["num_for_nothing"]="Vws="
}
}
},
[14]={
["stage"]=36,
["stage"]=36,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=10,
["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2,
["num_for_nothing"]="VA=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
["num"]=14,
["num_for_nothing"]="Vww="
}
}
},
[15]={
["stage"]=38,
["stage"]=38,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=10,
["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2,
["num_for_nothing"]="VA=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
["num"]=15,
["num_for_nothing"]="Vw0="
}
}
},
[16]={
["stage"]=40,
["stage"]=40,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=10,
["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2,
["num_for_nothing"]="VA=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
["num"]=16,
["num_for_nothing"]="Vw4="
}
}
},
[17]={
["stage"]=42,
["stage"]=42,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=10,
["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2,
["num_for_nothing"]="VA=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
["num"]=17,
["num_for_nothing"]="Vw8="
}
}
},
[18]={
["stage"]=44,
["stage"]=44,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=10,
["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2,
["num_for_nothing"]="VA=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
["num"]=18,
["num_for_nothing"]="VwA="
}
}
},
[19]={
["stage"]=46,
["stage"]=46,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=10,
["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2,
["num_for_nothing"]="VA=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
["num"]=19,
["num_for_nothing"]="VwE="
}
}
},
[20]={
["stage"]=48,
["stage"]=48,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=10,
["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2,
["num_for_nothing"]="VA=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
["num"]=20,
["num_for_nothing"]="VAg="
}
}
},
[21]={
["stage"]=50,
["stage"]=50,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=10,
["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2,
["num_for_nothing"]="VA=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
["num"]=21,
["num_for_nothing"]="VAk="
}
}
},
[22]={
["stage"]=52,
["stage"]=52,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=10,
["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2,
["num_for_nothing"]="VA=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
["num"]=22,
["num_for_nothing"]="VAo="
}
}
},
[23]={
["stage"]=54,
["stage"]=54,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=10,
["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2,
["num_for_nothing"]="VA=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
["num"]=23,
["num_for_nothing"]="VAs="
}
}
}
}
local config = {
data=act_dungeon_armor_fund,count=23
}
return config

View File

@ -1,150 +0,0 @@
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

View File

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

View File

@ -1,306 +0,0 @@
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

View File

@ -1,897 +0,0 @@
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

View File

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

File diff suppressed because it is too large Load Diff

View File

@ -5,11 +5,8 @@ local act_gold_pig = {
["battle_diamond"]=100, ["battle_diamond"]=100,
["min_diamond"]=300, ["min_diamond"]=300,
["max_diamond"]=600, ["max_diamond"]=600,
["battle_gold"]=1000,
["min_gold"]=3000,
["max_gold"]=6000,
["recharge_id"]=5, ["recharge_id"]=5,
["value"]=600 ["value"]=400
}, },
[201]={ [201]={
["before_id"]=101, ["before_id"]=101,
@ -17,11 +14,8 @@ local act_gold_pig = {
["battle_diamond"]=250, ["battle_diamond"]=250,
["min_diamond"]=1000, ["min_diamond"]=1000,
["max_diamond"]=2000, ["max_diamond"]=2000,
["battle_gold"]=2500,
["min_gold"]=10000,
["max_gold"]=20000,
["recharge_id"]=10, ["recharge_id"]=10,
["value"]=999 ["value"]=700
}, },
[301]={ [301]={
["before_id"]=201, ["before_id"]=201,
@ -29,11 +23,8 @@ local act_gold_pig = {
["battle_diamond"]=300, ["battle_diamond"]=300,
["min_diamond"]=1500, ["min_diamond"]=1500,
["max_diamond"]=3000, ["max_diamond"]=3000,
["battle_gold"]=3000,
["min_gold"]=15000,
["max_gold"]=30000,
["recharge_id"]=12, ["recharge_id"]=12,
["value"]=999 ["value"]=700
}, },
[401]={ [401]={
["before_id"]=301, ["before_id"]=301,
@ -41,11 +32,8 @@ local act_gold_pig = {
["battle_diamond"]=400, ["battle_diamond"]=400,
["min_diamond"]=2000, ["min_diamond"]=2000,
["max_diamond"]=4000, ["max_diamond"]=4000,
["battle_gold"]=4000,
["min_gold"]=20000,
["max_gold"]=40000,
["recharge_id"]=13, ["recharge_id"]=13,
["value"]=999 ["value"]=700
}, },
[501]={ [501]={
["before_id"]=401, ["before_id"]=401,
@ -53,11 +41,8 @@ local act_gold_pig = {
["battle_diamond"]=500, ["battle_diamond"]=500,
["min_diamond"]=2500, ["min_diamond"]=2500,
["max_diamond"]=5000, ["max_diamond"]=5000,
["battle_gold"]=5000,
["min_gold"]=25000,
["max_gold"]=50000,
["recharge_id"]=14, ["recharge_id"]=14,
["value"]=999 ["value"]=700
}, },
[601]={ [601]={
["before_id"]=501, ["before_id"]=501,
@ -65,11 +50,8 @@ local act_gold_pig = {
["battle_diamond"]=600, ["battle_diamond"]=600,
["min_diamond"]=3000, ["min_diamond"]=3000,
["max_diamond"]=6000, ["max_diamond"]=6000,
["battle_gold"]=6000,
["min_gold"]=30000,
["max_gold"]=60000,
["recharge_id"]=15, ["recharge_id"]=15,
["value"]=999 ["value"]=700
}, },
[701]={ [701]={
["before_id"]=601, ["before_id"]=601,
@ -77,11 +59,8 @@ local act_gold_pig = {
["battle_diamond"]=1000, ["battle_diamond"]=1000,
["min_diamond"]=5000, ["min_diamond"]=5000,
["max_diamond"]=10000, ["max_diamond"]=10000,
["battle_gold"]=10000,
["min_gold"]=50000,
["max_gold"]=100000,
["recharge_id"]=16, ["recharge_id"]=16,
["value"]=999 ["value"]=700
} }
} }
local config = { local config = {

View File

@ -1,210 +0,0 @@
local act_growup_gift_new = {
[10105]={
["before_id"]=10105,
["next_id"]=10205,
["recharge_id"]=7,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=100,
["num_for_nothing"]="Vwhc"
},
{
["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"]=47,
["id_for_nothing"]="Ug8=",
["num"]=8,
["num_for_nothing"]="Xg=="
}
},
["limit_time"]=3,
["cd"]=12,
["value"]=800
},
[10205]={
["before_id"]=10105,
["next_id"]=10305,
["recharge_id"]=10,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=150,
["num_for_nothing"]="Vw1c"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=10000,
["num_for_nothing"]="VwhcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=47,
["id_for_nothing"]="Ug8=",
["num"]=12,
["num_for_nothing"]="Vwo="
}
},
["limit_time"]=3,
["cd"]=12,
["value"]=800
},
[10305]={
["before_id"]=10205,
["next_id"]=10405,
["recharge_id"]=13,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=300,
["num_for_nothing"]="VQhc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=18000,
["num_for_nothing"]="VwBcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=47,
["id_for_nothing"]="Ug8=",
["num"]=24,
["num_for_nothing"]="VAw="
}
},
["limit_time"]=3,
["cd"]=12,
["value"]=800
},
[10405]={
["before_id"]=10305,
["next_id"]=10505,
["recharge_id"]=15,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=450,
["num_for_nothing"]="Ug1c"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=24000,
["num_for_nothing"]="VAxcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=47,
["id_for_nothing"]="Ug8=",
["num"]=36,
["num_for_nothing"]="VQ4="
}
},
["limit_time"]=3,
["cd"]=12,
["value"]=800
},
[10505]={
["before_id"]=10405,
["next_id"]=10605,
["recharge_id"]=17,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=1000,
["num_for_nothing"]="VwhcAw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=34000,
["num_for_nothing"]="VQxcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=47,
["id_for_nothing"]="Ug8=",
["num"]=96,
["num_for_nothing"]="Xw4="
}
},
["limit_time"]=3,
["cd"]=12,
["value"]=800
},
[10605]={
["before_id"]=10505,
["next_id"]=10605,
["recharge_id"]=18,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=1500,
["num_for_nothing"]="Vw1cAw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=42000,
["num_for_nothing"]="UgpcA2U="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=47,
["id_for_nothing"]="Ug8=",
["num"]=138,
["num_for_nothing"]="VwtU"
}
},
["limit_time"]=3,
["cd"]=12,
["value"]=800
}
}
local config = {
data=act_growup_gift_new,count=6
}
return config

View File

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

View File

@ -170,7 +170,7 @@ local act_sevenday_quest = {
}, },
[14]={ [14]={
["day"]=2, ["day"]=2,
["number"]=4, ["number"]=5,
["type"]=25, ["type"]=25,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
@ -196,7 +196,7 @@ local act_sevenday_quest = {
}, },
[16]={ [16]={
["day"]=2, ["day"]=2,
["number"]=5, ["number"]=7,
["type"]=23, ["type"]=23,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
@ -274,7 +274,7 @@ local act_sevenday_quest = {
}, },
[22]={ [22]={
["day"]=3, ["day"]=3,
["number"]=5, ["number"]=6,
["type"]=24, ["type"]=24,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
@ -300,7 +300,7 @@ local act_sevenday_quest = {
}, },
[24]={ [24]={
["day"]=3, ["day"]=3,
["number"]=8, ["number"]=9,
["type"]=27, ["type"]=27,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
@ -313,7 +313,7 @@ local act_sevenday_quest = {
}, },
[25]={ [25]={
["day"]=3, ["day"]=3,
["number"]=7, ["number"]=10,
["type"]=23, ["type"]=23,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
@ -404,7 +404,7 @@ local act_sevenday_quest = {
}, },
[32]={ [32]={
["day"]=4, ["day"]=4,
["number"]=6, ["number"]=8,
["type"]=24, ["type"]=24,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
@ -430,7 +430,7 @@ local act_sevenday_quest = {
}, },
[34]={ [34]={
["day"]=4, ["day"]=4,
["number"]=5, ["number"]=6,
["type"]=25, ["type"]=25,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
@ -443,7 +443,7 @@ local act_sevenday_quest = {
}, },
[35]={ [35]={
["day"]=4, ["day"]=4,
["number"]=9, ["number"]=11,
["type"]=27, ["type"]=27,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
@ -456,7 +456,7 @@ local act_sevenday_quest = {
}, },
[36]={ [36]={
["day"]=4, ["day"]=4,
["number"]=9, ["number"]=13,
["type"]=23, ["type"]=23,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
@ -534,7 +534,7 @@ local act_sevenday_quest = {
}, },
[42]={ [42]={
["day"]=5, ["day"]=5,
["number"]=7, ["number"]=8,
["type"]=24, ["type"]=24,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
@ -560,7 +560,7 @@ local act_sevenday_quest = {
}, },
[44]={ [44]={
["day"]=5, ["day"]=5,
["number"]=6, ["number"]=7,
["type"]=25, ["type"]=25,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
@ -573,7 +573,7 @@ local act_sevenday_quest = {
}, },
[45]={ [45]={
["day"]=5, ["day"]=5,
["number"]=10, ["number"]=13,
["type"]=27, ["type"]=27,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
@ -586,7 +586,7 @@ local act_sevenday_quest = {
}, },
[46]={ [46]={
["day"]=5, ["day"]=5,
["number"]=12, ["number"]=16,
["type"]=23, ["type"]=23,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
@ -677,7 +677,7 @@ local act_sevenday_quest = {
}, },
[53]={ [53]={
["day"]=6, ["day"]=6,
["number"]=9, ["number"]=10,
["type"]=24, ["type"]=24,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
@ -703,7 +703,7 @@ local act_sevenday_quest = {
}, },
[55]={ [55]={
["day"]=6, ["day"]=6,
["number"]=11, ["number"]=15,
["type"]=27, ["type"]=27,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
@ -716,7 +716,7 @@ local act_sevenday_quest = {
}, },
[56]={ [56]={
["day"]=6, ["day"]=6,
["number"]=14, ["number"]=18,
["type"]=23, ["type"]=23,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
@ -820,7 +820,7 @@ local act_sevenday_quest = {
}, },
[64]={ [64]={
["day"]=7, ["day"]=7,
["number"]=10, ["number"]=12,
["type"]=24, ["type"]=24,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
@ -846,7 +846,7 @@ local act_sevenday_quest = {
}, },
[66]={ [66]={
["day"]=7, ["day"]=7,
["number"]=7, ["number"]=8,
["type"]=25, ["type"]=25,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
@ -859,7 +859,7 @@ local act_sevenday_quest = {
}, },
[67]={ [67]={
["day"]=7, ["day"]=7,
["number"]=12, ["number"]=16,
["type"]=27, ["type"]=27,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,
@ -872,7 +872,7 @@ local act_sevenday_quest = {
}, },
[68]={ [68]={
["day"]=7, ["day"]=7,
["number"]=16, ["number"]=21,
["type"]=23, ["type"]=23,
["reward"]={ ["reward"]={
["type"]=1, ["type"]=1,

View File

@ -1,371 +0,0 @@
local activity = {
[106]={
["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"
},
[306]={
["act_type"]=3,
["start_time"]="2023-09-25 00:00:00",
["end_time"]="2023-10-3 00:00:00"
},
[406]={
["act_type"]=4,
["start_time"]="2023-09-28 00:00:00",
["end_time"]="2023-10-08 00:00:00"
},
[506]={
["act_type"]=2,
["start_time"]="2023-10-2 00:00:00",
["end_time"]="2023-10-10 00:00:00"
},
[606]={
["act_type"]=3,
["start_time"]="2023-10-9 00:00:00",
["end_time"]="2023-10-17 00:00:00"
},
[706]={
["act_type"]=5,
["start_time"]="2023-10-16 00:00:00",
["end_time"]="2023-10-25 00:00:00"
},
[806]={
["act_type"]=2,
["start_time"]="2023-10-24 00:00:00",
["end_time"]="2023-11-01 00:00:00"
},
[906]={
["act_type"]=6,
["start_time"]="2023-10-31 00:00:00",
["end_time"]="2023-11-09 00:00:00"
},
[1006]={
["act_type"]=3,
["start_time"]="2023-11-8 00:00:00",
["end_time"]="2023-11-16 00:00:00"
},
[1106]={
["act_type"]=5,
["start_time"]="2023-11-15 00:00:00",
["end_time"]="2023-11-24 00:00:00"
},
[1206]={
["act_type"]=2,
["start_time"]="2023-11-23 00:00:00",
["end_time"]="2023-12-01 00:00:00"
},
[1306]={
["act_type"]=6,
["start_time"]="2023-11-30 00:00:00",
["end_time"]="2023-12-09 00:00:00"
},
[1406]={
["act_type"]=3,
["start_time"]="2023-12-8 00:00:00",
["end_time"]="2023-12-16 00:00:00"
},
[1506]={
["act_type"]=5,
["start_time"]="2023-12-15 00:00:00",
["end_time"]="2023-12-24 00:00:00"
},
[1606]={
["act_type"]=2,
["start_time"]="2023-12-23 00:00:00",
["end_time"]="2023-12-31 00:00:00"
},
[1706]={
["act_type"]=6,
["start_time"]="2023-12-30 00:00:00",
["end_time"]="2024-01-08 00:00:00"
},
[1806]={
["act_type"]=3,
["start_time"]="2024-01-07 00:00:00",
["end_time"]="2024-01-15 00:00:00"
},
[1906]={
["act_type"]=5,
["start_time"]="2024-01-14 00:00:00",
["end_time"]="2024-01-23 00:00:00"
},
[2006]={
["act_type"]=2,
["start_time"]="2024-01-22 00:00:00",
["end_time"]="2024-01-30 00:00:00"
},
[2106]={
["act_type"]=6,
["start_time"]="2024-01-29 00:00:00",
["end_time"]="2024-02-07 00:00:00"
},
[2206]={
["act_type"]=3,
["start_time"]="2024-02-06 00:00:00",
["end_time"]="2024-02-14 00:00:00"
},
[2306]={
["act_type"]=5,
["start_time"]="2024-02-13 00:00:00",
["end_time"]="2024-02-22 00:00:00"
},
[2406]={
["act_type"]=2,
["start_time"]="2024-02-21 00:00:00",
["end_time"]="2024-02-29 00:00:00"
},
[2506]={
["act_type"]=6,
["start_time"]="2024-02-28 00:00:00",
["end_time"]="2024-03-08 00:00:00"
},
[2606]={
["act_type"]=3,
["start_time"]="2024-03-07 00:00:00",
["end_time"]="2024-03-15 00:00:00"
},
[2706]={
["act_type"]=5,
["start_time"]="2024-03-14 00:00:00",
["end_time"]="2024-03-23 00:00:00"
},
[2806]={
["act_type"]=2,
["start_time"]="2024-03-22 00:00:00",
["end_time"]="2024-03-30 00:00:00"
},
[2906]={
["act_type"]=6,
["start_time"]="2024-03-29 00:00:00",
["end_time"]="2024-04-07 00:00:00"
},
[3006]={
["act_type"]=3,
["start_time"]="2024-04-06 00:00:00",
["end_time"]="2024-04-14 00:00:00"
},
[3106]={
["act_type"]=5,
["start_time"]="2024-04-13 00:00:00",
["end_time"]="2024-04-22 00:00:00"
},
[3206]={
["act_type"]=2,
["start_time"]="2024-04-21 00:00:00",
["end_time"]="2024-04-29 00:00:00"
},
[3306]={
["act_type"]=6,
["start_time"]="2024-04-28 00:00:00",
["end_time"]="2024-05-07 00:00:00"
},
[3406]={
["act_type"]=3,
["start_time"]="2024-05-06 00:00:00",
["end_time"]="2024-05-14 00:00:00"
},
[3506]={
["act_type"]=5,
["start_time"]="2024-05-13 00:00:00",
["end_time"]="2024-05-22 00:00:00"
},
[3606]={
["act_type"]=2,
["start_time"]="2024-05-21 00:00:00",
["end_time"]="2024-05-29 00:00:00"
},
[3706]={
["act_type"]=6,
["start_time"]="2024-05-28 00:00:00",
["end_time"]="2024-06-06 00:00:00"
},
[3806]={
["act_type"]=3,
["start_time"]="2024-06-05 00:00:00",
["end_time"]="2024-06-13 00:00:00"
},
[3906]={
["act_type"]=5,
["start_time"]="2024-06-12 00:00:00",
["end_time"]="2024-06-21 00:00:00"
},
[4006]={
["act_type"]=2,
["start_time"]="2024-06-20 00:00:00",
["end_time"]="2024-06-28 00:00:00"
},
[4106]={
["act_type"]=6,
["start_time"]="2024-06-27 00:00:00",
["end_time"]="2024-07-06 00:00:00"
},
[4206]={
["act_type"]=3,
["start_time"]="2024-07-05 00:00:00",
["end_time"]="2024-07-13 00:00:00"
},
[4306]={
["act_type"]=5,
["start_time"]="2024-07-12 00:00:00",
["end_time"]="2024-07-21 00:00:00"
},
[4406]={
["act_type"]=2,
["start_time"]="2024-07-20 00:00:00",
["end_time"]="2024-07-28 00:00:00"
},
[4506]={
["act_type"]=6,
["start_time"]="2024-07-27 00:00:00",
["end_time"]="2024-08-05 00:00:00"
},
[4606]={
["act_type"]=3,
["start_time"]="2024-08-04 00:00:00",
["end_time"]="2024-08-12 00:00:00"
},
[4706]={
["act_type"]=5,
["start_time"]="2024-08-11 00:00:00",
["end_time"]="2024-08-20 00:00:00"
},
[4806]={
["act_type"]=2,
["start_time"]="2024-08-19 00:00:00",
["end_time"]="2024-08-27 00:00:00"
},
[4906]={
["act_type"]=6,
["start_time"]="2024-08-26 00:00:00",
["end_time"]="2024-09-04 00:00:00"
},
[5006]={
["act_type"]=3,
["start_time"]="2024-09-03 00:00:00",
["end_time"]="2024-09-11 00:00:00"
},
[5106]={
["act_type"]=5,
["start_time"]="2024-09-10 00:00:00",
["end_time"]="2024-09-19 00:00:00"
},
[5206]={
["act_type"]=2,
["start_time"]="2024-09-18 00:00:00",
["end_time"]="2024-09-26 00:00:00"
},
[5306]={
["act_type"]=6,
["start_time"]="2024-09-25 00:00:00",
["end_time"]="2024-10-04 00:00:00"
},
[5406]={
["act_type"]=3,
["start_time"]="2024-10-03 00:00:00",
["end_time"]="2024-10-11 00:00:00"
},
[5506]={
["act_type"]=5,
["start_time"]="2024-10-10 00:00:00",
["end_time"]="2024-10-19 00:00:00"
},
[5606]={
["act_type"]=2,
["start_time"]="2024-10-18 00:00:00",
["end_time"]="2024-10-26 00:00:00"
},
[5706]={
["act_type"]=6,
["start_time"]="2024-10-25 00:00:00",
["end_time"]="2024-11-03 00:00:00"
},
[5806]={
["act_type"]=3,
["start_time"]="2024-11-02 00:00:00",
["end_time"]="2024-11-10 00:00:00"
},
[5906]={
["act_type"]=5,
["start_time"]="2024-11-09 00:00:00",
["end_time"]="2024-11-18 00:00:00"
},
[6006]={
["act_type"]=2,
["start_time"]="2024-11-17 00:00:00",
["end_time"]="2024-11-25 00:00:00"
},
[6106]={
["act_type"]=6,
["start_time"]="2024-11-24 00:00:00",
["end_time"]="2024-12-03 00:00:00"
},
[6206]={
["act_type"]=3,
["start_time"]="2024-12-02 00:00:00",
["end_time"]="2024-12-10 00:00:00"
},
[6306]={
["act_type"]=5,
["start_time"]="2024-12-09 00:00:00",
["end_time"]="2024-12-18 00:00:00"
},
[6406]={
["act_type"]=2,
["start_time"]="2024-12-17 00:00:00",
["end_time"]="2024-12-25 00:00:00"
},
[6506]={
["act_type"]=6,
["start_time"]="2024-12-24 00:00:00",
["end_time"]="2025-01-02 00:00:00"
},
[6606]={
["act_type"]=3,
["start_time"]="2025-01-01 00:00:00",
["end_time"]="2025-01-09 00:00:00"
},
[6706]={
["act_type"]=5,
["start_time"]="2025-01-08 00:00:00",
["end_time"]="2025-01-17 00:00:00"
},
[6806]={
["act_type"]=2,
["start_time"]="2025-01-16 00:00:00",
["end_time"]="2025-01-24 00:00:00"
},
[6906]={
["act_type"]=6,
["start_time"]="2025-01-23 00:00:00",
["end_time"]="2025-02-01 00:00:00"
},
[7006]={
["act_type"]=3,
["start_time"]="2025-01-31 00:00:00",
["end_time"]="2025-02-08 00:00:00"
},
[7106]={
["act_type"]=5,
["start_time"]="2025-02-07 00:00:00",
["end_time"]="2025-02-16 00:00:00"
},
[7206]={
["act_type"]=2,
["start_time"]="2025-02-15 00:00:00",
["end_time"]="2025-02-23 00:00:00"
},
[7306]={
["act_type"]=6,
["start_time"]="2025-02-22 00:00:00",
["end_time"]="2025-03-03 00:00:00"
}
}
local config = {
data=activity,count=73
}
return config

View File

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

File diff suppressed because it is too large Load Diff

View File

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

View File

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

View File

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

File diff suppressed because it is too large Load Diff

View File

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

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -1,138 +0,0 @@
local activity_bounty_task = {
[1]={
["type"]=22,
["number"]={
1,
2,
3,
4,
5,
6,
7
},
["reward"]={
100,
100,
100,
100,
100,
100,
100
},
["icon"]="11"
},
[2]={
["type"]=1,
["number"]={
10,
20,
30,
40,
50,
60,
70
},
["reward"]={
150,
150,
150,
150,
200,
200,
200
},
["icon"]="10"
},
[3]={
["type"]=11,
["number"]={
50,
100,
150,
200,
250,
300,
350
},
["reward"]={
100,
100,
100,
100,
100,
100,
100
},
["icon"]="7"
},
[4]={
["type"]=12,
["number"]={
10,
20,
30,
40,
50,
60,
70
},
["reward"]={
100,
100,
100,
100,
150,
150,
150
},
["icon"]="9"
},
[5]={
["type"]=30,
["number"]={
5,
10,
15,
20,
25,
30,
35
},
["reward"]={
100,
100,
100,
100,
150,
150,
150
},
["icon"]="12"
},
[6]={
["type"]=19,
["number"]={
50,
100,
150,
200,
250,
300,
350
},
["reward"]={
100,
100,
100,
100,
150,
150,
150
},
["icon"]="9"
}
}
local config = {
data=activity_bounty_task,count=6
}
return config

View File

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

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -1,149 +0,0 @@
local activity_full_moon_quest = {
[1]={
["type"]=40,
["number"]=1,
["open_stage"]=0,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=56,
["id_for_nothing"]="Uw4=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
},
[2]={
["type"]=1,
["number"]=10,
["open_stage"]=0,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=56,
["id_for_nothing"]="Uw4=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
},
[3]={
["type"]=5,
["number"]=100,
["open_stage"]=0,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=56,
["id_for_nothing"]="Uw4=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
},
[4]={
["type"]=41,
["number"]=50,
["open_stage"]=12,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=56,
["id_for_nothing"]="Uw4=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
},
[5]={
["type"]=38,
["number"]=10,
["open_stage"]=8,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=56,
["id_for_nothing"]="Uw4=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
},
[6]={
["type"]=39,
["number"]=10,
["open_stage"]=10,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=56,
["id_for_nothing"]="Uw4=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
},
[7]={
["type"]=30,
["number"]=3,
["open_stage"]=5,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=56,
["id_for_nothing"]="Uw4=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
},
[8]={
["type"]=19,
["number"]=30,
["open_stage"]=0,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=56,
["id_for_nothing"]="Uw4=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
},
[9]={
["type"]=12,
["number"]=6,
["open_stage"]=0,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=56,
["id_for_nothing"]="Uw4=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
},
[10]={
["type"]=11,
["number"]=30,
["open_stage"]=0,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=56,
["id_for_nothing"]="Uw4=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
},
[11]={
["type"]=42,
["number"]=10,
["open_stage"]=12,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=56,
["id_for_nothing"]="Uw4=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
}
local config = {
data=activity_full_moon_quest,count=11
}
return config

View File

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

View File

@ -1,127 +0,0 @@
local activity_full_moon_reward = {
[101]={
["quest"]=3,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=30,
["num_for_nothing"]="VQg="
}
},
[102]={
["quest"]=6,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=3,
["id_for_nothing"]="VQ==",
["num"]=20,
["num_for_nothing"]="VAg="
}
},
[103]={
["quest"]=9,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=10,
["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
},
[104]={
["quest"]=12,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=5000,
["num_for_nothing"]="UwhcAw=="
}
},
[105]={
["quest"]=15,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=30,
["num_for_nothing"]="VQg="
}
},
[106]={
["quest"]=18,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=57,
["id_for_nothing"]="Uw8=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
},
[107]={
["quest"]=21,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=3,
["id_for_nothing"]="VQ==",
["num"]=30,
["num_for_nothing"]="VQg="
}
},
[108]={
["quest"]=24,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=50,
["num_for_nothing"]="Uwg="
}
},
[109]={
["quest"]=27,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=10000,
["num_for_nothing"]="VwhcA2U="
}
},
[110]={
["quest"]=30,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=6,
["id_for_nothing"]="UA==",
["num"]=1,
["num_for_nothing"]="Vw=="
}
},
[111]={
["quest"]=33,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2300201,
["id_for_nothing"]="VAtcA2dRfg==",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
}
local config = {
data=activity_full_moon_reward,count=11
}
return config

View File

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

View File

@ -1,627 +0,0 @@
local activity_herofund = {
[1]={
["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"]=44003,
["id_for_nothing"]="UgxcA2Y=",
["num"]=3,
["num_for_nothing"]="VQ=="
},
["reward_pro_max"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=44003,
["id_for_nothing"]="UgxcA2Y=",
["num"]=3,
["num_for_nothing"]="VQ=="
}
},
[2]={
["exp"]=30,
["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=="
}
},
[3]={
["exp"]=60,
["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="
}
},
[4]={
["exp"]=90,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=13,
["id_for_nothing"]="Vws=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=13,
["id_for_nothing"]="Vws=",
["num"]=2,
["num_for_nothing"]="VA=="
},
["reward_pro_max"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=13,
["id_for_nothing"]="Vws=",
["num"]=2,
["num_for_nothing"]="VA=="
}
},
[5]={
["exp"]=120,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=1500,
["num_for_nothing"]="Vw1cAw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2000,
["num_for_nothing"]="VAhcAw=="
},
["reward_pro_max"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=4000,
["num_for_nothing"]="UghcAw=="
}
},
[6]={
["exp"]=150,
["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"]=44003,
["id_for_nothing"]="UgxcA2Y=",
["num"]=2,
["num_for_nothing"]="VA=="
},
["reward_pro_max"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=44003,
["id_for_nothing"]="UgxcA2Y=",
["num"]=3,
["num_for_nothing"]="VQ=="
}
},
[7]={
["exp"]=180,
["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="
}
},
[8]={
["exp"]=210,
["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=="
}
},
[9]={
["exp"]=240,
["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=="
}
},
[10]={
["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"]=44003,
["id_for_nothing"]="UgxcA2Y=",
["num"]=3,
["num_for_nothing"]="VQ=="
}
},
[11]={
["exp"]=300,
["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="
}
},
[12]={
["exp"]=330,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=30,
["num_for_nothing"]="VQg="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=50,
["num_for_nothing"]="Uwg="
},
["reward_pro_max"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=100,
["num_for_nothing"]="Vwhc"
}
},
[13]={
["exp"]=360,
["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=="
}
},
[14]={
["exp"]=390,
["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="
}
},
[15]={
["exp"]=420,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=44003,
["id_for_nothing"]="UgxcA2Y=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=44003,
["id_for_nothing"]="UgxcA2Y=",
["num"]=2,
["num_for_nothing"]="VA=="
},
["reward_pro_max"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=44003,
["id_for_nothing"]="UgxcA2Y=",
["num"]=3,
["num_for_nothing"]="VQ=="
}
},
[16]={
["exp"]=450,
["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=="
}
},
[17]={
["exp"]=480,
["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="
}
},
[18]={
["exp"]=510,
["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"
}
},
[19]={
["exp"]=540,
["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"]=44003,
["id_for_nothing"]="UgxcA2Y=",
["num"]=3,
["num_for_nothing"]="VQ=="
}
},
[20]={
["exp"]=570,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=1500,
["num_for_nothing"]="Vw1cAw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=2000,
["num_for_nothing"]="VAhcAw=="
},
["reward_pro_max"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=4000,
["num_for_nothing"]="UghcAw=="
}
},
[21]={
["exp"]=600,
["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="
}
},
[22]={
["exp"]=630,
["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=="
}
},
[23]={
["exp"]=660,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=44003,
["id_for_nothing"]="UgxcA2Y=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=44003,
["id_for_nothing"]="UgxcA2Y=",
["num"]=2,
["num_for_nothing"]="VA=="
},
["reward_pro_max"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=44003,
["id_for_nothing"]="UgxcA2Y=",
["num"]=3,
["num_for_nothing"]="VQ=="
}
}
}
local config = {
data=activity_herofund,count=23
}
return config

View File

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

View File

@ -1,958 +0,0 @@
local activity_pvp = {
[101]={
["hero_id"]=12001,
["first"]=400,
["hero_weights"]={
{
201,
200
},
{
202,
100
},
{
203,
100
},
{
204,
100
},
{
205,
100
},
{
206,
100
},
{
207,
100
}
}
},
[102]={
["hero_id"]=13001,
["first"]=200,
["hero_weights"]={
{
201,
200
},
{
202,
200
},
{
203,
200
},
{
204,
50
},
{
205,
50
},
{
206,
50
},
{
207,
50
}
}
},
[103]={
["hero_id"]=13002,
["first"]=200,
["hero_weights"]={
{
201,
200
},
{
202,
200
},
{
203,
200
},
{
204,
50
},
{
205,
50
},
{
206,
50
},
{
207,
50
}
}
},
[104]={
["hero_id"]=14001,
["first"]=100,
["hero_weights"]={
{
201,
400
},
{
202,
100
},
{
203,
100
},
{
204,
50
},
{
205,
50
},
{
206,
50
},
{
207,
50
}
}
},
[105]={
["hero_id"]=14002,
["first"]=100,
["hero_weights"]={
{
201,
400
},
{
202,
100
},
{
203,
100
},
{
204,
50
},
{
205,
50
},
{
206,
50
},
{
207,
50
}
}
},
[106]={
["hero_id"]=14003,
["first"]=100,
["hero_weights"]={
{
201,
400
},
{
202,
100
},
{
203,
100
},
{
204,
50
},
{
205,
50
},
{
206,
50
},
{
207,
50
}
}
},
[107]={
["hero_id"]=14004,
["first"]=100,
["hero_weights"]={
{
201,
400
},
{
202,
100
},
{
203,
100
},
{
204,
50
},
{
205,
50
},
{
206,
50
},
{
207,
50
}
}
},
[201]={
["hero_id"]=22001,
["hero_weights"]={
{
301,
200
},
{
302,
100
},
{
303,
100
},
{
304,
100
},
{
305,
100
},
{
306,
100
},
{
307,
100
}
}
},
[202]={
["hero_id"]=23001,
["hero_weights"]={
{
301,
200
},
{
302,
200
},
{
303,
200
},
{
304,
50
},
{
305,
50
},
{
306,
50
},
{
307,
50
}
}
},
[203]={
["hero_id"]=23002,
["hero_weights"]={
{
301,
200
},
{
302,
200
},
{
303,
200
},
{
304,
50
},
{
305,
50
},
{
306,
50
},
{
307,
50
}
}
},
[204]={
["hero_id"]=24001,
["hero_weights"]={
{
301,
400
},
{
302,
100
},
{
303,
100
},
{
304,
50
},
{
305,
50
},
{
306,
50
},
{
307,
50
}
}
},
[205]={
["hero_id"]=24002,
["hero_weights"]={
{
301,
400
},
{
302,
100
},
{
303,
100
},
{
304,
50
},
{
305,
50
},
{
306,
50
},
{
307,
50
}
}
},
[206]={
["hero_id"]=24003,
["hero_weights"]={
{
301,
400
},
{
302,
100
},
{
303,
100
},
{
304,
50
},
{
305,
50
},
{
306,
50
},
{
307,
50
}
}
},
[207]={
["hero_id"]=24004,
["hero_weights"]={
{
301,
400
},
{
302,
100
},
{
303,
100
},
{
304,
50
},
{
305,
50
},
{
306,
50
},
{
307,
50
}
}
},
[301]={
["hero_id"]=32001,
["hero_weights"]={
{
401,
200
},
{
402,
100
},
{
403,
100
},
{
404,
100
},
{
405,
100
},
{
406,
100
},
{
407,
100
}
}
},
[302]={
["hero_id"]=33001,
["hero_weights"]={
{
401,
200
},
{
402,
200
},
{
403,
200
},
{
404,
50
},
{
405,
50
},
{
406,
50
},
{
407,
50
}
}
},
[303]={
["hero_id"]=33002,
["hero_weights"]={
{
401,
200
},
{
402,
200
},
{
403,
200
},
{
404,
50
},
{
405,
50
},
{
406,
50
},
{
407,
50
}
}
},
[304]={
["hero_id"]=34001,
["hero_weights"]={
{
401,
400
},
{
402,
100
},
{
403,
100
},
{
404,
50
},
{
405,
50
},
{
406,
50
},
{
407,
50
}
}
},
[305]={
["hero_id"]=34002,
["hero_weights"]={
{
401,
400
},
{
402,
100
},
{
403,
100
},
{
404,
50
},
{
405,
50
},
{
406,
50
},
{
407,
50
}
}
},
[306]={
["hero_id"]=34003,
["hero_weights"]={
{
401,
400
},
{
402,
100
},
{
403,
100
},
{
404,
50
},
{
405,
50
},
{
406,
50
},
{
407,
50
}
}
},
[307]={
["hero_id"]=34004,
["hero_weights"]={
{
401,
400
},
{
402,
100
},
{
403,
100
},
{
404,
50
},
{
405,
50
},
{
406,
50
},
{
407,
50
}
}
},
[401]={
["hero_id"]=42001,
["hero_weights"]={
{
501,
200
},
{
502,
100
},
{
503,
100
},
{
504,
100
},
{
505,
100
},
{
506,
100
},
{
507,
100
}
}
},
[402]={
["hero_id"]=43001,
["hero_weights"]={
{
501,
200
},
{
502,
200
},
{
503,
200
},
{
504,
50
},
{
505,
50
},
{
506,
50
},
{
507,
50
}
}
},
[403]={
["hero_id"]=43002,
["hero_weights"]={
{
501,
200
},
{
502,
200
},
{
503,
200
},
{
504,
50
},
{
505,
50
},
{
506,
50
},
{
507,
50
}
}
},
[404]={
["hero_id"]=44001,
["hero_weights"]={
{
501,
400
},
{
502,
100
},
{
503,
100
},
{
504,
50
},
{
505,
50
},
{
506,
50
},
{
507,
50
}
}
},
[405]={
["hero_id"]=44002,
["hero_weights"]={
{
501,
400
},
{
502,
100
},
{
503,
100
},
{
504,
50
},
{
505,
50
},
{
506,
50
},
{
507,
50
}
}
},
[406]={
["hero_id"]=44003,
["hero_weights"]={
{
501,
400
},
{
502,
100
},
{
503,
100
},
{
504,
50
},
{
505,
50
},
{
506,
50
},
{
507,
50
}
}
},
[407]={
["hero_id"]=44004,
["hero_weights"]={
{
501,
400
},
{
502,
100
},
{
503,
100
},
{
504,
50
},
{
505,
50
},
{
506,
50
},
{
507,
50
}
}
},
[501]={
["hero_id"]=52001
},
[502]={
["hero_id"]=53001
},
[503]={
["hero_id"]=53002
},
[504]={
["hero_id"]=54001
},
[505]={
["hero_id"]=54002
},
[506]={
["hero_id"]=54003
},
[507]={
["hero_id"]=54004
}
}
local config = {
data=activity_pvp,count=35
}
return config

View File

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

File diff suppressed because it is too large Load Diff

View File

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

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -1,90 +0,0 @@
local activity_pvp_wingift = {
[1]={
["win"]=1,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=10,
["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=3000,
["num_for_nothing"]="VQhcAw=="
}
}
},
[2]={
["win"]=4,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=20,
["num_for_nothing"]="VAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=4000,
["num_for_nothing"]="UghcAw=="
}
}
},
[3]={
["win"]=7,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=55,
["id_for_nothing"]="Uw0=",
["num"]=50,
["num_for_nothing"]="Uwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=5000,
["num_for_nothing"]="UwhcAw=="
}
}
},
[4]={
["win"]=10,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=6,
["id_for_nothing"]="UA==",
["num"]=1,
["num_for_nothing"]="Vw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=8000,
["num_for_nothing"]="XghcAw=="
}
}
}
}
local config = {
data=activity_pvp_wingift,count=4
}
return config

View File

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

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -1,54 +0,0 @@
local activity_tourn_arena_point = {
[1]={
["point_win"]=4,
["point_lose"]=3
},
[2]={
["point_win"]=6,
["point_lose"]=4
},
[3]={
["point_win"]=8,
["point_lose"]=5
},
[4]={
["point_win"]=10,
["point_lose"]=6
},
[5]={
["point_win"]=12,
["point_lose"]=7
},
[6]={
["point_win"]=14,
["point_lose"]=8
},
[7]={
["point_win"]=16,
["point_lose"]=10
},
[8]={
["point_win"]=18,
["point_lose"]=12
},
[9]={
["point_win"]=20,
["point_lose"]=14
},
[10]={
["point_win"]=22,
["point_lose"]=16
},
[11]={
["point_win"]=24,
["point_lose"]=18
},
[12]={
["point_win"]=26,
["point_lose"]=20
}
}
local config = {
data=activity_tourn_arena_point,count=12
}
return config

View File

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

File diff suppressed because it is too large Load Diff

View File

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

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -1,600 +0,0 @@
local arena_gift = {
[1]={
["score"]=900,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=8,
["id_for_nothing"]="Xg==",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[2]={
["score"]=950,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=23002,
["id_for_nothing"]="VAtcA2c=",
["num"]=10,
["num_for_nothing"]="Vwg="
}
}
},
[3]={
["score"]=1000,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=10,
["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[4]={
["score"]=1050,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=5000,
["num_for_nothing"]="UwhcAw=="
}
}
},
[5]={
["score"]=1100,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=50,
["num_for_nothing"]="Uwg="
}
},
["unlock_hero"]={
54003
}
},
[6]={
["score"]=1150,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=10,
["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[7]={
["score"]=1200,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=6,
["id_for_nothing"]="UA==",
["num"]=1,
["num_for_nothing"]="Vw=="
}
},
["unlock_hero"]={
34003
}
},
[8]={
["score"]=1250,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=10000,
["num_for_nothing"]="VwhcA2U="
}
}
},
[9]={
["score"]=1300,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=11,
["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[10]={
["score"]=1350,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=60,
["num_for_nothing"]="UAg="
}
}
},
[11]={
["score"]=1400,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=54003,
["id_for_nothing"]="UwxcA2Y=",
["num"]=3,
["num_for_nothing"]="VQ=="
}
},
["unlock_hero"]={
24003
}
},
[12]={
["score"]=1450,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=15000,
["num_for_nothing"]="Vw1cA2U="
}
}
},
[13]={
["score"]=1500,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=11,
["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[14]={
["score"]=1550,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=80,
["num_for_nothing"]="Xgg="
}
}
},
[15]={
["score"]=1600,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=34003,
["id_for_nothing"]="VQxcA2Y=",
["num"]=3,
["num_for_nothing"]="VQ=="
}
}
},
[16]={
["score"]=1650,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=18000,
["num_for_nothing"]="VwBcA2U="
}
}
},
[17]={
["score"]=1700,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=18,
["id_for_nothing"]="VwA=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[18]={
["score"]=1750,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=100,
["num_for_nothing"]="Vwhc"
}
}
},
[19]={
["score"]=1800,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=24003,
["id_for_nothing"]="VAxcA2Y=",
["num"]=3,
["num_for_nothing"]="VQ=="
}
}
},
[20]={
["score"]=1850,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=20000,
["num_for_nothing"]="VAhcA2U="
}
}
},
[21]={
["score"]=1900,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=18,
["id_for_nothing"]="VwA=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[22]={
["score"]=1950,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=120,
["num_for_nothing"]="Vwpc"
}
}
},
[23]={
["score"]=2000,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=47,
["id_for_nothing"]="Ug8=",
["num"]=5,
["num_for_nothing"]="Uw=="
}
}
},
[24]={
["score"]=2050,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=24000,
["num_for_nothing"]="VAxcA2U="
}
}
},
[25]={
["score"]=2100,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=18,
["id_for_nothing"]="VwA=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[26]={
["score"]=2150,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=150,
["num_for_nothing"]="Vw1c"
}
}
},
[27]={
["score"]=2200,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=47,
["id_for_nothing"]="Ug8=",
["num"]=8,
["num_for_nothing"]="Xg=="
}
}
},
[28]={
["score"]=2250,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=30000,
["num_for_nothing"]="VQhcA2U="
}
}
},
[29]={
["score"]=2300,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=18,
["id_for_nothing"]="VwA=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[30]={
["score"]=2350,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=180,
["num_for_nothing"]="VwBc"
}
}
},
[31]={
["score"]=2400,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=30000,
["num_for_nothing"]="VQhcA2U="
}
}
},
[32]={
["score"]=2450,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=14,
["id_for_nothing"]="Vww=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[33]={
["score"]=2500,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=47,
["id_for_nothing"]="Ug8=",
["num"]=10,
["num_for_nothing"]="Vwg="
}
}
},
[34]={
["score"]=2550,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=40000,
["num_for_nothing"]="UghcA2U="
}
}
},
[35]={
["score"]=2600,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=18,
["id_for_nothing"]="VwA=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[36]={
["score"]=2650,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=200,
["num_for_nothing"]="VAhc"
}
}
},
[37]={
["score"]=2700,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=40000,
["num_for_nothing"]="UghcA2U="
}
}
},
[38]={
["score"]=2750,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=15,
["id_for_nothing"]="Vw0=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[39]={
["score"]=2800,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=47,
["id_for_nothing"]="Ug8=",
["num"]=12,
["num_for_nothing"]="Vwo="
}
}
},
[40]={
["score"]=2850,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=50000,
["num_for_nothing"]="UwhcA2U="
}
}
},
[41]={
["score"]=2900,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=18,
["id_for_nothing"]="VwA=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[42]={
["score"]=2950,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=300,
["num_for_nothing"]="VQhc"
}
}
},
[43]={
["score"]=3000,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=50000,
["num_for_nothing"]="UwhcA2U="
}
}
},
[44]={
["score"]=3050,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=15,
["id_for_nothing"]="Vw0=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
}
},
[45]={
["score"]=3100,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=47,
["id_for_nothing"]="Ug8=",
["num"]=15,
["num_for_nothing"]="Vw0="
}
}
}
}
local config = {
data=arena_gift,count=45
}
return config

View File

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

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -1,876 +0,0 @@
local arena_robot = {
[1]={
["name"]="Gresham",
["score"]=917,
["level"]=9,
["avatar"]=3001,
["avatar_frame"]=1000,
["hero_id"]={
{
12001,
3
},
{
22001,
3
},
{
32001,
3
},
{
42001,
3
},
{
52001,
3
}
}
},
[2]={
["name"]="Gilroy",
["score"]=929,
["level"]=10,
["avatar"]=1001,
["avatar_frame"]=1000,
["hero_id"]={
{
12001,
5
},
{
22001,
5
},
{
32001,
5
},
{
42001,
5
},
{
52001,
5
}
}
},
[3]={
["name"]="Landry",
["score"]=941,
["level"]=10,
["avatar"]=4001,
["avatar_frame"]=1000,
["hero_id"]={
{
12001,
5
},
{
22001,
5
},
{
32001,
5
},
{
42001,
5
},
{
52001,
5
}
}
},
[4]={
["name"]="Eva",
["score"]=953,
["level"]=9,
["avatar"]=2001,
["avatar_frame"]=1000,
["hero_id"]={
{
12001,
5
},
{
22001,
5
},
{
32001,
5
},
{
43001,
3
},
{
52001,
5
}
}
},
[5]={
["name"]="Prosperous",
["score"]=959,
["level"]=9,
["avatar"]=5001,
["avatar_frame"]=1000,
["hero_id"]={
{
12001,
5
},
{
22001,
5
},
{
32001,
5
},
{
43001,
3
},
{
52001,
5
}
}
},
[6]={
["name"]="Fleming",
["score"]=964,
["level"]=8,
["avatar"]=4001,
["avatar_frame"]=1000,
["hero_id"]={
{
12001,
5
},
{
22001,
5
},
{
33001,
3
},
{
43001,
4
},
{
52001,
5
}
}
},
[7]={
["name"]="Lola",
["score"]=969,
["level"]=8,
["avatar"]=5001,
["avatar_frame"]=1000,
["hero_id"]={
{
12001,
5
},
{
22001,
6
},
{
33001,
3
},
{
43001,
4
},
{
52001,
5
}
}
},
[8]={
["name"]="Frances",
["score"]=978,
["level"]=9,
["avatar"]=3001,
["avatar_frame"]=1000,
["hero_id"]={
{
12001,
6
},
{
22001,
6
},
{
33001,
3
},
{
43001,
5
},
{
52001,
5
}
}
},
[9]={
["name"]="Keith",
["score"]=987,
["level"]=7,
["avatar"]=2001,
["avatar_frame"]=1000,
["hero_id"]={
{
12001,
6
},
{
22001,
6
},
{
33001,
4
},
{
43001,
5
},
{
52001,
5
}
}
},
[10]={
["name"]="Winston",
["score"]=996,
["level"]=11,
["avatar"]=1001,
["avatar_frame"]=1000,
["hero_id"]={
{
13001,
3
},
{
22001,
6
},
{
33001,
4
},
{
43001,
5
},
{
52001,
6
}
}
},
[11]={
["name"]="Halsey",
["score"]=1006,
["level"]=12,
["avatar"]=5001,
["avatar_frame"]=1000,
["hero_id"]={
{
13001,
3
},
{
22001,
6
},
{
33001,
5
},
{
43001,
5
},
{
52001,
6
}
}
},
[12]={
["name"]="Stuart",
["score"]=1018,
["level"]=14,
["avatar"]=5001,
["avatar_frame"]=1000,
["hero_id"]={
{
13001,
4
},
{
22001,
6
},
{
33001,
5
},
{
43001,
5
},
{
52001,
6
}
}
},
[13]={
["name"]="Dark-Haired",
["score"]=1029,
["level"]=13,
["avatar"]=1001,
["avatar_frame"]=1000,
["hero_id"]={
{
13001,
4
},
{
22001,
6
},
{
33001,
5
},
{
43001,
5
},
{
52001,
6
}
}
},
[14]={
["name"]="Hilda",
["score"]=1036,
["level"]=10,
["avatar"]=2001,
["avatar_frame"]=1000,
["hero_id"]={
{
13001,
5
},
{
22001,
6
},
{
33001,
5
},
{
43001,
6
},
{
52001,
6
}
}
},
[15]={
["name"]="Idelle",
["score"]=1046,
["level"]=13,
["avatar"]=2001,
["avatar_frame"]=1000,
["hero_id"]={
{
13001,
5
},
{
22001,
6
},
{
33001,
5
},
{
43001,
6
},
{
53002,
4
}
}
},
[16]={
["name"]="Sibley",
["score"]=1055,
["level"]=11,
["avatar"]=3001,
["avatar_frame"]=1000,
["hero_id"]={
{
13001,
5
},
{
22001,
6
},
{
33001,
6
},
{
43001,
6
},
{
53002,
4
}
}
},
[17]={
["name"]="Wolf",
["score"]=1065,
["level"]=11,
["avatar"]=1001,
["avatar_frame"]=1000,
["hero_id"]={
{
13001,
5
},
{
22001,
7
},
{
33001,
6
},
{
43001,
6
},
{
53002,
4
}
}
},
[18]={
["name"]="Renata",
["score"]=1073,
["level"]=13,
["avatar"]=3001,
["avatar_frame"]=1000,
["hero_id"]={
{
13001,
6
},
{
22001,
7
},
{
33001,
6
},
{
43001,
6
},
{
53002,
4
}
}
},
[19]={
["name"]="Lane",
["score"]=1084,
["level"]=10,
["avatar"]=4001,
["avatar_frame"]=1000,
["hero_id"]={
{
13001,
6
},
{
22001,
7
},
{
33001,
6
},
{
43001,
6
},
{
53002,
5
}
}
},
[20]={
["name"]="Fabian",
["score"]=1095,
["level"]=13,
["avatar"]=4001,
["avatar_frame"]=1000,
["hero_id"]={
{
13001,
6
},
{
23002,
4
},
{
33001,
6
},
{
43001,
6
},
{
53002,
5
}
}
},
[21]={
["name"]="Peace",
["score"]=1104,
["level"]=14,
["avatar"]=1001,
["avatar_frame"]=1000,
["hero_id"]={
{
13001,
6
},
{
23002,
4
},
{
33001,
6
},
{
43001,
6
},
{
53002,
5
}
}
},
[22]={
["name"]="Tanya",
["score"]=1110,
["level"]=15,
["avatar"]=2001,
["avatar_frame"]=1000,
["hero_id"]={
{
13001,
6
},
{
23002,
4
},
{
33001,
6
},
{
43001,
6
},
{
53002,
5
}
}
},
[23]={
["name"]="Trix",
["score"]=1118,
["level"]=13,
["avatar"]=5001,
["avatar_frame"]=1000,
["hero_id"]={
{
13001,
6
},
{
23002,
5
},
{
33001,
6
},
{
43001,
6
},
{
53002,
6
}
}
},
[24]={
["name"]="Eugene",
["score"]=1129,
["level"]=16,
["avatar"]=5001,
["avatar_frame"]=1000,
["hero_id"]={
{
13001,
6
},
{
23002,
5
},
{
33001,
6
},
{
43001,
7
},
{
53002,
6
}
}
},
[25]={
["name"]="Loralie",
["score"]=1140,
["level"]=14,
["avatar"]=1001,
["avatar_frame"]=1000,
["hero_id"]={
{
13001,
7
},
{
23002,
5
},
{
33001,
6
},
{
43001,
7
},
{
53002,
6
}
}
},
[26]={
["name"]="Henrietta",
["score"]=1150,
["level"]=13,
["avatar"]=3001,
["avatar_frame"]=1000,
["hero_id"]={
{
13001,
7
},
{
23002,
5
},
{
33001,
7
},
{
43002,
7
},
{
53002,
6
}
}
},
[27]={
["name"]="Willette",
["score"]=1159,
["level"]=14,
["avatar"]=4001,
["avatar_frame"]=1000,
["hero_id"]={
{
13001,
7
},
{
23002,
6
},
{
33001,
7
},
{
43002,
7
},
{
53002,
6
}
}
},
[28]={
["name"]="Orlena",
["score"]=1167,
["level"]=14,
["avatar"]=3001,
["avatar_frame"]=1000,
["hero_id"]={
{
13001,
7
},
{
23002,
6
},
{
33001,
7
},
{
43002,
7
},
{
53002,
7
}
}
},
[29]={
["name"]="Irving",
["score"]=1178,
["level"]=15,
["avatar"]=2001,
["avatar_frame"]=1000,
["hero_id"]={
{
13001,
7
},
{
23002,
6
},
{
33001,
7
},
{
43002,
7
},
{
53002,
7
}
}
},
[30]={
["name"]="Phyllis",
["score"]=1190,
["level"]=16,
["avatar"]=4001,
["avatar_frame"]=1000,
["hero_id"]={
{
13001,
7
},
{
23002,
7
},
{
33001,
7
},
{
43002,
7
},
{
53002,
7
}
}
}
}
local config = {
data=arena_robot,count=30
}
return config

View File

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

View File

@ -1,126 +0,0 @@
local arena_time = {
[1]={
["season"]=1,
["start_time"]="2023-6-25 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",
["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",
["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_2"
},
[5]={
["season"]=5,
["start_time"]="2023-11-15 00:00:00",
["end_time"]="2023-12-15 00:00:00",
["ui_banner"]="ui_arena_bounty_banner_3"
},
[6]={
["season"]=6,
["start_time"]="2023-12-15 00:00:00",
["end_time"]="2024-1-15 00:00:00",
["ui_banner"]="ui_arena_bounty_banner_4"
},
[7]={
["season"]=7,
["start_time"]="2024-1-15 00:00:00",
["end_time"]="2024-2-15 00:00:00",
["ui_banner"]="ui_arena_bounty_banner_5"
},
[8]={
["season"]=8,
["start_time"]="2024-2-15 00:00:00",
["end_time"]="2024-3-16 00:00:00",
["ui_banner"]="ui_arena_bounty_banner_6"
},
[9]={
["season"]=9,
["start_time"]="2024-3-16 00:00:00",
["end_time"]="2024-4-15 00:00:00",
["ui_banner"]="ui_arena_bounty_banner"
},
[10]={
["season"]=10,
["start_time"]="2024-4-15 00:00:00",
["end_time"]="2024-5-16 00:00:00",
["ui_banner"]="ui_arena_bounty_banner"
},
[11]={
["season"]=11,
["start_time"]="2024-5-16 00:00:00",
["end_time"]="2024-6-15 00:00:00",
["ui_banner"]="ui_arena_bounty_banner"
},
[12]={
["season"]=12,
["start_time"]="2024-6-15 00:00:00",
["end_time"]="2024-7-16 00:00:00",
["ui_banner"]="ui_arena_bounty_banner"
},
[13]={
["season"]=13,
["start_time"]="2024-7-16 00:00:00",
["end_time"]="2024-8-15 00:00:00",
["ui_banner"]="ui_arena_bounty_banner"
},
[14]={
["season"]=14,
["start_time"]="2024-8-15 00:00:00",
["end_time"]="2024-9-15 00:00:00",
["ui_banner"]="ui_arena_bounty_banner"
},
[15]={
["season"]=15,
["start_time"]="2024-9-15 00:00:00",
["end_time"]="2024-10-15 00:00:00",
["ui_banner"]="ui_arena_bounty_banner"
},
[16]={
["season"]=16,
["start_time"]="2024-10-15 00:00:00",
["end_time"]="2024-11-15 00:00:00",
["ui_banner"]="ui_arena_bounty_banner"
},
[17]={
["season"]=17,
["start_time"]="2024-11-15 00:00:00",
["end_time"]="2024-12-15 00:00:00",
["ui_banner"]="ui_arena_bounty_banner"
},
[18]={
["season"]=18,
["start_time"]="2024-12-15 00:00:00",
["end_time"]="2025-1-15 00:00:00",
["ui_banner"]="ui_arena_bounty_banner"
},
[19]={
["season"]=19,
["start_time"]="2025-1-15 00:00:00",
["end_time"]="2025-2-15 00:00:00",
["ui_banner"]="ui_arena_bounty_banner"
},
[20]={
["season"]=20,
["start_time"]="2025-2-15 00:00:00",
["end_time"]="2025-3-15 00:00:00",
["ui_banner"]="ui_arena_bounty_banner"
}
}
local config = {
data=arena_time,count=20
}
return config

View File

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

View File

@ -22,226 +22,6 @@ local attr = {
[6]={ [6]={
["id"]=6, ["id"]=6,
["name"]="atk_purple" ["name"]="atk_purple"
},
[7]={
["id"]=7,
["name"]="attr_crit_red"
},
[8]={
["id"]=8,
["name"]="attr_crit_yellow"
},
[9]={
["id"]=9,
["name"]="attr_crit_green"
},
[10]={
["id"]=10,
["name"]="attr_crit_blue"
},
[11]={
["id"]=11,
["name"]="attr_crit_purple"
},
[12]={
["id"]=12,
["name"]="attr_crit_time_red"
},
[13]={
["id"]=13,
["name"]="attr_crit_time_yellow"
},
[14]={
["id"]=14,
["name"]="attr_crit_time_green"
},
[15]={
["id"]=15,
["name"]="attr_crit_time_blue"
},
[16]={
["id"]=16,
["name"]="attr_crit_time_purple"
},
[17]={
["id"]=17,
["name"]="attr_cured_red"
},
[18]={
["id"]=18,
["name"]="attr_cured_yellow"
},
[19]={
["id"]=19,
["name"]="attr_cured_green"
},
[20]={
["id"]=20,
["name"]="attr_cured_blue"
},
[21]={
["id"]=21,
["name"]="attr_cured_purple"
},
[22]={
["id"]=22,
["name"]="attr_atkp_red"
},
[23]={
["id"]=23,
["name"]="attr_atkp_yellow"
},
[24]={
["id"]=24,
["name"]="attr_atkp_green"
},
[25]={
["id"]=25,
["name"]="attr_atkp_blue"
},
[26]={
["id"]=26,
["name"]="attr_atkp_purple"
},
[27]={
["id"]=27,
["name"]="attr_hpp_red"
},
[28]={
["id"]=28,
["name"]="attr_hpp_yellow"
},
[29]={
["id"]=29,
["name"]="attr_hpp_green"
},
[30]={
["id"]=30,
["name"]="attr_hpp_blue"
},
[31]={
["id"]=31,
["name"]="attr_hpp_purple"
},
[32]={
["id"]=32,
["name"]="attr_normal_hurt_red"
},
[33]={
["id"]=33,
["name"]="attr_normal_hurt_yellow"
},
[34]={
["id"]=34,
["name"]="attr_normal_hurt_green"
},
[35]={
["id"]=35,
["name"]="attr_normal_hurt_blue"
},
[36]={
["id"]=36,
["name"]="attr_normal_hurt_purple"
},
[37]={
["id"]=37,
["name"]="attr_skill_hurt_red"
},
[38]={
["id"]=38,
["name"]="attr_skill_hurt_yellow"
},
[39]={
["id"]=39,
["name"]="attr_skill_hurt_green"
},
[40]={
["id"]=40,
["name"]="attr_skill_hurt_blue"
},
[41]={
["id"]=41,
["name"]="attr_skill_hurt_purple"
},
[42]={
["id"]=42,
["name"]="attr_normal_hurtp_red"
},
[43]={
["id"]=43,
["name"]="attr_normal_hurtp_yellow"
},
[44]={
["id"]=44,
["name"]="attr_normal_hurtp_green"
},
[45]={
["id"]=45,
["name"]="attr_normal_hurtp_blue"
},
[46]={
["id"]=46,
["name"]="attr_normal_hurtp_purple"
},
[47]={
["id"]=47,
["name"]="attr_skill_hurtp_red"
},
[48]={
["id"]=48,
["name"]="attr_skill_hurtp_yellow"
},
[49]={
["id"]=49,
["name"]="attr_skill_hurtp_green"
},
[50]={
["id"]=50,
["name"]="attr_skill_hurtp_blue"
},
[51]={
["id"]=51,
["name"]="attr_skill_hurtp_purple"
},
[52]={
["id"]=52,
["name"]="attr_hp_red"
},
[53]={
["id"]=53,
["name"]="attr_hp_yellow"
},
[54]={
["id"]=54,
["name"]="attr_hp_green"
},
[55]={
["id"]=55,
["name"]="attr_hp_blue"
},
[56]={
["id"]=56,
["name"]="attr_hp_purple"
},
[57]={
["id"]=57,
["name"]="attr_all_hurtp_red"
},
[58]={
["id"]=58,
["name"]="attr_all_hurtp_yellow"
},
[59]={
["id"]=59,
["name"]="attr_all_hurtp_green"
},
[60]={
["id"]=60,
["name"]="attr_all_hurtp_blue"
},
[61]={
["id"]=61,
["name"]="attr_all_hurtp_purple"
} }
} }
local keys = { local keys = {
@ -251,67 +31,12 @@ local keys = {
["atk_yellow"]=attr[3], ["atk_yellow"]=attr[3],
["atk_green"]=attr[4], ["atk_green"]=attr[4],
["atk_blue"]=attr[5], ["atk_blue"]=attr[5],
["atk_purple"]=attr[6], ["atk_purple"]=attr[6]
["attr_crit_red"]=attr[7],
["attr_crit_yellow"]=attr[8],
["attr_crit_green"]=attr[9],
["attr_crit_blue"]=attr[10],
["attr_crit_purple"]=attr[11],
["attr_crit_time_red"]=attr[12],
["attr_crit_time_yellow"]=attr[13],
["attr_crit_time_green"]=attr[14],
["attr_crit_time_blue"]=attr[15],
["attr_crit_time_purple"]=attr[16],
["attr_cured_red"]=attr[17],
["attr_cured_yellow"]=attr[18],
["attr_cured_green"]=attr[19],
["attr_cured_blue"]=attr[20],
["attr_cured_purple"]=attr[21],
["attr_atkp_red"]=attr[22],
["attr_atkp_yellow"]=attr[23],
["attr_atkp_green"]=attr[24],
["attr_atkp_blue"]=attr[25],
["attr_atkp_purple"]=attr[26],
["attr_hpp_red"]=attr[27],
["attr_hpp_yellow"]=attr[28],
["attr_hpp_green"]=attr[29],
["attr_hpp_blue"]=attr[30],
["attr_hpp_purple"]=attr[31],
["attr_normal_hurt_red"]=attr[32],
["attr_normal_hurt_yellow"]=attr[33],
["attr_normal_hurt_green"]=attr[34],
["attr_normal_hurt_blue"]=attr[35],
["attr_normal_hurt_purple"]=attr[36],
["attr_skill_hurt_red"]=attr[37],
["attr_skill_hurt_yellow"]=attr[38],
["attr_skill_hurt_green"]=attr[39],
["attr_skill_hurt_blue"]=attr[40],
["attr_skill_hurt_purple"]=attr[41],
["attr_normal_hurtp_red"]=attr[42],
["attr_normal_hurtp_yellow"]=attr[43],
["attr_normal_hurtp_green"]=attr[44],
["attr_normal_hurtp_blue"]=attr[45],
["attr_normal_hurtp_purple"]=attr[46],
["attr_skill_hurtp_red"]=attr[47],
["attr_skill_hurtp_yellow"]=attr[48],
["attr_skill_hurtp_green"]=attr[49],
["attr_skill_hurtp_blue"]=attr[50],
["attr_skill_hurtp_purple"]=attr[51],
["attr_hp_red"]=attr[52],
["attr_hp_yellow"]=attr[53],
["attr_hp_green"]=attr[54],
["attr_hp_blue"]=attr[55],
["attr_hp_purple"]=attr[56],
["attr_all_hurtp_red"]=attr[57],
["attr_all_hurtp_yellow"]=attr[58],
["attr_all_hurtp_green"]=attr[59],
["attr_all_hurtp_blue"]=attr[60],
["attr_all_hurtp_purple"]=attr[61]
} }
} }
local config = { local config = {
data=attr, data=attr,
keys=keys, keys=keys,
count=61 count=6
} }
return config return config

View File

@ -1,14 +1,4 @@
local avatar = { local avatar = {
[23]={
["iconId"]="avatar_1",
["item"]=23,
["unlock_show"]=true
},
[24]={
["iconId"]="avatar_2",
["item"]=44,
["unlock_show"]=true
},
[1001]={ [1001]={
["iconId"]="1", ["iconId"]="1",
["hero"]=12001 ["hero"]=12001
@ -111,101 +101,9 @@ local avatar = {
[25001]={ [25001]={
["iconId"]="26", ["iconId"]="26",
["hero"]=54002 ["hero"]=54002
},
[14003]={
["iconId"]="31",
["hero"]=14003
},
[24003]={
["iconId"]="27",
["hero"]=24003
},
[34003]={
["iconId"]="28",
["hero"]=34003
},
[44003]={
["iconId"]="29",
["hero"]=44003
},
[54003]={
["iconId"]="30",
["hero"]=54003
},
[14004]={
["iconId"]="32",
["hero"]=14004
},
[24004]={
["iconId"]="33",
["hero"]=24004
},
[34004]={
["iconId"]="34",
["hero"]=34004
},
[44004]={
["iconId"]="35",
["hero"]=44004
},
[54004]={
["iconId"]="36",
["hero"]=54004
},
[1400201]={
["iconId"]="23_1",
["item"]=1400201
},
[3400101]={
["iconId"]="18_1",
["item"]=3400101
},
[3400102]={
["iconId"]="18_2",
["item"]=3400102
},
[5300101]={
["iconId"]="10_1",
["item"]=5300101
},
[5400101]={
["iconId"]="20_1",
["item"]=5400101
},
[1400101]={
["iconId"]="16_1",
["item"]=1400101
},
[2300201]={
["iconId"]="7_1",
["item"]=2300201
},
[4400201]={
["iconId"]="25_1",
["item"]=4400201
},
[5400401]={
["iconId"]="36_1",
["item"]=5400401
},
[2400101]={
["iconId"]="17_1",
["item"]=2400101
},
[4400101]={
["iconId"]="19_1",
["item"]=4400101
},
[5400301]={
["iconId"]="30_1",
["item"]=5400301
},
[5400201]={
["iconId"]="26_1",
["item"]=5400201
} }
} }
local config = { local config = {
data=avatar,count=50 data=avatar,count=25
} }
return config return config

View File

@ -2,94 +2,9 @@ local avatar_frame = {
[1000]={ [1000]={
["iconId"]="avatar_frame_1", ["iconId"]="avatar_frame_1",
["unlock"]=true ["unlock"]=true
},
[24]={
["iconId"]="avatar_frame_2",
["item"]=24,
["unlock_show"]=true
},
[25]={
["iconId"]="avatar_frame_3",
["item"]=25,
["unlock_show"]=true
},
[26]={
["iconId"]="avatar_frame_4",
["item"]=45,
["unlock_show"]=true
},
[27]={
["iconId"]="avatar_frame_5",
["item"]=46,
["unlock_show"]=true
},
[28]={
["iconId"]="avatar_frame_6",
["item"]=53,
["unlock_show"]=true
},
[29]={
["iconId"]="avatar_frame_7",
["item"]=54,
["unlock_show"]=true
},
[30]={
["iconId"]="avatar_frame_8",
["item"]=57,
["unlock_show"]=true
},
[31]={
["iconId"]="avatar_frame_9",
["item"]=58,
["unlock_show"]=true
},
[32]={
["iconId"]="avatar_frame_10",
["item"]=59,
["unlock_show"]=true
},
[33]={
["iconId"]="avatar_frame_11",
["item"]=60,
["unlock_show"]=true
},
[34]={
["iconId"]="avatar_frame_12",
["item"]=61,
["unlock_show"]=true
},
[35]={
["iconId"]="avatar_frame_13",
["item"]=62,
["unlock_show"]=true
},
[36]={
["iconId"]="avatar_frame_14",
["item"]=63,
["unlock_show"]=true
},
[37]={
["iconId"]="avatar_frame_15",
["item"]=64,
["unlock_show"]=true
},
[38]={
["iconId"]="avatar_frame_16",
["item"]=65,
["unlock_show"]=true
},
[39]={
["iconId"]="avatar_frame_17",
["item"]=66,
["unlock_show"]=true
},
[40]={
["iconId"]="avatar_frame_18",
["item"]=67,
["unlock_show"]=true
} }
} }
local config = { local config = {
data=avatar_frame,count=18 data=avatar_frame,count=1
} }
return config return config

File diff suppressed because it is too large Load Diff

View File

@ -2,145 +2,15 @@ local bounty_time = {
[1]={ [1]={
["season"]=1, ["season"]=1,
["start_time"]="2023-6-20 00:00:00", ["start_time"]="2023-6-20 00:00:00",
["end_time"]="2023-8-1 00:00:00", ["end_time"]="2023-8-1 00:00:00"
["ui_banner"]="ui_bounty_banner",
["enter_ui_banner"]="bounty_btn_main_1"
}, },
[2]={ [2]={
["season"]=2, ["season"]=2,
["start_time"]="2023-8-1 00:00:00", ["start_time"]="2023-8-1 00:00:00",
["end_time"]="2023-9-1 00:00:00", ["end_time"]="2023-9-1 00:00:00"
["ui_banner"]="ui_bounty_banner_2",
["enter_ui_banner"]="bounty_btn_main_2"
},
[3]={
["season"]=3,
["start_time"]="2023-9-1 00:00:00",
["end_time"]="2023-10-1 00:00:00",
["ui_banner"]="ui_bounty_banner_3",
["enter_ui_banner"]="bounty_btn_main_3"
},
[4]={
["season"]=4,
["start_time"]="2023-10-1 00:00:00",
["end_time"]="2023-11-1 00:00:00",
["ui_banner"]="ui_bounty_banner_4",
["enter_ui_banner"]="bounty_btn_main_4"
},
[5]={
["season"]=5,
["start_time"]="2023-11-1 00:00:00",
["end_time"]="2023-12-1 00:00:00",
["ui_banner"]="ui_bounty_banner_5",
["enter_ui_banner"]="bounty_btn_main_5"
},
[6]={
["season"]=6,
["start_time"]="2023-12-1 00:00:00",
["end_time"]="2024-1-1 00:00:00",
["ui_banner"]="ui_bounty_banner",
["enter_ui_banner"]="bounty_btn_main_1"
},
[7]={
["season"]=7,
["start_time"]="2024-1-1 00:00:00",
["end_time"]="2024-2-1 00:00:00",
["ui_banner"]="ui_bounty_banner_2",
["enter_ui_banner"]="bounty_btn_main_2"
},
[8]={
["season"]=8,
["start_time"]="2024-2-1 00:00:00",
["end_time"]="2024-3-1 00:00:00",
["ui_banner"]="ui_bounty_banner_3",
["enter_ui_banner"]="bounty_btn_main_3"
},
[9]={
["season"]=9,
["start_time"]="2024-3-1 00:00:00",
["end_time"]="2024-4-1 00:00:00",
["ui_banner"]="ui_bounty_banner_4",
["enter_ui_banner"]="bounty_btn_main_4"
},
[10]={
["season"]=10,
["start_time"]="2024-4-1 00:00:00",
["end_time"]="2024-5-1 00:00:00",
["ui_banner"]="ui_bounty_banner_5",
["enter_ui_banner"]="bounty_btn_main_5"
},
[11]={
["season"]=11,
["start_time"]="2024-5-1 00:00:00",
["end_time"]="2024-6-1 00:00:00",
["ui_banner"]="ui_bounty_banner",
["enter_ui_banner"]="bounty_btn_main_1"
},
[12]={
["season"]=12,
["start_time"]="2024-6-1 00:00:00",
["end_time"]="2024-7-1 00:00:00",
["ui_banner"]="ui_bounty_banner_2",
["enter_ui_banner"]="bounty_btn_main_2"
},
[13]={
["season"]=13,
["start_time"]="2024-7-1 00:00:00",
["end_time"]="2024-8-1 00:00:00",
["ui_banner"]="ui_bounty_banner_3",
["enter_ui_banner"]="bounty_btn_main_3"
},
[14]={
["season"]=14,
["start_time"]="2024-8-1 00:00:00",
["end_time"]="2024-9-1 00:00:00",
["ui_banner"]="ui_bounty_banner_4",
["enter_ui_banner"]="bounty_btn_main_4"
},
[15]={
["season"]=15,
["start_time"]="2024-9-1 00:00:00",
["end_time"]="2024-10-1 00:00:00",
["ui_banner"]="ui_bounty_banner_5",
["enter_ui_banner"]="bounty_btn_main_5"
},
[16]={
["season"]=16,
["start_time"]="2024-10-1 00:00:00",
["end_time"]="2024-11-1 00:00:00",
["ui_banner"]="ui_bounty_banner",
["enter_ui_banner"]="bounty_btn_main_1"
},
[17]={
["season"]=17,
["start_time"]="2024-11-1 00:00:00",
["end_time"]="2024-12-1 00:00:00",
["ui_banner"]="ui_bounty_banner_2",
["enter_ui_banner"]="bounty_btn_main_2"
},
[18]={
["season"]=18,
["start_time"]="2024-12-1 00:00:00",
["end_time"]="2025-1-1 00:00:00",
["ui_banner"]="ui_bounty_banner_3",
["enter_ui_banner"]="bounty_btn_main_3"
},
[19]={
["season"]=19,
["start_time"]="2025-1-1 00:00:00",
["end_time"]="2025-2-1 00:00:00",
["ui_banner"]="ui_bounty_banner_4",
["enter_ui_banner"]="bounty_btn_main_4"
},
[20]={
["season"]=20,
["start_time"]="2025-2-1 00:00:00",
["end_time"]="2025-3-1 00:00:00",
["ui_banner"]="ui_bounty_banner_5",
["enter_ui_banner"]="bounty_btn_main_5"
} }
} }
local config = { local config = {
data=bounty_time,count=20 data=bounty_time,count=2
} }
return config return config

View File

@ -53,9 +53,7 @@ local buff = {
["stack"]=2, ["stack"]=2,
["position"]=1, ["position"]=1,
["decr"]=1, ["decr"]=1,
["icon"]="dec_dmg_red_add", ["icon"]="dec_dmg_red_add"
["show_name"]=true,
["ispercent"]=1
}, },
[8]={ [8]={
["id"]=8, ["id"]=8,
@ -64,9 +62,7 @@ local buff = {
["stack"]=2, ["stack"]=2,
["position"]=2, ["position"]=2,
["decr"]=1, ["decr"]=1,
["icon"]="dec_dmg_yellow_add", ["icon"]="dec_dmg_yellow_add"
["show_name"]=true,
["ispercent"]=1
}, },
[9]={ [9]={
["id"]=9, ["id"]=9,
@ -75,9 +71,7 @@ local buff = {
["stack"]=2, ["stack"]=2,
["position"]=3, ["position"]=3,
["decr"]=1, ["decr"]=1,
["icon"]="dec_dmg_green_add", ["icon"]="dec_dmg_green_add"
["show_name"]=true,
["ispercent"]=1
}, },
[10]={ [10]={
["id"]=10, ["id"]=10,
@ -86,9 +80,7 @@ local buff = {
["stack"]=2, ["stack"]=2,
["position"]=4, ["position"]=4,
["decr"]=1, ["decr"]=1,
["icon"]="dec_dmg_blue_add", ["icon"]="dec_dmg_blue_add"
["show_name"]=true,
["ispercent"]=1
}, },
[11]={ [11]={
["id"]=11, ["id"]=11,
@ -97,9 +89,7 @@ local buff = {
["stack"]=2, ["stack"]=2,
["position"]=5, ["position"]=5,
["decr"]=1, ["decr"]=1,
["icon"]="dec_dmg_purple_add", ["icon"]="dec_dmg_purple_add"
["show_name"]=true,
["ispercent"]=1
}, },
[12]={ [12]={
["id"]=12, ["id"]=12,
@ -107,9 +97,7 @@ local buff = {
["buff_type"]=1, ["buff_type"]=1,
["stack"]=2, ["stack"]=2,
["decr"]=1, ["decr"]=1,
["icon"]="dec_dmg_all_add", ["icon"]="dec_dmg_all_add"
["show_name"]=true,
["ispercent"]=1
}, },
[13]={ [13]={
["id"]=13, ["id"]=13,
@ -204,16 +192,14 @@ local buff = {
["buff_type"]=1, ["buff_type"]=1,
["stack"]=2, ["stack"]=2,
["decr"]=1, ["decr"]=1,
["icon"]="weakness_all_add", ["icon"]="weakness_all_add"
["ispercent"]=1
}, },
[25]={ [25]={
["id"]=25, ["id"]=25,
["name"]="atkp_color_add", ["name"]="atkp_color_add",
["buff_type"]=1, ["buff_type"]=1,
["stack"]=2, ["stack"]=2,
["decr"]=1, ["decr"]=1
["limit_parameter"]=10000
}, },
[26]={ [26]={
["id"]=26, ["id"]=26,
@ -221,8 +207,7 @@ local buff = {
["buff_type"]=1, ["buff_type"]=1,
["stack"]=2, ["stack"]=2,
["position"]=1, ["position"]=1,
["decr"]=1, ["decr"]=1
["limit_parameter"]=10000
}, },
[27]={ [27]={
["id"]=27, ["id"]=27,
@ -230,8 +215,7 @@ local buff = {
["buff_type"]=1, ["buff_type"]=1,
["stack"]=2, ["stack"]=2,
["position"]=2, ["position"]=2,
["decr"]=1, ["decr"]=1
["limit_parameter"]=10000
}, },
[28]={ [28]={
["id"]=28, ["id"]=28,
@ -239,8 +223,7 @@ local buff = {
["buff_type"]=1, ["buff_type"]=1,
["stack"]=2, ["stack"]=2,
["position"]=3, ["position"]=3,
["decr"]=1, ["decr"]=1
["limit_parameter"]=10000
}, },
[29]={ [29]={
["id"]=29, ["id"]=29,
@ -248,8 +231,7 @@ local buff = {
["buff_type"]=1, ["buff_type"]=1,
["stack"]=2, ["stack"]=2,
["position"]=4, ["position"]=4,
["decr"]=1, ["decr"]=1
["limit_parameter"]=10000
}, },
[30]={ [30]={
["id"]=30, ["id"]=30,
@ -257,8 +239,7 @@ local buff = {
["buff_type"]=1, ["buff_type"]=1,
["stack"]=2, ["stack"]=2,
["position"]=5, ["position"]=5,
["decr"]=1, ["decr"]=1
["limit_parameter"]=10000
}, },
[31]={ [31]={
["id"]=31, ["id"]=31,
@ -419,7 +400,6 @@ local buff = {
["formula"]=4, ["formula"]=4,
["icon"]="burn", ["icon"]="burn",
["show_name"]=true, ["show_name"]=true,
["ispercent"]=1,
["fx_take"]={ ["fx_take"]={
36 36
} }
@ -430,8 +410,6 @@ local buff = {
["buff_type"]=1, ["buff_type"]=1,
["decr"]=2, ["decr"]=2,
["icon"]="vulnerable", ["icon"]="vulnerable",
["show_name"]=true,
["ispercent"]=1,
["fx_get"]={ ["fx_get"]={
34 34
} }
@ -460,7 +438,6 @@ local buff = {
["formula"]=4, ["formula"]=4,
["icon"]="poison", ["icon"]="poison",
["show_name"]=true, ["show_name"]=true,
["ispercent"]=1,
["fx_take"]={ ["fx_take"]={
35 35
} }
@ -484,7 +461,6 @@ local buff = {
["decr"]=2, ["decr"]=2,
["icon"]="corrupt", ["icon"]="corrupt",
["show_name"]=true, ["show_name"]=true,
["ispercent"]=1,
["fx_get"]={ ["fx_get"]={
19 19
} }
@ -497,7 +473,6 @@ local buff = {
["formula"]=4, ["formula"]=4,
["icon"]="bleed", ["icon"]="bleed",
["show_name"]=true, ["show_name"]=true,
["ispercent"]=1,
["fx_take"]={ ["fx_take"]={
31 31
} }
@ -509,7 +484,6 @@ local buff = {
["decr"]=2, ["decr"]=2,
["icon"]="weaken", ["icon"]="weaken",
["show_name"]=true, ["show_name"]=true,
["ispercent"]=1,
["fx_continued"]={ ["fx_continued"]={
33 33
} }
@ -558,8 +532,7 @@ local buff = {
["name"]="skill_hurt_add", ["name"]="skill_hurt_add",
["buff_type"]=1, ["buff_type"]=1,
["stack"]=2, ["stack"]=2,
["decr"]=1, ["decr"]=1
["limit_parameter"]=10000
}, },
[61]={ [61]={
["id"]=61, ["id"]=61,
@ -579,8 +552,7 @@ local buff = {
["stack"]=1, ["stack"]=1,
["decr"]=1, ["decr"]=1,
["icon"]="counterattack", ["icon"]="counterattack",
["show_name"]=true, ["show_name"]=true
["ispercent"]=1
}, },
[63]={ [63]={
["id"]=63, ["id"]=63,
@ -589,7 +561,6 @@ local buff = {
["decr"]=1, ["decr"]=1,
["icon"]="thorns", ["icon"]="thorns",
["show_name"]=true, ["show_name"]=true,
["ispercent"]=1,
["fx_continued"]={ ["fx_continued"]={
18 18
} }
@ -657,8 +628,7 @@ local buff = {
["id"]=72, ["id"]=72,
["name"]="death_summon", ["name"]="death_summon",
["buff_type"]=1, ["buff_type"]=1,
["decr"]=3, ["decr"]=3
["icon"]="death_summon"
}, },
[73]={ [73]={
["id"]=73, ["id"]=73,
@ -704,227 +674,6 @@ local buff = {
["name"]="invalid_control", ["name"]="invalid_control",
["buff_type"]=7, ["buff_type"]=7,
["decr"]=3 ["decr"]=3
},
[77]={
["id"]=77,
["name"]="end_dmg_addition_all_add",
["buff_type"]=1,
["stack"]=2,
["decr"]=1
},
[78]={
["id"]=78,
["name"]="end_dmg_dec_all_add",
["buff_type"]=1,
["stack"]=2,
["decr"]=2
},
[79]={
["id"]=79,
["name"]="invincible_shield",
["buff_type"]=7,
["stack"]=3,
["decr"]=3,
["icon"]="invincible_shield",
["fx_continued"]={
38
},
["fx_disappear"]={
39
}
},
[80]={
["id"]=80,
["name"]="shield_ice_02",
["buff_type"]=2,
["decr"]=3,
["icon"]="shield_ice",
["fx_continued"]={
40
},
["fx_disappear"]={
41
}
},
[81]={
["id"]=81,
["name"]="skill_hurt_add_show",
["buff_type"]=1,
["stack"]=2,
["decr"]=1,
["icon"]="skill_hurt_add"
},
[82]={
["id"]=82,
["name"]="shield_ice_rebound_200",
["buff_type"]=2,
["decr"]=3,
["icon"]="shield_ice",
["fx_continued"]={
26
},
["fx_disappear"]={
27
}
},
[83]={
["id"]=83,
["name"]="shield_rebound_100",
["buff_type"]=2,
["decr"]=3,
["icon"]="shield",
["fx_continued"]={
22
},
["fx_disappear"]={
23
}
},
[84]={
["id"]=84,
["name"]="rebirth",
["buff_type"]=7,
["decr"]=1,
["formula"]=3,
["icon"]="rebirth",
["fx_disappear"]={
44
}
},
[85]={
["id"]=85,
["name"]="ocean_shield",
["buff_type"]=2,
["decr"]=1,
["icon"]="ocean_shield1",
["fx_continued"]={
42
},
["fx_disappear"]={
43
}
},
[86]={
["id"]=86,
["name"]="self_heal",
["buff_type"]=6,
["stack"]=2,
["decr"]=1,
["formula"]=3,
["icon"]="self_heal",
["show_name"]=true,
["fx_take"]={
300027
}
},
[87]={
["id"]=87,
["name"]="charm",
["buff_type"]=7,
["decr"]=2,
["icon"]="charm",
["show_name"]=true,
["fx_continued"]={
45
}
},
[88]={
["id"]=88,
["name"]="immune",
["buff_type"]=7,
["decr"]=1,
["icon"]="immune",
["show_name"]=true,
["fx_continued"]={
46
}
},
[89]={
["id"]=89,
["name"]="forever_first_hand",
["buff_type"]=1,
["decr"]=3,
["icon"]="first_hand"
},
[90]={
["id"]=90,
["name"]="forever_counterattack",
["buff_type"]=1,
["stack"]=1,
["decr"]=3,
["icon"]="counterattack",
["ispercent"]=1
},
[91]={
["id"]=91,
["name"]="forever_dec_dmg_red_add",
["buff_type"]=1,
["stack"]=2,
["position"]=1,
["decr"]=3,
["icon"]="dec_dmg_red_add",
["ispercent"]=1
},
[92]={
["id"]=92,
["name"]="forever_dec_dmg_yellow_add",
["buff_type"]=1,
["stack"]=2,
["position"]=2,
["decr"]=3,
["icon"]="dec_dmg_yellow_add",
["ispercent"]=1
},
[93]={
["id"]=93,
["name"]="forever_dec_dmg_green_add",
["buff_type"]=1,
["stack"]=2,
["position"]=3,
["decr"]=3,
["icon"]="dec_dmg_green_add",
["ispercent"]=1
},
[94]={
["id"]=94,
["name"]="forever_dec_dmg_blue_add",
["buff_type"]=1,
["stack"]=2,
["position"]=4,
["decr"]=3,
["icon"]="dec_dmg_blue_add",
["ispercent"]=1
},
[95]={
["id"]=95,
["name"]="forever_dec_dmg_purple_add",
["buff_type"]=1,
["stack"]=2,
["position"]=5,
["decr"]=3,
["icon"]="dec_dmg_purple_add",
["ispercent"]=1
},
[96]={
["id"]=96,
["name"]="forever_dec_dmg_all_add",
["buff_type"]=1,
["stack"]=2,
["decr"]=3,
["icon"]="dec_dmg_all_add",
["ispercent"]=1
},
[97]={
["id"]=97,
["name"]="forever_thorns",
["buff_type"]=1,
["decr"]=3,
["icon"]="thorns",
["show_name"]=true,
["ispercent"]=1,
["fx_continued"]={
18
}
} }
} }
local keys = { local keys = {
@ -1004,33 +753,12 @@ local keys = {
["shield_rebound_400"]=buff[73], ["shield_rebound_400"]=buff[73],
["shield_ice"]=buff[74], ["shield_ice"]=buff[74],
["shield_ice_rebound_400"]=buff[75], ["shield_ice_rebound_400"]=buff[75],
["invalid_control"]=buff[76], ["invalid_control"]=buff[76]
["end_dmg_addition_all_add"]=buff[77],
["end_dmg_dec_all_add"]=buff[78],
["invincible_shield"]=buff[79],
["shield_ice_02"]=buff[80],
["skill_hurt_add_show"]=buff[81],
["shield_ice_rebound_200"]=buff[82],
["shield_rebound_100"]=buff[83],
["rebirth"]=buff[84],
["ocean_shield"]=buff[85],
["self_heal"]=buff[86],
["charm"]=buff[87],
["immune"]=buff[88],
["forever_first_hand"]=buff[89],
["forever_counterattack"]=buff[90],
["forever_dec_dmg_red_add"]=buff[91],
["forever_dec_dmg_yellow_add"]=buff[92],
["forever_dec_dmg_green_add"]=buff[93],
["forever_dec_dmg_blue_add"]=buff[94],
["forever_dec_dmg_purple_add"]=buff[95],
["forever_dec_dmg_all_add"]=buff[96],
["forever_thorns"]=buff[97]
} }
} }
local config = { local config = {
data=buff, data=buff,
keys=keys, keys=keys,
count=97 count=76
} }
return config return config

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

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

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

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

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -2187,7 +2187,7 @@ local chapter_board_dungeon_gold = {
}, },
{ {
7, 7,
0 40
}, },
{ {
0, 0,

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -55,14 +55,6 @@ local chapter_daily_challenge = {
["id_for_nothing"]="Ug==", ["id_for_nothing"]="Ug==",
["num"]=1, ["num"]=1,
["num_for_nothing"]="Vw==" ["num_for_nothing"]="Vw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=12,
["id_for_nothing"]="Vwo=",
["num"]=10,
["num_for_nothing"]="Vwg="
} }
}, },
["begin_buff_id"]={ ["begin_buff_id"]={
@ -284,14 +276,6 @@ local chapter_daily_challenge = {
["id_for_nothing"]="Ug==", ["id_for_nothing"]="Ug==",
["num"]=1, ["num"]=1,
["num_for_nothing"]="Vw==" ["num_for_nothing"]="Vw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=12,
["id_for_nothing"]="Vwo=",
["num"]=10,
["num_for_nothing"]="Vwg="
} }
}, },
["begin_buff_id"]={ ["begin_buff_id"]={
@ -513,14 +497,6 @@ local chapter_daily_challenge = {
["id_for_nothing"]="Ug==", ["id_for_nothing"]="Ug==",
["num"]=1, ["num"]=1,
["num_for_nothing"]="Vw==" ["num_for_nothing"]="Vw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=12,
["id_for_nothing"]="Vwo=",
["num"]=10,
["num_for_nothing"]="Vwg="
} }
}, },
["begin_buff_id"]={ ["begin_buff_id"]={
@ -742,14 +718,6 @@ local chapter_daily_challenge = {
["id_for_nothing"]="Ug==", ["id_for_nothing"]="Ug==",
["num"]=1, ["num"]=1,
["num_for_nothing"]="Vw==" ["num_for_nothing"]="Vw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=12,
["id_for_nothing"]="Vwo=",
["num"]=10,
["num_for_nothing"]="Vwg="
} }
}, },
["begin_buff_id"]={ ["begin_buff_id"]={
@ -971,14 +939,6 @@ local chapter_daily_challenge = {
["id_for_nothing"]="Ug==", ["id_for_nothing"]="Ug==",
["num"]=1, ["num"]=1,
["num_for_nothing"]="Vw==" ["num_for_nothing"]="Vw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=12,
["id_for_nothing"]="Vwo=",
["num"]=10,
["num_for_nothing"]="Vwg="
} }
}, },
["begin_buff_id"]={ ["begin_buff_id"]={
@ -1200,14 +1160,6 @@ local chapter_daily_challenge = {
["id_for_nothing"]="Ug==", ["id_for_nothing"]="Ug==",
["num"]=1, ["num"]=1,
["num_for_nothing"]="Vw==" ["num_for_nothing"]="Vw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=12,
["id_for_nothing"]="Vwo=",
["num"]=10,
["num_for_nothing"]="Vwg="
} }
}, },
["begin_buff_id"]={ ["begin_buff_id"]={
@ -1429,701 +1381,6 @@ local chapter_daily_challenge = {
["id_for_nothing"]="Ug==", ["id_for_nothing"]="Ug==",
["num"]=1, ["num"]=1,
["num_for_nothing"]="Vw==" ["num_for_nothing"]="Vw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=12,
["id_for_nothing"]="Vwo=",
["num"]=10,
["num_for_nothing"]="Vwg="
}
},
["begin_buff_id"]={
{
1,
8
},
{
1,
9
},
{
1,
10
},
{
1,
11
},
{
1,
12
},
{
1,
13
},
{
2,
8
},
{
2,
9
},
{
2,
10
},
{
2,
11
},
{
2,
12
},
{
2,
13
},
{
3,
8
},
{
3,
9
},
{
3,
10
},
{
3,
11
},
{
3,
12
},
{
3,
13
},
{
4,
8
},
{
4,
9
},
{
4,
10
},
{
4,
11
},
{
4,
12
},
{
4,
13
},
{
5,
8
},
{
5,
9
},
{
5,
10
},
{
5,
11
},
{
5,
12
},
{
5,
13
},
{
6,
8
},
{
6,
9
},
{
6,
10
},
{
6,
12
},
{
6,
13
},
{
7,
8
},
{
7,
9
},
{
7,
10
},
{
7,
12
},
{
7,
13
}
}
},
[8]={
["scene"]="bg_27",
["block_icon"]="battle_hinder_27",
["chess_board"]="chessboard_1",
["chapter_board_daily_challenge"]={
29,
30,
31,
32
},
["monster"]={
14102,
14202,
14302,
14402,
14502,
14602,
14702,
14802,
14902,
15002,
15102,
15202,
15302,
15402,
15502,
15602,
15702,
15802,
15902,
16002
},
["wave_reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=80,
["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=7,
["id_for_nothing"]="UQ==",
["num"]=5,
["num_for_nothing"]="Uw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=4,
["id_for_nothing"]="Ug==",
["num"]=1,
["num_for_nothing"]="Vw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=12,
["id_for_nothing"]="Vwo=",
["num"]=10,
["num_for_nothing"]="Vwg="
}
},
["begin_buff_id"]={
{
1,
8
},
{
1,
9
},
{
1,
10
},
{
1,
11
},
{
1,
12
},
{
1,
13
},
{
2,
8
},
{
2,
9
},
{
2,
10
},
{
2,
11
},
{
2,
12
},
{
2,
13
},
{
3,
8
},
{
3,
9
},
{
3,
10
},
{
3,
11
},
{
3,
12
},
{
3,
13
},
{
4,
8
},
{
4,
9
},
{
4,
10
},
{
4,
11
},
{
4,
12
},
{
4,
13
},
{
5,
8
},
{
5,
9
},
{
5,
10
},
{
5,
11
},
{
5,
12
},
{
5,
13
},
{
6,
8
},
{
6,
9
},
{
6,
10
},
{
6,
12
},
{
6,
13
},
{
7,
8
},
{
7,
9
},
{
7,
10
},
{
7,
12
},
{
7,
13
}
}
},
[9]={
["scene"]="bg_30",
["block_icon"]="battle_hinder_29",
["chess_board"]="chessboard_3",
["chapter_board_daily_challenge"]={
33,
34,
35,
36
},
["monster"]={
16102,
16202,
16302,
16402,
16502,
16602,
16702,
16802,
16902,
17002,
17102,
17202,
17302,
17402,
17502,
17602,
17702,
17802,
17902,
18002
},
["wave_reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=80,
["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=7,
["id_for_nothing"]="UQ==",
["num"]=5,
["num_for_nothing"]="Uw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=4,
["id_for_nothing"]="Ug==",
["num"]=1,
["num_for_nothing"]="Vw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=12,
["id_for_nothing"]="Vwo=",
["num"]=10,
["num_for_nothing"]="Vwg="
}
},
["begin_buff_id"]={
{
1,
8
},
{
1,
9
},
{
1,
10
},
{
1,
11
},
{
1,
12
},
{
1,
13
},
{
2,
8
},
{
2,
9
},
{
2,
10
},
{
2,
11
},
{
2,
12
},
{
2,
13
},
{
3,
8
},
{
3,
9
},
{
3,
10
},
{
3,
11
},
{
3,
12
},
{
3,
13
},
{
4,
8
},
{
4,
9
},
{
4,
10
},
{
4,
11
},
{
4,
12
},
{
4,
13
},
{
5,
8
},
{
5,
9
},
{
5,
10
},
{
5,
11
},
{
5,
12
},
{
5,
13
},
{
6,
8
},
{
6,
9
},
{
6,
10
},
{
6,
12
},
{
6,
13
},
{
7,
8
},
{
7,
9
},
{
7,
10
},
{
7,
12
},
{
7,
13
}
}
},
[10]={
["scene"]="bg_35",
["block_icon"]="battle_hinder_35",
["chess_board"]="chessboard_2",
["chapter_board_daily_challenge"]={
37,
38,
39,
40
},
["monster"]={
18102,
18202,
18302,
18402,
18502,
18602,
18702,
18802,
18902,
19002,
19102,
19202,
19302,
19402,
19502,
19602,
19702,
19802,
19902,
20002
},
["wave_reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=80,
["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=7,
["id_for_nothing"]="UQ==",
["num"]=5,
["num_for_nothing"]="Uw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=4,
["id_for_nothing"]="Ug==",
["num"]=1,
["num_for_nothing"]="Vw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=12,
["id_for_nothing"]="Vwo=",
["num"]=10,
["num_for_nothing"]="Vwg="
} }
}, },
["begin_buff_id"]={ ["begin_buff_id"]={
@ -2291,6 +1548,6 @@ local chapter_daily_challenge = {
} }
} }
local config = { local config = {
data=chapter_daily_challenge,count=10 data=chapter_daily_challenge,count=7
} }
return config return config

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -1,226 +0,0 @@
local chapter_dungeon_armor_reward = {
[1]={
["star"]=9,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=5000,
["num_for_nothing"]="UwhcAw=="
}
},
[2]={
["star"]=18,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=38,
["id_for_nothing"]="VQA=",
["num"]=10,
["num_for_nothing"]="Vwg="
}
},
[3]={
["star"]=27,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=20,
["num_for_nothing"]="VAg="
}
},
[4]={
["star"]=36,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=39,
["id_for_nothing"]="VQE=",
["num"]=10,
["num_for_nothing"]="Vwg="
}
},
[5]={
["star"]=45,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=6,
["id_for_nothing"]="UA==",
["num"]=1,
["num_for_nothing"]="Vw=="
}
},
[6]={
["star"]=54,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=40,
["id_for_nothing"]="Ugg=",
["num"]=10,
["num_for_nothing"]="Vwg="
}
},
[7]={
["star"]=63,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
["num"]=10000,
["num_for_nothing"]="VwhcA2U="
}
},
[8]={
["star"]=72,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=41,
["id_for_nothing"]="Ugk=",
["num"]=10,
["num_for_nothing"]="Vwg="
}
},
[9]={
["star"]=81,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=25,
["num_for_nothing"]="VA0="
}
},
[10]={
["star"]=90,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=41,
["id_for_nothing"]="Ugk=",
["num"]=15,
["num_for_nothing"]="Vw0="
}
},
[11]={
["star"]=99,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=6,
["id_for_nothing"]="UA==",
["num"]=1,
["num_for_nothing"]="Vw=="
}
},
[12]={
["star"]=108,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=42,
["id_for_nothing"]="Ugo=",
["num"]=10,
["num_for_nothing"]="Vwg="
}
},
[13]={
["star"]=117,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=30,
["num_for_nothing"]="VQg="
}
},
[14]={
["star"]=126,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=42,
["id_for_nothing"]="Ugo=",
["num"]=20,
["num_for_nothing"]="VAg="
}
},
[15]={
["star"]=135,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=6,
["id_for_nothing"]="UA==",
["num"]=1,
["num_for_nothing"]="Vw=="
}
},
[16]={
["star"]=144,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=43,
["id_for_nothing"]="Ugs=",
["num"]=10,
["num_for_nothing"]="Vwg="
}
},
[17]={
["star"]=153,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
["num"]=40,
["num_for_nothing"]="Ugg="
}
},
[18]={
["star"]=162,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=43,
["id_for_nothing"]="Ugs=",
["num"]=15,
["num_for_nothing"]="Vw0="
}
},
[19]={
["star"]=171,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=6,
["id_for_nothing"]="UA==",
["num"]=1,
["num_for_nothing"]="Vw=="
}
},
[20]={
["star"]=180,
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=43,
["id_for_nothing"]="Ugs=",
["num"]=20,
["num_for_nothing"]="VAg="
}
}
}
local config = {
data=chapter_dungeon_armor_reward,count=20
}
return config

View File

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

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -14,16 +14,16 @@ local chapter_dungeon_gold = {
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=2000, ["num"]=800,
["num_for_nothing"]="VAhcAw==" ["num_for_nothing"]="Xghc"
}, },
["first_pass_reward"]={ ["first_pass_reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=4000, ["num"]=2000,
["num_for_nothing"]="UghcAw==" ["num_for_nothing"]="VAhcAw=="
}, },
["wave_limit"]=30, ["wave_limit"]=30,
["effect"]={ ["effect"]={
@ -33,14 +33,6 @@ local chapter_dungeon_gold = {
["ratio"]=10000, ["ratio"]=10000,
["round"]=999 ["round"]=999
} }
},
["exp_reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=12,
["id_for_nothing"]="Vwo=",
["num"]=100,
["num_for_nothing"]="Vwhc"
} }
}, },
[2]={ [2]={
@ -58,16 +50,16 @@ local chapter_dungeon_gold = {
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=3000, ["num"]=1000,
["num_for_nothing"]="VQhcAw==" ["num_for_nothing"]="VwhcAw=="
}, },
["first_pass_reward"]={ ["first_pass_reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=6000, ["num"]=2500,
["num_for_nothing"]="UAhcAw==" ["num_for_nothing"]="VA1cAw=="
}, },
["wave_limit"]=30, ["wave_limit"]=30,
["effect"]={ ["effect"]={
@ -77,14 +69,6 @@ local chapter_dungeon_gold = {
["ratio"]=10000, ["ratio"]=10000,
["round"]=999 ["round"]=999
} }
},
["exp_reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=12,
["id_for_nothing"]="Vwo=",
["num"]=100,
["num_for_nothing"]="Vwhc"
} }
}, },
[3]={ [3]={
@ -102,16 +86,16 @@ local chapter_dungeon_gold = {
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=4000, ["num"]=1200,
["num_for_nothing"]="UghcAw==" ["num_for_nothing"]="VwpcAw=="
}, },
["first_pass_reward"]={ ["first_pass_reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=8000, ["num"]=3000,
["num_for_nothing"]="XghcAw==" ["num_for_nothing"]="VQhcAw=="
}, },
["wave_limit"]=30, ["wave_limit"]=30,
["effect"]={ ["effect"]={
@ -121,14 +105,6 @@ local chapter_dungeon_gold = {
["ratio"]=10000, ["ratio"]=10000,
["round"]=999 ["round"]=999
} }
},
["exp_reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=12,
["id_for_nothing"]="Vwo=",
["num"]=100,
["num_for_nothing"]="Vwhc"
} }
}, },
[4]={ [4]={
@ -146,16 +122,16 @@ local chapter_dungeon_gold = {
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=4500, ["num"]=1400,
["num_for_nothing"]="Ug1cAw==" ["num_for_nothing"]="VwxcAw=="
}, },
["first_pass_reward"]={ ["first_pass_reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=9000, ["num"]=3500,
["num_for_nothing"]="XwhcAw==" ["num_for_nothing"]="VQ1cAw=="
}, },
["wave_limit"]=30, ["wave_limit"]=30,
["effect"]={ ["effect"]={
@ -165,14 +141,6 @@ local chapter_dungeon_gold = {
["ratio"]=10000, ["ratio"]=10000,
["round"]=999 ["round"]=999
} }
},
["exp_reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=12,
["id_for_nothing"]="Vwo=",
["num"]=100,
["num_for_nothing"]="Vwhc"
} }
}, },
[5]={ [5]={
@ -190,16 +158,16 @@ local chapter_dungeon_gold = {
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=5000, ["num"]=1600,
["num_for_nothing"]="UwhcAw==" ["num_for_nothing"]="Vw5cAw=="
}, },
["first_pass_reward"]={ ["first_pass_reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=10000, ["num"]=4000,
["num_for_nothing"]="VwhcA2U=" ["num_for_nothing"]="UghcAw=="
}, },
["wave_limit"]=30, ["wave_limit"]=30,
["effect"]={ ["effect"]={
@ -209,14 +177,6 @@ local chapter_dungeon_gold = {
["ratio"]=10000, ["ratio"]=10000,
["round"]=999 ["round"]=999
} }
},
["exp_reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=12,
["id_for_nothing"]="Vwo=",
["num"]=100,
["num_for_nothing"]="Vwhc"
} }
}, },
[6]={ [6]={
@ -234,16 +194,16 @@ local chapter_dungeon_gold = {
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=5500, ["num"]=1800,
["num_for_nothing"]="Uw1cAw==" ["num_for_nothing"]="VwBcAw=="
}, },
["first_pass_reward"]={ ["first_pass_reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=11000, ["num"]=4500,
["num_for_nothing"]="VwlcA2U=" ["num_for_nothing"]="Ug1cAw=="
}, },
["wave_limit"]=30, ["wave_limit"]=30,
["effect"]={ ["effect"]={
@ -253,14 +213,6 @@ local chapter_dungeon_gold = {
["ratio"]=10000, ["ratio"]=10000,
["round"]=999 ["round"]=999
} }
},
["exp_reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=12,
["id_for_nothing"]="Vwo=",
["num"]=100,
["num_for_nothing"]="Vwhc"
} }
}, },
[7]={ [7]={
@ -278,16 +230,16 @@ local chapter_dungeon_gold = {
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=6000, ["num"]=2000,
["num_for_nothing"]="UAhcAw==" ["num_for_nothing"]="VAhcAw=="
}, },
["first_pass_reward"]={ ["first_pass_reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=12000, ["num"]=5000,
["num_for_nothing"]="VwpcA2U=" ["num_for_nothing"]="UwhcAw=="
}, },
["wave_limit"]=30, ["wave_limit"]=30,
["effect"]={ ["effect"]={
@ -297,14 +249,6 @@ local chapter_dungeon_gold = {
["ratio"]=10000, ["ratio"]=10000,
["round"]=999 ["round"]=999
} }
},
["exp_reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=12,
["id_for_nothing"]="Vwo=",
["num"]=100,
["num_for_nothing"]="Vwhc"
} }
}, },
[8]={ [8]={
@ -322,16 +266,16 @@ local chapter_dungeon_gold = {
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=6500, ["num"]=2200,
["num_for_nothing"]="UA1cAw==" ["num_for_nothing"]="VApcAw=="
}, },
["first_pass_reward"]={ ["first_pass_reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=13000, ["num"]=5500,
["num_for_nothing"]="VwtcA2U=" ["num_for_nothing"]="Uw1cAw=="
}, },
["wave_limit"]=30, ["wave_limit"]=30,
["effect"]={ ["effect"]={
@ -341,14 +285,6 @@ local chapter_dungeon_gold = {
["ratio"]=10000, ["ratio"]=10000,
["round"]=999 ["round"]=999
} }
},
["exp_reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=12,
["id_for_nothing"]="Vwo=",
["num"]=100,
["num_for_nothing"]="Vwhc"
} }
}, },
[9]={ [9]={
@ -366,16 +302,16 @@ local chapter_dungeon_gold = {
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=6800, ["num"]=2400,
["num_for_nothing"]="UABcAw==" ["num_for_nothing"]="VAxcAw=="
}, },
["first_pass_reward"]={ ["first_pass_reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=13600, ["num"]=6000,
["num_for_nothing"]="VwtaA2U=" ["num_for_nothing"]="UAhcAw=="
}, },
["wave_limit"]=30, ["wave_limit"]=30,
["effect"]={ ["effect"]={
@ -385,14 +321,6 @@ local chapter_dungeon_gold = {
["ratio"]=10000, ["ratio"]=10000,
["round"]=999 ["round"]=999
} }
},
["exp_reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=12,
["id_for_nothing"]="Vwo=",
["num"]=100,
["num_for_nothing"]="Vwhc"
} }
}, },
[10]={ [10]={
@ -410,16 +338,16 @@ local chapter_dungeon_gold = {
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=7200, ["num"]=2600,
["num_for_nothing"]="UQpcAw==" ["num_for_nothing"]="VA5cAw=="
}, },
["first_pass_reward"]={ ["first_pass_reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=14400, ["num"]=6500,
["num_for_nothing"]="VwxYA2U=" ["num_for_nothing"]="UA1cAw=="
}, },
["wave_limit"]=30, ["wave_limit"]=30,
["effect"]={ ["effect"]={
@ -429,14 +357,6 @@ local chapter_dungeon_gold = {
["ratio"]=10000, ["ratio"]=10000,
["round"]=999 ["round"]=999
} }
},
["exp_reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=12,
["id_for_nothing"]="Vwo=",
["num"]=100,
["num_for_nothing"]="Vwhc"
} }
}, },
[11]={ [11]={
@ -454,16 +374,16 @@ local chapter_dungeon_gold = {
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=7500, ["num"]=2800,
["num_for_nothing"]="UQ1cAw==" ["num_for_nothing"]="VABcAw=="
}, },
["first_pass_reward"]={ ["first_pass_reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=15000, ["num"]=7000,
["num_for_nothing"]="Vw1cA2U=" ["num_for_nothing"]="UQhcAw=="
}, },
["wave_limit"]=30, ["wave_limit"]=30,
["effect"]={ ["effect"]={
@ -473,14 +393,6 @@ local chapter_dungeon_gold = {
["ratio"]=10000, ["ratio"]=10000,
["round"]=999 ["round"]=999
} }
},
["exp_reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=12,
["id_for_nothing"]="Vwo=",
["num"]=100,
["num_for_nothing"]="Vwhc"
} }
}, },
[12]={ [12]={
@ -498,16 +410,16 @@ local chapter_dungeon_gold = {
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=7800, ["num"]=3000,
["num_for_nothing"]="UQBcAw==" ["num_for_nothing"]="VQhcAw=="
}, },
["first_pass_reward"]={ ["first_pass_reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=15600, ["num"]=7500,
["num_for_nothing"]="Vw1aA2U=" ["num_for_nothing"]="UQ1cAw=="
}, },
["wave_limit"]=30, ["wave_limit"]=30,
["effect"]={ ["effect"]={
@ -517,14 +429,6 @@ local chapter_dungeon_gold = {
["ratio"]=10000, ["ratio"]=10000,
["round"]=999 ["round"]=999
} }
},
["exp_reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=12,
["id_for_nothing"]="Vwo=",
["num"]=100,
["num_for_nothing"]="Vwhc"
} }
}, },
[13]={ [13]={
@ -542,16 +446,16 @@ local chapter_dungeon_gold = {
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=8200, ["num"]=3200,
["num_for_nothing"]="XgpcAw==" ["num_for_nothing"]="VQpcAw=="
}, },
["first_pass_reward"]={ ["first_pass_reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=16400, ["num"]=8000,
["num_for_nothing"]="Vw5YA2U=" ["num_for_nothing"]="XghcAw=="
}, },
["wave_limit"]=30, ["wave_limit"]=30,
["effect"]={ ["effect"]={
@ -561,14 +465,6 @@ local chapter_dungeon_gold = {
["ratio"]=10000, ["ratio"]=10000,
["round"]=999 ["round"]=999
} }
},
["exp_reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=12,
["id_for_nothing"]="Vwo=",
["num"]=100,
["num_for_nothing"]="Vwhc"
} }
}, },
[14]={ [14]={
@ -586,16 +482,16 @@ local chapter_dungeon_gold = {
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=8500, ["num"]=3400,
["num_for_nothing"]="Xg1cAw==" ["num_for_nothing"]="VQxcAw=="
}, },
["first_pass_reward"]={ ["first_pass_reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=17000, ["num"]=8500,
["num_for_nothing"]="Vw9cA2U=" ["num_for_nothing"]="Xg1cAw=="
}, },
["wave_limit"]=30, ["wave_limit"]=30,
["effect"]={ ["effect"]={
@ -605,14 +501,6 @@ local chapter_dungeon_gold = {
["ratio"]=10000, ["ratio"]=10000,
["round"]=999 ["round"]=999
} }
},
["exp_reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=12,
["id_for_nothing"]="Vwo=",
["num"]=100,
["num_for_nothing"]="Vwhc"
} }
}, },
[15]={ [15]={
@ -630,16 +518,16 @@ local chapter_dungeon_gold = {
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=8800, ["num"]=3600,
["num_for_nothing"]="XgBcAw==" ["num_for_nothing"]="VQ5cAw=="
}, },
["first_pass_reward"]={ ["first_pass_reward"]={
["type"]=1, ["type"]=1,
["type_for_nothing"]="Vw==", ["type_for_nothing"]="Vw==",
["id"]=1, ["id"]=1,
["id_for_nothing"]="Vw==", ["id_for_nothing"]="Vw==",
["num"]=17600, ["num"]=9000,
["num_for_nothing"]="Vw9aA2U=" ["num_for_nothing"]="XwhcAw=="
}, },
["wave_limit"]=30, ["wave_limit"]=30,
["effect"]={ ["effect"]={
@ -649,14 +537,6 @@ local chapter_dungeon_gold = {
["ratio"]=10000, ["ratio"]=10000,
["round"]=999 ["round"]=999
} }
},
["exp_reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=12,
["id_for_nothing"]="Vwo=",
["num"]=100,
["num_for_nothing"]="Vwhc"
} }
} }
} }

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