This commit is contained in:
xiekaidong 2023-04-06 10:38:04 +08:00
parent e30ad1dbd0
commit ccdd6a778b
721 changed files with 2604 additions and 1104161 deletions

8
lua.meta Normal file
View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 31d149c0560fbec49ac9b427a08ea9f1
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -598,26 +598,6 @@ function BIReport:postGameLoginFinish()
end
args.my_equip = args.my_equip or ""
local legacies = DataManager.BagData.LegacyData:getAllLegacies()
for k,v in pairs(legacies) do
if not args.my_legacy then
args.my_legacy = v:getId() .. ":" .. v:getLv() .. ":" .. v:getCount()
else
args.my_legacy = args.my_legacy .. "|" .. v:getId() .. ":" .. v:getLv() .. ":" .. v:getCount()
end
end
args.my_legacy = args.my_legacy or ""
local runes = DataManager.BagData.RuneData:getAllRunes()
for k,v in pairs(runes) do
if not args.my_rune then
args.my_rune = v:getId() .. ":" .. v:getLv()
else
args.my_rune = args.my_rune .. "|" .. v:getId() .. ":" .. v:getLv()
end
end
args.my_rune = args.my_rune or ""
for i = 1, 4 do
local info = DataManager.DungeonData:getPassedMaxLevel(i)
if info then

View File

@ -6,37 +6,9 @@ local DataManager = {
function DataManager:init()
self.cdCallBack = {}
self._cacheManager = {}
self:initManager("GameSettingData", "app/userdata/game_setting/game_setting_data")
-- self:initManager("BagData", "app/userdata/bag/bag_data")
-- self:initManager("TutorialData", "app/userdata/tutorial/tutorial_data")
self:initManager("BattleData", "app/userdata/battle/battle_data")
self:initManager("PlayerData", "app/userdata/player/player_data")
self:initManager("BagData", "app/userdata/bag/bag_data")
self:initManager("SummonData", "app/userdata/summon/summon_data")
self:initManager("MallActData", "app/userdata/shop/mall_act_data")
self:initManager("MallDailyData", "app/userdata/shop/mall_daily_data")
self:initManager("MallRechargeData", "app/userdata/shop/mall_recharge_data")
self:initManager("HeroData", "app/userdata/hero/hero_data")
self:initManager("ShopData","app/userdata/shop/shop_data")
self:initManager("MasteryData", "app/userdata/mastery/mastery_data")
self:initManager("FightInfoData","app/userdata/fight_info/fight_info_data")
self:initManager("MiningData","app/userdata/mining/mining_data")
self:initManager("ChapterData", "app/userdata/chapter/chapter_data")
self:initManager("ResearchData", "app/userdata/research/research_data")
self:initManager("DungeonData", "app/userdata/dungeon/dungeon_data")
self:initManager("ArenaData", "app/userdata/arena/arena_data")
self:initManager("IdleData", "app/userdata/idle/idle_data")
self:initManager("DailyTaskData", "app/userdata/activity/daily_task/daily_task_data")
self:initManager("SevenDayData", "app/userdata/activity/seven_day/seven_day_data")
self:initManager("TutorialTaskData", "app/userdata/tutorial/tutorial_task_data")
self:initManager("TutorialData", "app/userdata/tutorial/tutorial_data")
self:initManager("BlessingData", "app/userdata/blessing/blessing_data")
self:initManager("AccelerationData", "app/userdata/acceleration/acceleration_data")
self:initManager("BountyData", "app/userdata/bounty/bounty_data")
self:initManager("CollectionData", "app/userdata/collection/collection_data")
self:initManager("MailData", "app/userdata/mail/mail_data")
self:initManager("FundChapterData", "app/userdata/fund/fund_chapter_data")
if EDITOR_MODE then
self:initDataForLazy()
end
end
function DataManager:initManager(name, path)
@ -77,8 +49,6 @@ function DataManager:checkDataBind()
if name == "BagData" then
changeBindFunc(baseData.ItemData, self[name].ItemData)
changeBindFunc(baseData.EquipData, self[name].EquipData)
changeBindFunc(baseData.LegacyData, self[name].LegacyData)
changeBindFunc(baseData.RuneData, self[name].RuneData)
else
changeBindFunc(baseData, self[name])
end
@ -93,17 +63,9 @@ function DataManager:clear()
self.cacheTimer = nil
end
self.cdCallBack = {}
-- self.BagData:clear()
-- self.TutorialData:clear()
self.BattleData:clear()
self.MasteryData:clear()
self.DailyTaskData:clear()
self.SevenDayData:clear()
self.TutorialTaskData:clear()
self.TutorialData:clear()
self.AccelerationData:clear()
self.BountyData:clear()
self.MailData:clear()
self.PlayerData:clear()
ModuleManager.TaskManager:clear()
end
@ -125,37 +87,7 @@ function DataManager:initWithServerData(data)
{cfg_id = 60001, lv = 4, curHid = 60001}
}
self.PlayerData:init(data.basic_info)
self.BagData:init(data.bag)
self.ResearchData:init(data.mine)
self.FightInfoData:init(data.fight_info)
self.ShopData:init(data.mall)
self.SummonData:init(data.summon)
self.MasteryData:initData(data.mastery)
self.MiningData:init(data.mine)
self.ChapterData:init(data.chapter)
self.BattleData:init()
self.DungeonData:init(data.dungeon_info)
self.ArenaData:init(data.arena_info)
self.DailyTaskData:init(data.task_daily, true)
self.IdleData:init(data.idle)
self.SevenDayData:init(data.seven_day, true)
self.TutorialTaskData:init(data.task_tutor, true)
self.BlessingData:init(data.blessing)
self.CollectionData:init(data.collection)
-- 属性计算 依赖部分数据初始化
self.HeroData:init(data.heros)
self.TutorialData:init(data.guide)
self.AccelerationData:init(data.acceleration)
self.BountyData:init(data.battle_pass, true)
self.FundChapterData:init(data.fund)
-- self.MailData:init(data.mail_info)
-- self._cacheManager["HeroData"]:init(data.items)
--self.loginCount = data.loginCount or 1
--self.createPlayerTime = GFunc.formatTimeStep(data.infoData.registerTime or Time:getServerTime())
----********** init start *******************
--self.crossDayTS = Time:getOverOfServerToday()
-- self.BagData:init(data.bag)
self:scheduleGlobal()
self:checkDataBind()
@ -338,36 +270,6 @@ function DataManager:needDealGm()
return self:getSyncDataCount() >= 2
end
---方便检索,仅编辑器模式使用
function DataManager:initDataForLazy()
---@type BagData
self.BagData = self:getManager("BagData")
---@type PlayerData
self.PlayerData = self:getManager("PlayerData")
---@type SummonData
self.SummonData = self:getManager("SummonData")
---@type MallActData
self.MallActData = self:getManager("MallActData")
---@type MallDailyData
self.MallDailyData = self:getManager("MallDailyData")
---@type MallRechargeData
self.MallRechargeData = self:getManager("MallRechargeData")
---@type ShopData
self.ShopData = self:getManager("ShopData")
---@type MiningData
self.MiningData = self:getManager("MiningData")
---@type ResearchData
self.ResearchData = self:getManager("ResearchData")
---@type DungeonData
self.DungeonData = self:getManager("DungeonData")
---@type ChapterData
self.ChapterData = self:getManager("ChapterData")
---@type ArenaData
self.ArenaData = self:getManager("ArenaData")
---@type FundChapterData
self.FundChapterData = self:getManager("FundChapterData")
end
function DataManager:getManager(name, path)
if self[name] then
return self[name]

View File

@ -7,8 +7,6 @@ local EventManager = {
}
EventManager.CUSTOM_EVENT = {
-- MAIN_SOCKET_MESSAGE = "MAIN_SOCKET_MESSAGE", -- 游戏主链接所有消息
-- UI_LOADING_PERCENT = "UI_LOADING_PERCENT", -- loading进度
ON_BATTLE_START = "ON_BATTLE_START", -- 战斗开始
BATTLE_OPERATION_FINISH = "BATTLE_OPERATION_FINISH", -- 战斗中操作完毕
BATTLE_OPERATION_START = "BATTLE_OPERATION_START", -- 战斗中当玩家开始操作时
@ -16,109 +14,13 @@ EventManager.CUSTOM_EVENT = {
UI_SHOW_COMPLETE = "UI_SHOW_COMPLETE", -- UI打开完毕
UI_CUSTOM_ANIMATION_COMPLETE = "UI_CUSTOM_ANIMATION_COMPLETE", -- UI自定义动画完毕
UI_CLOSE = "UI_CLOSE", -- UI关闭
-- I18N_CHANGE_LANGUAGE = "I18N_CHANGE_LANGUAGE", -- 切换语言
UPGRADE_EQUIP = "UPGRADE_EQUIP", -- 升级装备
STAGE_TEAM_UP_FORMATION = "STAGE_TEAM_UP_FORMATION", -- 关卡上阵英雄
-- SELL_EQUIP = "SELL_EQUIP", -- 战斗结算界面出售装备
LOGIN_REQ_SUCCESS = "LOGIN_REQ_SUCCESS", -- 登录请求成功,准备进入游戏
HERO_WEAR_EQUIP = "HERO_WEAR_EQUIP", -- 英雄穿上一件装备
GET_MAIN_TASK_REWARD = "GET_MAIN_TASK_REWARD", -- 主线任务奖励领取成功
-- MARKET_HAD_REFRESH = "MARKET_HAD_REFRESH", -- 市集已刷新
-- SHOW_MAIN_TASK_WEAK_FINGER = "SHOW_MAIN_TASK_WEAK_FINGER", -- 显示主线任务的弱引导手指
-- CLOSE_LV_UP_UI_WITHOUT_GOTO = "CLOSE_LV_UP_UI_WITHOUT_GOTO", -- 正常关闭升级界面,没有触发前往
-- BIND_SDK_SUCCESS = "BIND_SDK_SUCCESS", -- 绑定SDK成功
ON_TUTORIAL_BATTLE_TEAM_ENTER = "ON_TUTORIAL_BATTLE_TEAM_ENTER", -- 假战斗引导专用,当队伍入场完后
ON_BATTLE_INIT_OVER = "ON_BATTLE_INIT_OVER", -- 战斗初始化完成
-- EXPEDITION_SHOW_DOUBLE_CHECK_UI = "EXPEDITION_SHOW_DOUBLE_CHECK_UI", -- 远征展示二次确认框
-- EXPEDITION_RESET_HEAD_POS = "EXPEDITION_RESET_HEAD_POS", -- 远征重置头像位置
-- EXPEDITION_SHOW_BUFF_VFX = "EXPEDITION_SHOW_BUFF_VFX", -- 远征显示buff特效动画
MAIN_UI_CHECK_POP = "MAIN_UI_CHECK_POP", -- 主界面检查弹出界面
-- CHANGE_WELCOME_COMP = "CHANGE_WELCOME_COMP", -- 切换新手活动comp
-- 公会成员已达上限
-- GUILD_MEMBER_MAX = "GUILD_MEMBER_MAX", -- 公会成员已达上限
-- 装备上锁
-- EQUIP_LOCK = "EQUIP_LOCK", -- 装备上锁
-- 割草
CHANGE_MAIN_CITY_PAGE = "CHANGE_MAIN_CITY_PAGE", -- 切换主城页签
-- CHANGE_MAIN_CITY_PAGE_VIT = "CHANGE_MAIN_CITY_PAGE_VIT", -- 切换主城页签
-- 英雄降临
-- CHANGE_NEW_HERO_COMP = "CHANGE_NEW_HERO_COMP", -- 切换英雄活动COMP
-- 转盘
-- CHANGE_TURNTABLE_COMP = "CHANGE_TURNTABLE_COMP", -- 切换转盘活动COMP
-- 守护活动
-- CHANGE_GUARD_COMP = "CHANGE_GUARD_COMP", -- 切换守护活动COMP
-- EQUIP_LV_UP = "EQUIP_LV_UP", -- 装备升级成功
-- EQUIP_RESOLVE = "EQUIP_RESOLVE", -- 装备重置成功
-- EQUIP_MERGE = "EQUIP_MERGE", -- 装备合成成功
-- EQUIP_QUICK_MERGE = "EQUIP_QUICK_MERGE", -- 装备快速合成成功
-- EQUIP_REBACK = "EQUIP_REBACK", -- 装备回退成功
-- EQUIP_REFINE = "EQUIP_REFINE", -- 装备精炼成功
-- HERO_UNLOCK = "HERO_UNLOCK", -- 英雄解锁
-- HERO_STAR_UP = "HERO_STAR_UP", -- 英雄升星成功
-- HERO_LV_UP = "HERO_LV_UP", -- 英雄升级成功
-- TALENT_UP = "TALENT_UP", -- 天赋升级
-- BATTLE_FINISH = "BATTLE_FINISH", -- 战斗结束
-- CHAPTER_BOX_REWARD = "CHAPTER_BOX_REWARD", -- 领取宝箱奖励
-- UPDATE_DATA = "UPDATE_DATA", -- 更新数据
SUMMON_FINISH = "SUMMON_FINISH", -- 抽卡结束
-- REVIVE_SUCC = "REVIVE_SUCC", -- 战斗复活成功
-- CHANGE_ACTIVITY_NORMAL_COMP = "CHANGE_ACTIVITY_NORMAL_COMP", -- 切换活动COMP
-- NAME_REPEAT = "NAME_REPEAT", -- 重名
-- BUY_MONTH_CARD = "BUY_MONTH_CARD", -- 购买月卡
-- PLAY_FLY_ANI = "PLAY_FLY_ANI",
-- NEWSUMMON_OVER = "NEWSUMMON_OVER",
-- WISHSUMMON_OVER = "WISHSUMMON_OVER",
-- JEWELRY_MERGE_OVER = "JEWELRY_MERGE_OVER",
-- JEWELRY_AUTO_MERGE_OVER = "JEWELRY_AUTO_MERGE_OVER",
-- CDKEY_FINISH = "CDKEY_FINISH",
-- BLACK_SUMMON_OVER = "BLACK_SUMMON_OVER",
-- ON_CLAIMED_ASK_REWARD = "ON_CLAIMED_ASK_REWARD",
-- ON_CLAIMED_GUESS_REWARD = "ON_CLAIMED_GUESS_REWARD",
-- ON_ASKING_CONFIRM = "ON_ASKING_CONFIRM",
-- PLAY_DRAGON_BUILD_ANIMATION = "PLAY_DRAGON_BUILD_ANIMATION", -- 邪龙动画
-- SPRING_DUEL_CROSS_DAY = "SPRING_DUEL_CROSS_DAY",
-- SPRING_DUEL_REQUEST_RANK_LIST = "SPRING_DUEL_REQUEST_RANK_LIST",
-- ON_VIT_CHANGED = "ON_VIT_CHANGED", -- 体力变更时
-- B5新增
BATTLE_HERO_USE_ACTIVE_SKILL = "BATTLE_HERO_USE_ACTIVE_SKILL",
BATTLE_HERO_REFRESH_SKILL = "BATTLE_HERO_REFRESH_SKILL",
BATTLE_CHAPTER_CHANGE = "BATTLE_CHAPTER_CHANGE",
BATTLE_SHOW_CHAPTER_BLACK_UI = "BATTLE_SHOW_CHAPTER_BLACK_UI",
BATTLE_CLOSE_CHAPTER_BLACK_UI = "BATTLE_CLOSE_CHAPTER_BLACK_UI",
BATTLE_SHOW_TOAST = "BATTLE_SHOW_TOAST",
BATTLE_BLACK_UI_CLOSE = "BATTLE_BLACK_UI_CLOSE",
BATTLE_READY_ENTER_DUNGEON = "BATTLE_READY_ENTER_DUNGEON",
BATTLE_REVIVE = "BATTLE_REVIVE",
BATTLE_REVIVE_RSP = "BATTLE_REVIVE_RSP",
BATTLE_ADD_PASSIVE_SKILL = "BATTLE_ADD_PASSIVE_SKILL",
BATTLE_CHANGE_PAS_SKILL = "BATTLE_CHANGE_PAS_SKILL",
PLAYER_RENAME = "PLAYER_RENAME",
GET_ANY_KEY_DOWN = "GET_ANY_KEY_DOWN",
NAME_REPEAT = "NAME_REPEAT",
TRAIN_REBORN = "TRAIN_REBORN", -- 重生
TRAIN_PASS_UP = "TRAIN_PASS_UP", -- 速通
CLOSE_BATTLE_FAIL = "CLOSE_BATTLE_FAIL",
SIGN_IN_SUCCESS = "SIGN_IN_SUCCESS", -- 签到成功
CURRENCY_BAR_FLY = "CURRENCY_BAR_FLY",
CURRENCY_BAR_FLY_OVER = "CURRENCY_BAR_FLY_OVER",
-- 挂机广告
IDLE_DROP_AD_GET = "IDLE_DROP_AD_GET",
ATK_TRAIN_LEVEL_UP = "ATK_TRAIN_LEVEL_UP",
-- 装备变化
WEAR_WEAPON_CHANGE = "WEAR_WEAPON_CHANGE",
-- 速通结束
QUICK_PASS_FINISH = "QUICK_PASS_FINISH",
TUTORIAL_TASK_REWARD = "TUTORIAL_TASK_REWARD",
ATK_TRAIN_TUTORIAL_OVER = "ATK_TRAIN_TUTORIAL_OVER",
TUTORIAL_TASK_STOP = "TUTORIAL_TASK_STOP",
-- BORAD_TOUCH_BEGIN = "BORAD_TOUCH_BEGIN",
-- BORAD_TOUCH_OVER = "BORAD_TOUCH_OVER"
}
-- 此方法不能直接在外部调用请使用例如BaseUIBaseModule等封装好的接口

View File

@ -2,45 +2,15 @@ local ModuleManager = {}
local MODULE_PATHS = {
LoginManager = "app/module/login/login_manager",
BattleManager = "app/module/battle/battle_manager",
TipsManager = "app/module/tips/tips_manager",
LoadingManager = "app/module/loading/loading_manager",
DevToolManager = "app/module/gm/dev_tool_manager",
MaincityManager = "app/module/maincity/maincity_manager",
SettingManager = "app/module/setting/setting_manager",
-- 引导
TutorialManager = "app/module/tutorial/tutorial_manager",
ToastManager = "app/ui/common/toast",
PlayerManager = "app/module/player/player_manager",
SummonManager = "app/module/summon/summon_manager",
-- 英雄
HeroManager = "app/module/hero/hero_manager",
-- 修炼
TrainManager = "app/module/train/train_manager",
-- 商城Manager
MallManager = "app/module/mall/mall_manager",
ItemManager = "app/module/item/item_manager",
MasteryManager = "app/module/mastery/mastery_manager",
MiningManager = "app/module/mining/mining_manager",
-- 章节关卡
ChapterManager = "app/module/chapter/chapter_manager",
-- 挂机
IdleManager = "app/module/idle/idle_manager",
-- 设置
GameSettingManager = "app/module/game_setting/game_setting_manager",
AudioManager = "app/module/game_setting/game_setting_manager",
DungeonManager = "app/module/dungeon/dungeon_manager",
ArenaManager = "app/module/arena_manager/arena_manager",
SignInManager = "app/module/signin/signin_manager",
DailyTaskManager = "app/module/activity/daily_task/daily_task_manager",
SevenDayManager = "app/module/activity/seven_day/seven_day_manager",
TaskManager = "app/module/task/task_manager",
ActivityManager = "app/module/activity/activity_manager",
BlessingManager = "app/module/blessing/blessing_manager",
TutorialTaskManager = "app/module/tutorial/tutorial_task_manager",
BountyManager = "app/module/bounty/bounty_manager",
CollectionManager = "app/module/collection/collection_manager",
MailManager = "app/module/mail/mail_manager",
BattleManager = "app/module/battle/battle_manager",
}
-- 这里的key对应func_open里的id
@ -99,28 +69,7 @@ local MODULE_METATABLE = {
setmetatable(ModuleManager, MODULE_METATABLE)
function ModuleManager:init()
if EDITOR_MODE then
---@type LoginManager
self.LoginManager = self.LoginManager or require("app/module/login/login_manager"):create()
---@type BattleManager
self.BattleManager = self.BattleManager or require("app/module/battle/battle_manager"):create()
---@type TipsManager
self.TipsManager = self.TipsManager or require("app/module/tips/tips_manager"):create()
---@type MaincityManager
self.MaincityManager = self.MaincityManager or require("app/module/maincity/maincity_manager"):create()
---@type SummonManager
self.SummonManager = self.SummonManager or require("app/module/summon/summon_manager"):create()
---@type MallManager
self.MallManager = self.MallManager or require("app/module/mall/mall_manager"):create()
---@type MiningManager
self.MiningManager = self.MiningManager or require("app/module/mining/mining_manager"):create()
---@type DungeonManager
self.DungeonManager = self.DungeonManager or require("app/module/dungeon/dungeon_manager"):create()
---@type ArenaManager
self.ArenaManager = self.ArenaManager or require("app/module/arena_manager/arena_manager"):create()
---@type SignInManager
self.SignInManager = self.SignInManager or require("app/module/signin/signin_manager"):create()
end
end
-- 功能是否开启
@ -130,25 +79,25 @@ function ModuleManager:getIsOpen(key, hideToast)
return true
end
-- 优先判断等级
if cfg.level then
local isOpen = DataManager.PlayerData:getLv() >= cfg.level
if not hideToast and not isOpen then
GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.FUNC_OPEN_LEVEL, cfg.level))
end
return isOpen
elseif cfg.stage then -- 没有填等级字段就判断关卡
local isOpen = DataManager.ChapterData:getHistoryChapterId() >= cfg.stage
if not hideToast and not isOpen then
GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.FUNC_OPEN_STAGE, cfg.stage))
end
return isOpen
elseif cfg.task then -- 判断任务
local isOver = DataManager.TutorialTaskData:getTaskCollect(cfg.task)
if not hideToast and not isOver then
GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.FUNC_OPEN_TASK, cfg.task))
end
return isOver
end
-- if cfg.level then
-- local isOpen = DataManager.PlayerData:getLv() >= cfg.level
-- if not hideToast and not isOpen then
-- GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.FUNC_OPEN_LEVEL, cfg.level))
-- end
-- return isOpen
-- elseif cfg.stage then -- 没有填等级字段就判断关卡
-- local isOpen = DataManager.ChapterData:getHistoryChapterId() >= cfg.stage
-- if not hideToast and not isOpen then
-- GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.FUNC_OPEN_STAGE, cfg.stage))
-- end
-- return isOpen
-- elseif cfg.task then -- 判断任务
-- local isOver = DataManager.TutorialTaskData:getTaskCollect(cfg.task)
-- if not hideToast and not isOver then
-- GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.FUNC_OPEN_TASK, cfg.task))
-- end
-- return isOver
-- end
return true
end

View File

@ -15,39 +15,9 @@ PayManager.PURCHARSE_TYPE_CONFIG = {
}
PayManager.BI_ITEM_GET_TYPE = {
[PayManager.PURCHARSE_TYPE.MALL_ACT] = {
[ModuleManager.MallManager.MALL_ACT_TYPE.MALL_POP_GIFT] = BIReport.ITEM_GET_TYPE.MALL_POP_GIFT,
[ModuleManager.MallManager.MALL_ACT_TYPE.MALL_SKIP_AD_GIFT] = BIReport.ITEM_GET_TYPE.MALL_SKIP_AD_GIFT,
[ModuleManager.MallManager.MALL_ACT_TYPE.MALL_SUBSCRIBE_BLESSING_GIFT] = BIReport.ITEM_GET_TYPE.MALL_SUBSCRIBE_BLESSING_GIFT,
[ModuleManager.MallManager.MALL_ACT_TYPE.MALL_MONTH_CARD] = BIReport.ITEM_GET_TYPE.MALL_MONTH_CARD,
[ModuleManager.MallManager.MALL_ACT_TYPE.MALL_LIMIT_GIFT] = BIReport.ITEM_GET_TYPE.MALL_LIMIT_GIFT,
[ModuleManager.MallManager.MALL_ACT_TYPE.MALL_FIRST_RECHARGE_GIFT] = BIReport.ITEM_GET_TYPE.MALL_FIRST_RECHARGE_GIFT,
[ModuleManager.MallManager.MALL_ACT_TYPE.MALL_CHAPTER_FUND] = BIReport.ITEM_GET_TYPE.MALL_CHAPTER_FUND,
[ModuleManager.MallManager.MALL_ACT_TYPE.MALL_BATTLE_PASS] = BIReport.ITEM_GET_TYPE.MALL_BATTLE_PASS,
},
[PayManager.PURCHARSE_TYPE.MALL_DAILY] = {
[1] = BIReport.ITEM_GET_TYPE.DAILY_GIFT,
[2] = BIReport.ITEM_GET_TYPE.WEEKLY_GIFT,
},
[PayManager.PURCHARSE_TYPE.MALL_TREASURE] = BIReport.ITEM_GET_TYPE.MALL_TREASURE,
}
PayManager.BI_GIFT_TYPE = {
[PayManager.PURCHARSE_TYPE.MALL_ACT] = {
[ModuleManager.MallManager.MALL_ACT_TYPE.MALL_POP_GIFT] = BIReport.GIFT_TYPE.MALL_POP_GIFT,
[ModuleManager.MallManager.MALL_ACT_TYPE.MALL_SKIP_AD_GIFT] = BIReport.GIFT_TYPE.MALL_SKIP_AD_GIFT,
[ModuleManager.MallManager.MALL_ACT_TYPE.MALL_SUBSCRIBE_BLESSING_GIFT] = BIReport.GIFT_TYPE.MALL_SUBSCRIBE_BLESSING_GIFT,
[ModuleManager.MallManager.MALL_ACT_TYPE.MALL_MONTH_CARD] = BIReport.GIFT_TYPE.MALL_MONTH_CARD,
[ModuleManager.MallManager.MALL_ACT_TYPE.MALL_LIMIT_GIFT] = BIReport.GIFT_TYPE.MALL_LIMIT_GIFT,
[ModuleManager.MallManager.MALL_ACT_TYPE.MALL_FIRST_RECHARGE_GIFT] = BIReport.GIFT_TYPE.MALL_FIRST_RECHARGE_GIFT,
[ModuleManager.MallManager.MALL_ACT_TYPE.MALL_CHAPTER_FUND] = BIReport.GIFT_TYPE.MALL_CHAPTER_FUND,
[ModuleManager.MallManager.MALL_ACT_TYPE.MALL_BATTLE_PASS] = BIReport.GIFT_TYPE.MALL_BATTLE_PASS,
},
[PayManager.PURCHARSE_TYPE.MALL_DAILY] = {
[1] = BIReport.GIFT_TYPE.DAILY_GIFT,
[2] = BIReport.GIFT_TYPE.WEEKLY_GIFT,
},
[PayManager.PURCHARSE_TYPE.MALL_TREASURE] = BIReport.GIFT_TYPE.MALL_TREASURE,
}
function PayManager:getItemGetType(purchaseType, id)

View File

@ -1,10 +0,0 @@
local acceleration = {
[1]={
["time"]=1200,
["effect"]=2
}
}
local config = {
data=acceleration,count=1
}
return config

View File

@ -1,750 +0,0 @@
local act_battle_pass = {
[1]={
["mall_id"]=70001,
["exp"]=0,
["reward"]={
{
["type"]=1,
["id"]=21,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=1,
["id"]=22,
["count"]={
["value"]=1,
["unit"]=0
}
}
}
},
[2]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=1,
["id"]=21,
["count"]={
["value"]=1,
["unit"]=0
}
}
}
},
[3]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=4,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=1,
["id"]=4,
["count"]={
["value"]=5,
["unit"]=0
}
}
}
},
[4]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=1,
["id"]=21,
["count"]={
["value"]=1,
["unit"]=0
}
}
}
},
[5]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=21,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=1,
["id"]=22,
["count"]={
["value"]=1,
["unit"]=0
}
}
}
},
[6]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=1,
["id"]=21,
["count"]={
["value"]=1,
["unit"]=0
}
}
}
},
[7]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=4,
["id"]=40504,
["count"]={
["value"]=1,
["unit"]=0
}
}
}
},
[8]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=1,
["id"]=21,
["count"]={
["value"]=1,
["unit"]=0
}
}
}
},
[9]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=21,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=1,
["id"]=22,
["count"]={
["value"]=1,
["unit"]=0
}
}
}
},
[10]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=1,
["id"]=21,
["count"]={
["value"]=1,
["unit"]=0
}
}
}
},
[11]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=5,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=1,
["id"]=5,
["count"]={
["value"]=5,
["unit"]=0
}
}
}
},
[12]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=1,
["id"]=21,
["count"]={
["value"]=1,
["unit"]=0
}
}
}
},
[13]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=21,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=1,
["id"]=22,
["count"]={
["value"]=1,
["unit"]=0
}
}
}
},
[14]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=1,
["id"]=21,
["count"]={
["value"]=1,
["unit"]=0
}
}
}
},
[15]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=4,
["id"]=40504,
["count"]={
["value"]=50,
["unit"]=0
}
}
}
},
[16]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=1,
["id"]=21,
["count"]={
["value"]=1,
["unit"]=0
}
}
}
},
[17]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=21,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=1,
["id"]=22,
["count"]={
["value"]=1,
["unit"]=0
}
}
}
},
[18]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=1,
["id"]=21,
["count"]={
["value"]=1,
["unit"]=0
}
}
}
},
[19]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=6,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=1,
["id"]=6,
["count"]={
["value"]=5,
["unit"]=0
}
}
}
},
[20]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=1,
["id"]=21,
["count"]={
["value"]=1,
["unit"]=0
}
}
}
},
[21]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=21,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=1,
["id"]=22,
["count"]={
["value"]=1,
["unit"]=0
}
}
}
},
[22]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=1,
["id"]=21,
["count"]={
["value"]=1,
["unit"]=0
}
}
}
},
[23]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=4,
["id"]=40504,
["count"]={
["value"]=100,
["unit"]=0
}
}
}
},
[24]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=1,
["id"]=21,
["count"]={
["value"]=1,
["unit"]=0
}
}
}
},
[25]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=21,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=1,
["id"]=22,
["count"]={
["value"]=1,
["unit"]=0
}
}
}
},
[26]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=1,
["id"]=21,
["count"]={
["value"]=1,
["unit"]=0
}
}
}
},
[27]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=16,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=1,
["id"]=16,
["count"]={
["value"]=5,
["unit"]=0
}
}
}
},
[28]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=1,
["id"]=21,
["count"]={
["value"]=1,
["unit"]=0
}
}
}
},
[29]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=21,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=1,
["id"]=22,
["count"]={
["value"]=1,
["unit"]=0
}
}
}
},
[30]={
["mall_id"]=70001,
["exp"]=100,
["reward"]={
{
["type"]=1,
["id"]=22,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=4,
["id"]=40504,
["count"]={
["value"]=200,
["unit"]=0
}
}
}
},
[31]={
["mall_id"]=70001,
["exp"]=200,
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_pro"]={
{
["type"]=1,
["id"]=21,
["count"]={
["value"]=1,
["unit"]=0
}
}
}
}
}
local config = {
data=act_battle_pass,count=31
}
return config

View File

@ -1,132 +0,0 @@
local act_battle_pass_task = {
[1]={
["mall_id"]=70001,
["type"]=1,
["parameter"]=500,
["exp_reward"]={
["type"]=1,
["id"]=19,
["count"]={
["value"]=20,
["unit"]=0
}
},
["refresh_type"]=1
},
[2]={
["mall_id"]=70001,
["type"]=3,
["parameter"]=100,
["exp_reward"]={
["type"]=1,
["id"]=19,
["count"]={
["value"]=20,
["unit"]=0
}
},
["refresh_type"]=1
},
[3]={
["mall_id"]=70001,
["type"]=15,
["parameter"]=60,
["exp_reward"]={
["type"]=1,
["id"]=19,
["count"]={
["value"]=20,
["unit"]=0
}
},
["refresh_type"]=1
},
[4]={
["mall_id"]=70001,
["type"]=27,
["parameter"]=4,
["exp_reward"]={
["type"]=1,
["id"]=19,
["count"]={
["value"]=20,
["unit"]=0
}
},
["refresh_type"]=1
},
[5]={
["mall_id"]=70001,
["type"]=28,
["parameter"]=4,
["exp_reward"]={
["type"]=1,
["id"]=19,
["count"]={
["value"]=20,
["unit"]=0
}
},
["refresh_type"]=1
},
[6]={
["mall_id"]=70001,
["type"]=29,
["parameter"]=4,
["exp_reward"]={
["type"]=1,
["id"]=19,
["count"]={
["value"]=20,
["unit"]=0
}
},
["refresh_type"]=1
},
[7]={
["mall_id"]=70001,
["type"]=31,
["parameter"]=4,
["exp_reward"]={
["type"]=1,
["id"]=19,
["count"]={
["value"]=20,
["unit"]=0
}
},
["refresh_type"]=1
},
[8]={
["mall_id"]=70001,
["type"]=6,
["parameter"]=1,
["exp_reward"]={
["type"]=1,
["id"]=19,
["count"]={
["value"]=200,
["unit"]=0
}
},
["refresh_type"]=2
},
[9]={
["mall_id"]=70001,
["type"]=1,
["parameter"]=1000,
["exp_reward"]={
["type"]=1,
["id"]=19,
["count"]={
["value"]=200,
["unit"]=0
}
},
["refresh_type"]=2
}
}
local config = {
data=act_battle_pass_task,count=9
}
return config

View File

@ -1,84 +0,0 @@
local act_fund = {
[60000]={
["type"]=1,
["price"]=0,
["reward_id"]={
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120
}
},
[60001]={
["type"]=1,
["price"]=1,
["reward_id"]={
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120
}
},
[60002]={
["type"]=1,
["price"]=2,
["reward_id"]={
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120
}
}
}
local config = {
data=act_fund,count=3
}
return config

View File

@ -1,566 +0,0 @@
local act_fund_reward = {
[101]={
["unlock_type"]=1,
["unlock_request"]=10,
["reward_free"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=500,
["unit"]=0
}
},
["reward_low"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=3000,
["unit"]=0
}
},
["reward_high"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=10000,
["unit"]=0
}
}
},
[102]={
["unlock_type"]=1,
["unlock_request"]=30,
["reward_free"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=500,
["unit"]=0
}
},
["reward_low"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=3000,
["unit"]=0
}
},
["reward_high"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=10000,
["unit"]=0
}
}
},
[103]={
["unlock_type"]=1,
["unlock_request"]=50,
["reward_free"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=500,
["unit"]=0
}
},
["reward_low"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=3000,
["unit"]=0
}
},
["reward_high"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=10000,
["unit"]=0
}
}
},
[104]={
["unlock_type"]=1,
["unlock_request"]=100,
["reward_free"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=500,
["unit"]=0
}
},
["reward_low"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=3000,
["unit"]=0
}
},
["reward_high"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=10000,
["unit"]=0
}
}
},
[105]={
["unlock_type"]=1,
["unlock_request"]=150,
["reward_free"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=500,
["unit"]=0
}
},
["reward_low"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=3000,
["unit"]=0
}
},
["reward_high"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=10000,
["unit"]=0
}
}
},
[106]={
["unlock_type"]=1,
["unlock_request"]=200,
["reward_free"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=500,
["unit"]=0
}
},
["reward_low"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=3000,
["unit"]=0
}
},
["reward_high"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=10000,
["unit"]=0
}
}
},
[107]={
["unlock_type"]=1,
["unlock_request"]=250,
["reward_free"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=500,
["unit"]=0
}
},
["reward_low"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=3000,
["unit"]=0
}
},
["reward_high"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=10000,
["unit"]=0
}
}
},
[108]={
["unlock_type"]=1,
["unlock_request"]=300,
["reward_free"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=500,
["unit"]=0
}
},
["reward_low"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=3000,
["unit"]=0
}
},
["reward_high"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=10000,
["unit"]=0
}
}
},
[109]={
["unlock_type"]=1,
["unlock_request"]=400,
["reward_free"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=500,
["unit"]=0
}
},
["reward_low"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=3000,
["unit"]=0
}
},
["reward_high"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=10000,
["unit"]=0
}
}
},
[110]={
["unlock_type"]=1,
["unlock_request"]=500,
["reward_free"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=500,
["unit"]=0
}
},
["reward_low"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=3000,
["unit"]=0
}
},
["reward_high"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=10000,
["unit"]=0
}
}
},
[111]={
["unlock_type"]=1,
["unlock_request"]=600,
["reward_free"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=500,
["unit"]=0
}
},
["reward_low"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=3000,
["unit"]=0
}
},
["reward_high"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=10000,
["unit"]=0
}
}
},
[112]={
["unlock_type"]=1,
["unlock_request"]=700,
["reward_free"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=500,
["unit"]=0
}
},
["reward_low"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=3000,
["unit"]=0
}
},
["reward_high"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=10000,
["unit"]=0
}
}
},
[113]={
["unlock_type"]=1,
["unlock_request"]=800,
["reward_free"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=500,
["unit"]=0
}
},
["reward_low"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=3000,
["unit"]=0
}
},
["reward_high"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=10000,
["unit"]=0
}
}
},
[114]={
["unlock_type"]=1,
["unlock_request"]=900,
["reward_free"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=500,
["unit"]=0
}
},
["reward_low"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=3000,
["unit"]=0
}
},
["reward_high"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=10000,
["unit"]=0
}
}
},
[115]={
["unlock_type"]=1,
["unlock_request"]=1000,
["reward_free"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=500,
["unit"]=0
}
},
["reward_low"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=3000,
["unit"]=0
}
},
["reward_high"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=10000,
["unit"]=0
}
}
},
[116]={
["unlock_type"]=1,
["unlock_request"]=1200,
["reward_free"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=500,
["unit"]=0
}
},
["reward_low"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=3000,
["unit"]=0
}
},
["reward_high"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=10000,
["unit"]=0
}
}
},
[117]={
["unlock_type"]=1,
["unlock_request"]=1400,
["reward_free"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=500,
["unit"]=0
}
},
["reward_low"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=3000,
["unit"]=0
}
},
["reward_high"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=10000,
["unit"]=0
}
}
},
[118]={
["unlock_type"]=1,
["unlock_request"]=1600,
["reward_free"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=500,
["unit"]=0
}
},
["reward_low"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=3000,
["unit"]=0
}
},
["reward_high"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=10000,
["unit"]=0
}
}
},
[119]={
["unlock_type"]=1,
["unlock_request"]=1800,
["reward_free"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=500,
["unit"]=0
}
},
["reward_low"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=3000,
["unit"]=0
}
},
["reward_high"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=10000,
["unit"]=0
}
}
},
[120]={
["unlock_type"]=1,
["unlock_request"]=2000,
["reward_free"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=500,
["unit"]=0
}
},
["reward_low"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=3000,
["unit"]=0
}
},
["reward_high"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=10000,
["unit"]=0
}
}
}
}
local config = {
data=act_fund_reward,count=20
}
return config

View File

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

View File

@ -1,916 +0,0 @@
local act_sevenday_quest = {
[1]={
["day"]=1,
["number"]=1,
["type"]=6,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[2]={
["day"]=1,
["number"]=100,
["type"]=2,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[3]={
["day"]=1,
["number"]=2,
["type"]=10,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[4]={
["day"]=1,
["number"]=2,
["type"]=11,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[5]={
["day"]=1,
["number"]=800,
["type"]=24,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[6]={
["day"]=1,
["number"]=800,
["type"]=25,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[7]={
["day"]=1,
["number"]=50,
["type"]=7,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[8]={
["day"]=1,
["number"]=50,
["type"]=8,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[9]={
["day"]=1,
["number"]=50,
["type"]=9,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[10]={
["day"]=1,
["number"]=5,
["type"]=4,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[11]={
["day"]=2,
["number"]=2,
["type"]=6,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[12]={
["day"]=2,
["number"]=200,
["type"]=2,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[13]={
["day"]=2,
["number"]=2,
["type"]=12,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[14]={
["day"]=2,
["number"]=1,
["type"]=22,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[15]={
["day"]=2,
["number"]=50,
["type"]=15,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[16]={
["day"]=2,
["number"]=2,
["type"]=16,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[17]={
["day"]=2,
["number"]=2,
["type"]=17,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[18]={
["day"]=2,
["number"]=3,
["type"]=18,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[19]={
["day"]=2,
["number"]=100,
["type"]=20,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[20]={
["day"]=2,
["number"]=5,
["type"]=21,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[21]={
["day"]=3,
["number"]=3,
["type"]=6,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[22]={
["day"]=3,
["number"]=300,
["type"]=2,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[23]={
["day"]=3,
["number"]=4,
["type"]=10,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[24]={
["day"]=3,
["number"]=4,
["type"]=11,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[25]={
["day"]=3,
["number"]=2400,
["type"]=24,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[26]={
["day"]=3,
["number"]=2400,
["type"]=25,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[27]={
["day"]=3,
["number"]=300,
["type"]=7,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[28]={
["day"]=3,
["number"]=300,
["type"]=8,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[29]={
["day"]=3,
["number"]=300,
["type"]=9,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[30]={
["day"]=3,
["number"]=20,
["type"]=4,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[31]={
["day"]=4,
["number"]=4,
["type"]=6,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[32]={
["day"]=4,
["number"]=400,
["type"]=2,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[33]={
["day"]=4,
["number"]=6,
["type"]=12,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[34]={
["day"]=4,
["number"]=3,
["type"]=22,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[35]={
["day"]=4,
["number"]=200,
["type"]=15,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[36]={
["day"]=4,
["number"]=6,
["type"]=16,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[37]={
["day"]=4,
["number"]=6,
["type"]=17,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[38]={
["day"]=4,
["number"]=10,
["type"]=18,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[39]={
["day"]=4,
["number"]=300,
["type"]=20,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[40]={
["day"]=4,
["number"]=20,
["type"]=21,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[41]={
["day"]=5,
["number"]=5,
["type"]=6,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[42]={
["day"]=5,
["number"]=500,
["type"]=2,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[43]={
["day"]=5,
["number"]=7,
["type"]=10,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[44]={
["day"]=5,
["number"]=7,
["type"]=11,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[45]={
["day"]=5,
["number"]=3600,
["type"]=24,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[46]={
["day"]=5,
["number"]=3600,
["type"]=25,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[47]={
["day"]=5,
["number"]=600,
["type"]=7,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[48]={
["day"]=5,
["number"]=600,
["type"]=8,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[49]={
["day"]=5,
["number"]=600,
["type"]=9,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[50]={
["day"]=5,
["number"]=30,
["type"]=4,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[51]={
["day"]=6,
["number"]=6,
["type"]=6,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[52]={
["day"]=6,
["number"]=600,
["type"]=2,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[53]={
["day"]=6,
["number"]=8,
["type"]=12,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[54]={
["day"]=6,
["number"]=5,
["type"]=22,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[55]={
["day"]=6,
["number"]=300,
["type"]=15,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[56]={
["day"]=6,
["number"]=10,
["type"]=16,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[57]={
["day"]=6,
["number"]=10,
["type"]=17,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[58]={
["day"]=6,
["number"]=15,
["type"]=18,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[59]={
["day"]=6,
["number"]=400,
["type"]=20,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[60]={
["day"]=6,
["number"]=30,
["type"]=21,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[61]={
["day"]=7,
["number"]=7,
["type"]=6,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[62]={
["day"]=7,
["number"]=700,
["type"]=2,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[63]={
["day"]=7,
["number"]=9,
["type"]=10,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[64]={
["day"]=7,
["number"]=9,
["type"]=11,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[65]={
["day"]=7,
["number"]=4500,
["type"]=24,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[66]={
["day"]=7,
["number"]=4500,
["type"]=25,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[67]={
["day"]=7,
["number"]=900,
["type"]=7,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[68]={
["day"]=7,
["number"]=900,
["type"]=8,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[69]={
["day"]=7,
["number"]=900,
["type"]=9,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
},
[70]={
["day"]=7,
["number"]=50,
["type"]=4,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=200,
["unit"]=0
}
}
}
}
local config = {
data=act_sevenday_quest,count=70
}
return config

View File

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

View File

@ -1,83 +0,0 @@
local act_sevenday_quest_reward = {
[1]={
["num"]=10,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=1000,
["unit"]=0
}
}
},
[2]={
["num"]=20,
["reward"]={
["type"]=1,
["id"]=21,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
[3]={
["num"]=30,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=3000,
["unit"]=0
}
}
},
[4]={
["num"]=40,
["reward"]={
["type"]=1,
["id"]=22,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
[5]={
["num"]=50,
["reward"]={
["type"]=1,
["id"]=2,
["count"]={
["value"]=5000,
["unit"]=0
}
}
},
[6]={
["num"]=60,
["reward"]={
["type"]=1,
["id"]=22,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
[7]={
["num"]=70,
["reward"]={
["type"]=1,
["id"]=23,
["count"]={
["value"]=1,
["unit"]=0
}
}
}
}
local config = {
data=act_sevenday_quest_reward,count=7
}
return config

View File

@ -1,10 +0,0 @@
fileFormatVersion: 2
guid: 7f592b6b3429e944c83eab9e07c6b96d
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: 0e8f8f3318b1555438d8d450ddda4a12
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}

View File

@ -1,214 +0,0 @@
local arena_rank_award = {
[1]={
["rank"]={
1,
1
},
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=100,
["unit"]=0
}
}
}
},
[2]={
["rank"]={
2,
2
},
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=70,
["unit"]=0
}
}
}
},
[3]={
["rank"]={
3,
3
},
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=50,
["unit"]=0
}
}
}
},
[4]={
["rank"]={
4,
5
},
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=40,
["unit"]=0
}
}
}
},
[5]={
["rank"]={
6,
10
},
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=30,
["unit"]=0
}
}
}
},
[6]={
["rank"]={
11,
20
},
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=25,
["unit"]=0
}
}
}
},
[7]={
["rank"]={
21,
30
},
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=20,
["unit"]=0
}
}
}
},
[8]={
["rank"]={
31,
40
},
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=15,
["unit"]=0
}
}
}
},
[9]={
["rank"]={
41,
50
},
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=12,
["unit"]=0
}
}
}
},
[10]={
["rank"]={
51,
70
},
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=10,
["unit"]=0
}
}
}
},
[11]={
["rank"]={
71,
100
},
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=8,
["unit"]=0
}
}
}
},
[12]={
["rank"]={
101,
150
},
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=6,
["unit"]=0
}
}
}
},
[13]={
["rank"]={
151,
200
},
["reward"]={
{
["type"]=1,
["id"]=18,
["count"]={
["value"]=5,
["unit"]=0
}
}
}
}
}
local config = {
data=arena_rank_award,count=13
}
return config

View File

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

View File

@ -3,142 +3,94 @@ local attr = {
["name"]="hp"
},
[2]={
["name"]="atk"
["name"]="recover"
},
[3]={
["name"]="crit"
["name"]="atk"
},
[4]={
["name"]="crit_time"
["name"]="red_atk"
},
[5]={
["name"]="dmg_dec_all"
["name"]="yellow_atk"
},
[6]={
["name"]="atkp_1"
["name"]="green_atk"
},
[7]={
["name"]="atkp_2"
["name"]="blue_atk"
},
[8]={
["name"]="atkp_3"
["name"]="purple_atk"
},
[9]={
["name"]="atkp_4"
["name"]="atkp"
},
[10]={
["name"]="atkp_5"
["name"]="red_atkp"
},
[11]={
["name"]="atkp_6"
["name"]="yellow_atkp"
},
[12]={
["name"]="atkp_7"
["name"]="green_atkp"
},
[13]={
["name"]="atkp_8"
["name"]="blue_atkp"
},
[14]={
["name"]="atkp_9"
["name"]="purple_atkp"
},
[15]={
["name"]="hpp_1"
["name"]="hpp"
},
[16]={
["name"]="hpp_2"
["name"]="crit"
},
[17]={
["name"]="hpp_3"
["name"]="crit_time"
},
[18]={
["name"]="hpp_4"
["name"]="exp_time"
},
[19]={
["name"]="hpp_5"
["name"]="cured"
},
[20]={
["name"]="hpp_6"
["name"]="vampire"
},
[21]={
["name"]="hpp_7"
},
[22]={
["name"]="dmg_addition"
},
[23]={
["name"]="miss"
},
[24]={
["name"]="gold_gain"
},
[25]={
["name"]="dmg_addition_skill"
},
[26]={
["name"]="dmg_addition_normal"
},
[27]={
["name"]="idle_income"
},
[28]={
["name"]="pickaxe_recover_spd"
},
[29]={
["name"]="pickaxe_own_limit"
},
[30]={
["name"]="mineral_gain"
},
[31]={
["name"]="research_spd"
},
[32]={
["name"]="airborne_damage"
},
[33]={
["name"]="airborne_num"
["name"]="block"
}
}
local keys = {
name = {
["hp"]=attr[1],
["atk"]=attr[2],
["crit"]=attr[3],
["crit_time"]=attr[4],
["dmg_dec_all"]=attr[5],
["atkp_1"]=attr[6],
["atkp_2"]=attr[7],
["atkp_3"]=attr[8],
["atkp_4"]=attr[9],
["atkp_5"]=attr[10],
["atkp_6"]=attr[11],
["atkp_7"]=attr[12],
["atkp_8"]=attr[13],
["atkp_9"]=attr[14],
["hpp_1"]=attr[15],
["hpp_2"]=attr[16],
["hpp_3"]=attr[17],
["hpp_4"]=attr[18],
["hpp_5"]=attr[19],
["hpp_6"]=attr[20],
["hpp_7"]=attr[21],
["dmg_addition"]=attr[22],
["miss"]=attr[23],
["gold_gain"]=attr[24],
["dmg_addition_skill"]=attr[25],
["dmg_addition_normal"]=attr[26],
["idle_income"]=attr[27],
["pickaxe_recover_spd"]=attr[28],
["pickaxe_own_limit"]=attr[29],
["mineral_gain"]=attr[30],
["research_spd"]=attr[31],
["airborne_damage"]=attr[32],
["airborne_num"]=attr[33]
["recover"]=attr[2],
["atk"]=attr[3],
["red_atk"]=attr[4],
["yellow_atk"]=attr[5],
["green_atk"]=attr[6],
["blue_atk"]=attr[7],
["purple_atk"]=attr[8],
["atkp"]=attr[9],
["red_atkp"]=attr[10],
["yellow_atkp"]=attr[11],
["green_atkp"]=attr[12],
["blue_atkp"]=attr[13],
["purple_atkp"]=attr[14],
["hpp"]=attr[15],
["crit"]=attr[16],
["crit_time"]=attr[17],
["exp_time"]=attr[18],
["cured"]=attr[19],
["vampire"]=attr[20],
["block"]=attr[21]
}
}
local config = {
data=attr,
keys=keys,
count=33
count=21
}
return config

View File

@ -1,111 +0,0 @@
local battle_const = {
["origin_attack"]={
["int_list"]={
2101,
2102,
2103,
2104,
2105,
2106
}
},
["test_hero"]={
["value"]=2
},
["test_attack"]={
["int_list"]={
2601,
2602,
2603,
2604,
2605,
2606
}
},
["test_skill"]={
["int_list"]={
21011,
21014,
21015
}
},
["test_skill_extra"]={
["int_list"]={
2001,
2002
}
},
["distance_scene"]={
["value"]=5000
},
["distance_attack"]={
["value"]=313
},
["distance_dash"]={
["value"]=1250
},
["distance_back"]={
["value"]=625
},
["time_attack"]={
["value"]=100
},
["time_back"]={
["value"]=50
},
["shake_level_1"]={
["value"]=10
},
["shake_level_2"]={
["value"]=20
},
["shake_level_3"]={
["value"]=60
},
["distance_hit_back"]={
["value"]=80
},
["distance_hit_fly"]={
["value"]=555
},
["height_hit_fly"]={
["value"]=592
},
["time_hit_fly"]={
["value"]=1200
},
["time_lie"]={
["value"]=1200
},
["delay_battle_start"]={
["value"]=2000
},
["aotu_fight_interval"]={
["value"]=400
},
["double_skill_interval"]={
["value"]=500
},
["height_number_small"]={
["value"]=70
},
["height_number_middle"]={
["value"]=100
},
["height_number_high"]={
["value"]=160
},
["height_hp_bar_small"]={
["value"]=120
},
["height_hp_bar_middle"]={
["value"]=150
},
["height_hp_bar_high"]={
["value"]=190
}
}
local config = {
data=battle_const,count=28
}
return config

View File

@ -1,311 +0,0 @@
local battle_move = {
[1]={
["horizontal"]=2,
["target"]=2,
["target_offset"]={
-200,
0
},
["refresh"]=1,
["speed"]=600,
["end_distance"]=0
},
[2]={
["horizontal"]=2,
["target"]=2,
["target_offset"]={
-250,
0
},
["refresh"]=1,
["speed"]=700,
["end_distance"]=0
},
[3]={
["horizontal"]=2,
["target"]=2,
["target_offset"]={
-350,
0
},
["refresh"]=1,
["speed"]=300,
["end_distance"]=0
},
[4]={
["horizontal"]=2,
["target"]=2,
["target_offset"]={
-1000,
0
},
["refresh"]=1,
["speed"]=300,
["end_time"]=1000,
["collision_type"]=1
},
[5]={
["horizontal"]=2,
["target"]=2,
["target_offset"]={
0,
0
},
["refresh"]=1,
["speed"]=300,
["end_distance"]=1000
},
[6]={
["horizontal"]=2,
["target"]=2,
["target_offset"]={
-1000,
0
},
["refresh"]=1,
["speed"]=300,
["end_time"]=2000,
["collision_type"]=1
},
[7]={
["horizontal"]=2,
["target"]=2,
["target_offset"]={
0,
0
},
["speed"]=10000,
["end_time"]=100,
["collision_type"]=1
},
[8]={
["horizontal"]=2,
["target"]=2,
["target_offset"]={
1000,
0
},
["across"]=1,
["speed"]=5000,
["end_time"]=500,
["collision_type"]=1
},
[9]={
["horizontal"]=2,
["target"]=2,
["target_offset"]={
0,
0
},
["speed"]=800,
["end_time"]=2000,
["collision_type"]=1
},
[10]={
["horizontal"]=2,
["target"]=2,
["target_offset"]={
0,
0
},
["refresh"]=1,
["speed"]=300,
["end_distance"]=650
},
[11]={
["horizontal"]=1,
["target"]=2,
["target_offset"]={
200,
0
},
["across"]=1,
["end_distance"]=0
},
[12]={
["horizontal"]=1,
["target"]=1,
["target_offset"]={
10000,
0
},
["refresh"]=1,
["across"]=1,
["speed"]=5000,
["end_time"]=200,
["collision_type"]=1
},
[13]={
["horizontal"]=1,
["target"]=1,
["target_offset"]={
-500,
0
},
["refresh"]=1,
["speed"]=600,
["end_time"]=1000,
["collision_type"]=1
},
[14]={
["horizontal"]=1,
["target"]=2,
["target_offset"]={
0,
0
},
["speed"]=2000,
["end_time"]=300
},
[15]={
["horizontal"]=2,
["target"]=2,
["target_offset"]={
0,
0
},
["refresh"]=1,
["speed"]=600,
["end_distance"]=1000
},
[16]={
["horizontal"]=2,
["target"]=2,
["target_offset"]={
-1000,
0
},
["refresh"]=1,
["speed"]=600,
["end_time"]=2000,
["collision_type"]=1
},
[17]={
["horizontal"]=2,
["target"]=2,
["target_offset"]={
0,
0
},
["speed"]=1000,
["end_time"]=200,
["collision_type"]=1
},
[18]={
["horizontal"]=1,
["target"]=2,
["target_offset"]={
500,
0
},
["across"]=1,
["speed"]=2000,
["end_time"]=300
},
[19]={
["horizontal"]=2,
["target"]=2,
["target_offset"]={
0,
0
},
["refresh"]=1,
["across"]=1,
["end_distance"]=0
},
[20]={
["horizontal"]=2,
["target"]=2,
["target_offset"]={
0,
0
},
["refresh"]=1,
["across"]=1,
["speed"]=500,
["end_time"]=3000
},
[21]={
["horizontal"]=2,
["target"]=2,
["target_offset"]={
-250,
0
},
["refresh"]=1,
["speed"]=400,
["end_distance"]=0
},
[22]={
["horizontal"]=2,
["target"]=2,
["target_offset"]={
0,
0
},
["speed"]=13000,
["end_time"]=100,
["collision_type"]=1
},
[23]={
["horizontal"]=2,
["target"]=2,
["target_offset"]={
0,
0
},
["refresh"]=1,
["across"]=1,
["end_time"]=1000
},
[24]={
["horizontal"]=2,
["target"]=2,
["target_offset"]={
0,
0
},
["refresh"]=1,
["across"]=1,
["end_time"]=500
},
[25]={
["horizontal"]=2,
["target"]=2,
["target_offset"]={
0,
0
},
["refresh"]=1,
["across"]=1,
["end_time"]=2000
},
[26]={
["horizontal"]=2,
["target"]=2,
["target_offset"]={
1000,
0
},
["across"]=1,
["speed"]=3500,
["end_time"]=200,
["collision_type"]=1
},
[27]={
["horizontal"]=2,
["target"]=2,
["target_offset"]={
1000,
0
},
["across"]=1,
["speed"]=7000,
["end_time"]=200,
["collision_type"]=1
}
}
local config = {
data=battle_move,count=27
}
return config

View File

@ -1,10 +0,0 @@
fileFormatVersion: 2
guid: bc648d16309ee604c8693c7abf401abb
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: ad5c3dd29b65135448e0de7cb793b01a
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}

View File

@ -1,63 +0,0 @@
local blessing = {
[1]={
["time"]=1200,
["up_cost"]=2,
["max_lv"]=30,
["basic_effect"]={
["type"]="gold_gain",
["bignum"]={
["value"]=5000,
["unit"]=0
}
},
["grow_effect"]={
["type"]="gold_gain",
["bignum"]={
["value"]=500,
["unit"]=0
}
}
},
[2]={
["time"]=1200,
["up_cost"]=2,
["max_lv"]=30,
["basic_effect"]={
["type"]="atkp_8",
["bignum"]={
["value"]=10000,
["unit"]=0
}
},
["grow_effect"]={
["type"]="atkp_8",
["bignum"]={
["value"]=1000,
["unit"]=0
}
}
},
[3]={
["time"]=1200,
["up_cost"]=2,
["max_lv"]=30,
["basic_effect"]={
["type"]="dmg_addition_skill",
["bignum"]={
["value"]=10000,
["unit"]=0
}
},
["grow_effect"]={
["type"]="dmg_addition_skill",
["bignum"]={
["value"]=1000,
["unit"]=0
}
}
}
}
local config = {
data=blessing,count=3
}
return config

View File

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

View File

@ -1,231 +0,0 @@
local buff = {
[1]={
["name"]="hurt",
["buff_type"]=1,
["formula"]=1
},
[2]={
["name"]="hurt_hpp_t",
["buff_type"]=1,
["formula"]=2
},
[3]={
["name"]="poison",
["buff_type"]=2,
["formula"]=1,
["buff_interval"]=300,
["fx_buff"]=7
},
[4]={
["name"]="treat",
["buff_type"]=3,
["formula"]=2,
["fx_get"]=4
},
[5]={
["name"]="attack_interval_dec",
["buff_type"]=5,
["formula"]=1
},
[6]={
["name"]="treat_shield",
["buff_type"]=5,
["formula"]=2
},
[7]={
["name"]="miss_up",
["buff_type"]=5,
["formula"]=1
},
[8]={
["name"]="atkp_up",
["buff_type"]=5,
["formula"]=1
},
[9]={
["name"]="dmg_addition_up",
["buff_type"]=5,
["formula"]=1
},
[10]={
["name"]="airborne_time",
["buff_type"]=5,
["formula"]=1
},
[11]={
["name"]="lie_time",
["buff_type"]=5,
["formula"]=1
},
[12]={
["name"]="attack_crit_up",
["buff_type"]=5,
["formula"]=1
},
[13]={
["name"]="airborne_damage_up",
["buff_type"]=5,
["formula"]=1
},
[14]={
["name"]="airborne_num_up",
["buff_type"]=5,
["formula"]=1
},
[15]={
["name"]="double_skill",
["buff_type"]=5,
["formula"]=1
},
[16]={
["name"]="skill_all_damage_up",
["buff_type"]=5,
["formula"]=1
},
[17]={
["name"]="skill_1_damage_up",
["buff_type"]=5,
["formula"]=1
},
[18]={
["name"]="skill_2_damage_up",
["buff_type"]=5,
["formula"]=1
},
[19]={
["name"]="skill_3_damage_up",
["buff_type"]=5,
["formula"]=1
},
[20]={
["name"]="attack_damage_up",
["buff_type"]=5,
["formula"]=1
},
[21]={
["name"]="spell_mark",
["buff_type"]=7,
["formula"]=1
},
[22]={
["name"]="spell_mark_explode",
["buff_type"]=7,
["formula"]=1
},
[23]={
["name"]="spell_mark_save",
["buff_type"]=7,
["formula"]=1
},
[24]={
["name"]="spell_mark_damage",
["buff_type"]=5,
["formula"]=1
},
[25]={
["name"]="crit_up",
["buff_type"]=5,
["formula"]=1
},
[26]={
["name"]="poison_double",
["buff_type"]=5,
["formula"]=1
},
[27]={
["name"]="poison_superposition",
["buff_type"]=5,
["formula"]=1
},
[28]={
["name"]="skill_1",
["buff_type"]=7,
["formula"]=1
},
[29]={
["name"]="skill_2",
["buff_type"]=7,
["formula"]=1
},
[30]={
["name"]="skill_3",
["buff_type"]=7,
["formula"]=1
},
[31]={
["name"]="poison_time",
["buff_type"]=7,
["formula"]=1
},
[32]={
["name"]="crit_time_up",
["buff_type"]=5,
["formula"]=1
},
[33]={
["name"]="stun",
["buff_type"]=6,
["formula"]=1,
["fx_buff"]=6
},
[34]={
["name"]="airborne",
["buff_type"]=7,
["formula"]=1
},
[35]={
["name"]="skill_damage_double",
["buff_type"]=5,
["formula"]=1
},
[36]={
["name"]="none",
["buff_type"]=0
}
}
local keys = {
name = {
["hurt"]=buff[1],
["hurt_hpp_t"]=buff[2],
["poison"]=buff[3],
["treat"]=buff[4],
["attack_interval_dec"]=buff[5],
["treat_shield"]=buff[6],
["miss_up"]=buff[7],
["atkp_up"]=buff[8],
["dmg_addition_up"]=buff[9],
["airborne_time"]=buff[10],
["lie_time"]=buff[11],
["attack_crit_up"]=buff[12],
["airborne_damage_up"]=buff[13],
["airborne_num_up"]=buff[14],
["double_skill"]=buff[15],
["skill_all_damage_up"]=buff[16],
["skill_1_damage_up"]=buff[17],
["skill_2_damage_up"]=buff[18],
["skill_3_damage_up"]=buff[19],
["attack_damage_up"]=buff[20],
["spell_mark"]=buff[21],
["spell_mark_explode"]=buff[22],
["spell_mark_save"]=buff[23],
["spell_mark_damage"]=buff[24],
["crit_up"]=buff[25],
["poison_double"]=buff[26],
["poison_superposition"]=buff[27],
["skill_1"]=buff[28],
["skill_2"]=buff[29],
["skill_3"]=buff[30],
["poison_time"]=buff[31],
["crit_time_up"]=buff[32],
["stun"]=buff[33],
["airborne"]=buff[34],
["skill_damage_double"]=buff[35],
["none"]=buff[36]
}
}
local config = {
data=buff,
keys=keys,
count=36
}
return config

View File

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

View File

@ -1,19 +0,0 @@
local bullet = {
[1]={
["bullet_type"]=2,
["bullet_finish_type"]=1,
["radius"]=300,
["bullet_time"]=1000
},
[2]={
["bullet_type"]=2,
["bullet_finish_type"]=2,
["radius"]=300,
["bullet_time"]=4000,
["bullet_spd"]=300
}
}
local config = {
data=bullet,count=2
}
return config

View File

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

206
lua/app/config/card.lua Normal file
View File

@ -0,0 +1,206 @@
local card = {
[1]={
["position"]=3,
["qlt"]=2,
["hp_1"]=100,
["hp_2"]=110,
["hp_3"]=120,
["hp_4"]=130,
["hp_5"]=140,
["hp_6"]=150,
["hp_7"]=160,
["hp_8"]=170,
["atk_1"]=100,
["atk_2"]=110,
["atk_3"]=120,
["atk_4"]=130,
["atk_5"]=140,
["atk_6"]=150,
["atk_7"]=160,
["atk_8"]=170
},
[2]={
["position"]=2,
["qlt"]=2,
["hp_1"]=100,
["hp_2"]=110,
["hp_3"]=120,
["hp_4"]=130,
["hp_5"]=140,
["hp_6"]=150,
["hp_7"]=160,
["hp_8"]=170,
["atk_1"]=100,
["atk_2"]=110,
["atk_3"]=120,
["atk_4"]=130,
["atk_5"]=140,
["atk_6"]=150,
["atk_7"]=160,
["atk_8"]=170
},
[3]={
["position"]=4,
["qlt"]=2,
["hp_1"]=100,
["hp_2"]=110,
["hp_3"]=120,
["hp_4"]=130,
["hp_5"]=140,
["hp_6"]=150,
["hp_7"]=160,
["hp_8"]=170,
["atk_1"]=100,
["atk_2"]=110,
["atk_3"]=120,
["atk_4"]=130,
["atk_5"]=140,
["atk_6"]=150,
["atk_7"]=160,
["atk_8"]=170
},
[4]={
["position"]=5,
["qlt"]=2,
["hp_1"]=100,
["hp_2"]=110,
["hp_3"]=120,
["hp_4"]=130,
["hp_5"]=140,
["hp_6"]=150,
["hp_7"]=160,
["hp_8"]=170,
["atk_1"]=100,
["atk_2"]=110,
["atk_3"]=120,
["atk_4"]=130,
["atk_5"]=140,
["atk_6"]=150,
["atk_7"]=160,
["atk_8"]=170
},
[5]={
["position"]=1,
["qlt"]=2,
["hp_1"]=100,
["hp_2"]=110,
["hp_3"]=120,
["hp_4"]=130,
["hp_5"]=140,
["hp_6"]=150,
["hp_7"]=160,
["hp_8"]=170,
["atk_1"]=100,
["atk_2"]=110,
["atk_3"]=120,
["atk_4"]=130,
["atk_5"]=140,
["atk_6"]=150,
["atk_7"]=160,
["atk_8"]=170
},
[6]={
["position"]=3,
["qlt"]=3,
["hp_1"]=150,
["hp_2"]=165,
["hp_3"]=180,
["hp_4"]=195,
["hp_5"]=210,
["hp_6"]=225,
["hp_7"]=240,
["hp_8"]=255,
["atk_1"]=150,
["atk_2"]=165,
["atk_3"]=180,
["atk_4"]=195,
["atk_5"]=210,
["atk_6"]=225,
["atk_7"]=240,
["atk_8"]=255
},
[7]={
["position"]=2,
["qlt"]=3,
["hp_1"]=150,
["hp_2"]=165,
["hp_3"]=180,
["hp_4"]=195,
["hp_5"]=210,
["hp_6"]=225,
["hp_7"]=240,
["hp_8"]=255,
["atk_1"]=150,
["atk_2"]=165,
["atk_3"]=180,
["atk_4"]=195,
["atk_5"]=210,
["atk_6"]=225,
["atk_7"]=240,
["atk_8"]=255
},
[8]={
["position"]=4,
["qlt"]=3,
["hp_1"]=150,
["hp_2"]=165,
["hp_3"]=180,
["hp_4"]=195,
["hp_5"]=210,
["hp_6"]=225,
["hp_7"]=240,
["hp_8"]=255,
["atk_1"]=150,
["atk_2"]=165,
["atk_3"]=180,
["atk_4"]=195,
["atk_5"]=210,
["atk_6"]=225,
["atk_7"]=240,
["atk_8"]=255
},
[9]={
["position"]=5,
["qlt"]=3,
["hp_1"]=150,
["hp_2"]=165,
["hp_3"]=180,
["hp_4"]=195,
["hp_5"]=210,
["hp_6"]=225,
["hp_7"]=240,
["hp_8"]=255,
["atk_1"]=150,
["atk_2"]=165,
["atk_3"]=180,
["atk_4"]=195,
["atk_5"]=210,
["atk_6"]=225,
["atk_7"]=240,
["atk_8"]=255
},
[10]={
["position"]=1,
["qlt"]=3,
["hp_1"]=150,
["hp_2"]=165,
["hp_3"]=180,
["hp_4"]=195,
["hp_5"]=210,
["hp_6"]=225,
["hp_7"]=240,
["hp_8"]=255,
["atk_1"]=150,
["atk_2"]=165,
["atk_3"]=180,
["atk_4"]=195,
["atk_5"]=210,
["atk_6"]=225,
["atk_7"]=240,
["atk_8"]=255
}
}
local config = {
data=card,count=10
}
return config

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: db35f138cecb99d48b2069c700e2d562
guid: 4febc8242a9cb274e81ae7468efedb1e
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}

View File

@ -0,0 +1,179 @@
local card_level = {
[1]={
["cost_2"]={
3,
0
},
["unlock_skill"]=1
},
[2]={
["cost_2"]={
5,
100
}
},
[3]={
["cost_2"]={
10,
250
},
["cost_3"]={
3,
0
}
},
[4]={
["cost_2"]={
25,
500
},
["cost_3"]={
5,
500
},
["unlock_skill"]=2
},
[5]={
["cost_2"]={
50,
1000
},
["cost_3"]={
10,
500
},
["cost_4"]={
3,
500
}
},
[6]={
["cost_2"]={
100,
1000
},
["cost_3"]={
25,
500
},
["cost_4"]={
5,
500
}
},
[7]={
["cost_2"]={
200,
10000
},
["cost_3"]={
50,
10000
},
["cost_4"]={
10,
500
}
},
[8]={
["cost_2"]={
500,
10000
},
["cost_3"]={
100,
10000
},
["cost_4"]={
20,
10000
},
["unlock_skill"]=3
},
[9]={
["cost_2"]={
1000,
10000
},
["cost_3"]={
200,
10000
},
["cost_4"]={
40,
10000
}
},
[10]={
["cost_2"]={
1500,
10000
},
["cost_3"]={
400,
10000
},
["cost_4"]={
80,
10000
}
},
[11]={
["cost_2"]={
2000,
10000
},
["cost_3"]={
1000,
10000
},
["cost_4"]={
160,
10000
}
},
[12]={
["cost_2"]={
2500,
10000
},
["cost_4"]={
320,
10000
}
},
[13]={
["cost_2"]={
3000,
10000
},
["cost_4"]={
640,
10000
}
},
[14]={
["cost_2"]={
4000,
10000
},
["cost_4"]={
1000,
10000
}
},
[15]={
["cost_2"]={
5000,
10000
},
["cost_4"]={
1500,
10000
}
}
}
local config = {
data=card_level,count=15
}
return config

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: e0a150ac82d9bc145a60899ac60d7575
guid: 604c07ba13dc94b4aba9b27e3ee2474e
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}

File diff suppressed because it is too large Load Diff

View File

@ -1,10 +0,0 @@
fileFormatVersion: 2
guid: 0bc04e38a7190d6418bf4445c8802092
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: 785dd02b9f129eb488783ac22e798f7c
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: b630fe9f9b843654eac57c109a114693
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: 91fed305e3d492e438ffc014382686ef
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: 99fbed847a1a5b54eb9b31f9642f9609
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: 78bdb0a0622fa6e48a66cb02e647a688
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}

View File

@ -1,733 +0,0 @@
local collection = {
[1]={
["type"]=1,
["equip"]={
10001
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="atkp_7",
["bignum"]={
["value"]=100,
["unit"]=0
}
},
["grow"]={
["type"]="atkp_7",
["bignum"]={
["value"]=100,
["unit"]=0
}
}
},
[2]={
["type"]=1,
["equip"]={
10101,
10201,
10102,
10201
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="hpp_4",
["bignum"]={
["value"]=200,
["unit"]=0
}
},
["grow"]={
["type"]="hpp_4",
["bignum"]={
["value"]=200,
["unit"]=0
}
}
},
[3]={
["type"]=1,
["equip"]={
10301,
10302,
10303,
10304
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="dmg_addition_normal",
["bignum"]={
["value"]=300,
["unit"]=0
}
},
["grow"]={
["type"]="dmg_addition_normal",
["bignum"]={
["value"]=300,
["unit"]=0
}
}
},
[4]={
["type"]=1,
["equip"]={
10003,
10103,
10004,
10104
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="atkp_7",
["bignum"]={
["value"]=400,
["unit"]=0
}
},
["grow"]={
["type"]="atkp_7",
["bignum"]={
["value"]=400,
["unit"]=0
}
}
},
[5]={
["type"]=1,
["equip"]={
10203,
10204,
10205
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="hpp_4",
["bignum"]={
["value"]=500,
["unit"]=0
}
},
["grow"]={
["type"]="hpp_4",
["bignum"]={
["value"]=500,
["unit"]=0
}
}
},
[6]={
["type"]=1,
["equip"]={
10005,
10105
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="dmg_addition_skill",
["bignum"]={
["value"]=600,
["unit"]=0
}
},
["grow"]={
["type"]="dmg_addition_skill",
["bignum"]={
["value"]=600,
["unit"]=0
}
}
},
[7]={
["type"]=1,
["equip"]={
10305,
10306,
10307
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="atkp_7",
["bignum"]={
["value"]=700,
["unit"]=0
}
},
["grow"]={
["type"]="atkp_7",
["bignum"]={
["value"]=700,
["unit"]=0
}
}
},
[8]={
["type"]=1,
["equip"]={
10006,
10206,
10007,
10207
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="hpp_4",
["bignum"]={
["value"]=800,
["unit"]=0
}
},
["grow"]={
["type"]="hpp_4",
["bignum"]={
["value"]=800,
["unit"]=0
}
}
},
[9]={
["type"]=1,
["equip"]={
10106,
10107,
10108,
10109
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="crit_time",
["bignum"]={
["value"]=900,
["unit"]=0
}
},
["grow"]={
["type"]="crit_time",
["bignum"]={
["value"]=900,
["unit"]=0
}
}
},
[10]={
["type"]=1,
["equip"]={
10308,
10208,
10309,
10209
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="atkp_7",
["bignum"]={
["value"]=1000,
["unit"]=0
}
},
["grow"]={
["type"]="atkp_7",
["bignum"]={
["value"]=1000,
["unit"]=0
}
}
},
[101]={
["type"]=2,
["equip"]={
20001,
30001,
20101,
30101
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="atkp_7",
["bignum"]={
["value"]=100,
["unit"]=0
}
},
["grow"]={
["type"]="atkp_7",
["bignum"]={
["value"]=100,
["unit"]=0
}
}
},
[102]={
["type"]=2,
["equip"]={
20202,
30102
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="hpp_4",
["bignum"]={
["value"]=200,
["unit"]=0
}
},
["grow"]={
["type"]="hpp_4",
["bignum"]={
["value"]=200,
["unit"]=0
}
}
},
[103]={
["type"]=2,
["equip"]={
20103,
20302,
30303,
30103
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="atkp_7",
["bignum"]={
["value"]=300,
["unit"]=0
}
},
["grow"]={
["type"]="atkp_7",
["bignum"]={
["value"]=300,
["unit"]=0
}
}
},
[104]={
["type"]=2,
["equip"]={
20304,
20003,
30004
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="hpp_4",
["bignum"]={
["value"]=400,
["unit"]=0
}
},
["grow"]={
["type"]="hpp_4",
["bignum"]={
["value"]=400,
["unit"]=0
}
}
},
[105]={
["type"]=2,
["equip"]={
20005,
30204
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="atkp_7",
["bignum"]={
["value"]=500,
["unit"]=0
}
},
["grow"]={
["type"]="atkp_7",
["bignum"]={
["value"]=500,
["unit"]=0
}
}
},
[106]={
["type"]=2,
["equip"]={
20205,
30205,
30104
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="hpp_4",
["bignum"]={
["value"]=600,
["unit"]=0
}
},
["grow"]={
["type"]="hpp_4",
["bignum"]={
["value"]=600,
["unit"]=0
}
}
},
[107]={
["type"]=2,
["equip"]={
20006,
30305,
30105
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="atkp_7",
["bignum"]={
["value"]=700,
["unit"]=0
}
},
["grow"]={
["type"]="atkp_7",
["bignum"]={
["value"]=700,
["unit"]=0
}
}
},
[108]={
["type"]=2,
["equip"]={
20206,
30106,
30306
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="hpp_4",
["bignum"]={
["value"]=800,
["unit"]=0
}
},
["grow"]={
["type"]="hpp_4",
["bignum"]={
["value"]=800,
["unit"]=0
}
}
},
[109]={
["type"]=2,
["equip"]={
20207,
20106,
30207
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="atkp_7",
["bignum"]={
["value"]=900,
["unit"]=0
}
},
["grow"]={
["type"]="atkp_7",
["bignum"]={
["value"]=900,
["unit"]=0
}
}
},
[110]={
["type"]=2,
["equip"]={
20007,
20107,
30107,
30307
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="hpp_4",
["bignum"]={
["value"]=1000,
["unit"]=0
}
},
["grow"]={
["type"]="hpp_4",
["bignum"]={
["value"]=1000,
["unit"]=0
}
}
},
[201]={
["type"]=3,
["equip"]={
40003,
40004,
40005
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="atkp_7",
["bignum"]={
["value"]=100,
["unit"]=0
}
},
["grow"]={
["type"]="atkp_7",
["bignum"]={
["value"]=100,
["unit"]=0
}
}
},
[202]={
["type"]=3,
["equip"]={
40002,
40101
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="crit_time",
["bignum"]={
["value"]=200,
["unit"]=0
}
},
["grow"]={
["type"]="crit_time",
["bignum"]={
["value"]=200,
["unit"]=0
}
}
},
[203]={
["type"]=3,
["equip"]={
40102,
40103,
40105,
40202
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="hpp_4",
["bignum"]={
["value"]=300,
["unit"]=0
}
},
["grow"]={
["type"]="hpp_4",
["bignum"]={
["value"]=300,
["unit"]=0
}
}
},
[204]={
["type"]=3,
["equip"]={
40201,
40301,
40302
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="atkp_7",
["bignum"]={
["value"]=400,
["unit"]=0
}
},
["grow"]={
["type"]="atkp_7",
["bignum"]={
["value"]=400,
["unit"]=0
}
}
},
[205]={
["type"]=3,
["equip"]={
40205,
40303,
40304,
40305
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="dmg_addition_skill",
["bignum"]={
["value"]=500,
["unit"]=0
}
},
["grow"]={
["type"]="dmg_addition_skill",
["bignum"]={
["value"]=500,
["unit"]=0
}
}
},
[206]={
["type"]=3,
["equip"]={
40001,
40203,
40405
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="hpp_4",
["bignum"]={
["value"]=600,
["unit"]=0
}
},
["grow"]={
["type"]="hpp_4",
["bignum"]={
["value"]=600,
["unit"]=0
}
}
},
[207]={
["type"]=3,
["equip"]={
40402,
40403,
40404
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="atkp_7",
["bignum"]={
["value"]=700,
["unit"]=0
}
},
["grow"]={
["type"]="atkp_7",
["bignum"]={
["value"]=700,
["unit"]=0
}
}
},
[208]={
["type"]=3,
["equip"]={
40401,
40501,
40503
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="dmg_addition_normal",
["bignum"]={
["value"]=800,
["unit"]=0
}
},
["grow"]={
["type"]="dmg_addition_normal",
["bignum"]={
["value"]=800,
["unit"]=0
}
}
},
[209]={
["type"]=3,
["equip"]={
40502,
40504,
40505,
40601
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="hpp_4",
["bignum"]={
["value"]=900,
["unit"]=0
}
},
["grow"]={
["type"]="hpp_4",
["bignum"]={
["value"]=900,
["unit"]=0
}
}
},
[210]={
["type"]=3,
["equip"]={
40602,
40603,
40605,
40606
},
["base_lv_request"]=1,
["grow_lv_request"]=1,
["base"]={
["type"]="atkp_7",
["bignum"]={
["value"]=1000,
["unit"]=0
}
},
["grow"]={
["type"]="atkp_7",
["bignum"]={
["value"]=1000,
["unit"]=0
}
}
}
}
local config = {
data=collection,count=30
}
return config

View File

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

View File

@ -1,150 +0,0 @@
local const = {
["acceleration_time"]={
["value"]=2
},
["comprehend_time"]={
["value"]=5
},
["quick_pass_time"]={
["value"]=5
},
["summon_times_ad"]={
["value"]=3
},
["summon_times_ad_interval"]={
["value"]=10
},
["summon_times_1"]={
["value"]=11
},
["summon_times_1_cost"]={
["value"]=500
},
["summon_times_2"]={
["value"]=35
},
["summon_times_2_cost"]={
["value"]=1500
},
["mail_limit"]={
["value"]=100
},
["mail_time_limit"]={
["value"]=24
},
["summon_ad_min"]={
["value"]=11
},
["summon_ad_max"]={
["value"]=35
},
["idle_cd_gold"]={
["value"]=300
},
["idle_cd_equip"]={
["value"]=1080
},
["quick_idle_time"]={
["value"]=21600
},
["idle_time"]={
["value"]=43200
},
["mine_item_ad"]={
["value"]=2
},
["research_ad_time"]={
["value"]=30
},
["research_ad"]={
["value"]=4
},
["acceleration_duration"]={
["value"]=20
},
["train_atk"]={
["value"]=100000
},
["train_hp"]={
["value"]=100000
},
["quick_pass_cost"]={
["value"]=100
},
["quick_pass_level"]={
["value"]=300
},
["arena_reborn_cost"]={
["value"]=50
},
["change_name_cost"]={
["value"]=100
},
["mine_research_item"]={
["value"]=12
},
["idle_extra_time"]={
["value"]=3600
},
["cross_chapter_time_min"]={
["value"]=2
},
["mastery_reset_cost"]={
["value"]=20
},
["tutorial_mine"]={
["value"]=200
},
["tutorialtask_tutorialmax"]={
["value"]=20
},
["fail_popup_cd"]={
["value"]=600
},
["seven_day_time"]={
["value"]=15
},
["fail_popup_cd_time"]={
["value"]=10
},
["fail_popup_last_time"]={
["value"]=5
},
["fail_interface_last_time"]={
["value"]=2
},
["legacy_grid_open_1"]={
["value"]=70
},
["legacy_grid_open_2"]={
["value"]=170
},
["legacy_grid_open_3"]={
["value"]=260
},
["legacy_grid_open_4"]={
["value"]=350
},
["legacy_grid_open_5"]={
["value"]=550
},
["comprehend_cd"]={
["value"]=900
},
["mine_torch_ad_num"]={
["value"]=15
},
["mine_item_ad_num"]={
["value"]=1
},
["comprehend_min_stage"]={
["value"]=100
},
["dead_back_open"]={
["value"]=29
}
}
local config = {
data=const,count=48
}
return config

View File

@ -1,10 +0,0 @@
fileFormatVersion: 2
guid: 799bb62e7797e2044b59d683cd7e5bb9
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: 03c663139e4b068489c6e080d7d2a2fd
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: 5b388bf7a4924824d8d7c5902bb32a78
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: e53cb21c1e5aed244be59d9274afe328
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}

View File

@ -1,111 +0,0 @@
local func_open = {
["dungeon_gold"]={
["task"]=36
},
["dungeon_diamond"]={
["task"]=35
},
["dungeon_rune"]={
["stage"]=320
},
["dungeon_characteristic"]={
["task"]=9999
},
["arena"]={
["stage"]=150,
["tutorial_id"]=9
},
["summon_weapon"]={
["task"]=9
},
["summon_armor"]={
["task"]=17
},
["summon_legacy"]={
["task"]=40
},
["mine"]={
["stage"]=180,
["tutorial_id"]=10
},
["mine_research"]={
["stage"]=180
},
["idle"]={
["stage"]=100
},
["comprehend"]={
["stage"]=250
},
["quick_pass"]={
["stage"]=250
},
["train"]={
},
["mastery"]={
["task"]=11
},
["runes"]={
["stage"]=320
},
["shop"]={
["stage"]=10
},
["sevenday"]={
["stage"]=30
},
["signin"]={
["stage"]=30
},
["tutorialtask"]={
["stage"]=1
},
["dailytask"]={
["stage"]=20
},
["blessing"]={
["stage"]=40
},
["equip"]={
["task"]=9
},
["collection"]={
["task"]=41,
["tutorial_id"]=13
},
["auto_fight"]={
["task"]=14
},
["hero_open"]={
},
["weapon_open"]={
["task"]=9
},
["armor_open"]={
["task"]=17
},
["legacy_open"]={
["task"]=40
},
["battle_pass"]={
["stage"]=29
},
["fund_open"]={
["task"]=999999999
},
["battle_speed_up"]={
["stage"]=50
},
["mail_open"]={
["stage"]=40
},
["save_power_open"]={
["stage"]=100
}
}
local config = {
data=func_open,count=34
}
return config

View File

@ -1,10 +0,0 @@
fileFormatVersion: 2
guid: 7ed471fc91ac6e445a19871922e72bf5
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: 4f6df1a993946874c8b48b06b94eaf26
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}

View File

@ -1,42 +0,0 @@
local hero = {
[60001]={
["atk"]={
["value"]=1000000,
["unit"]=0
},
["hp"]={
["value"]=6000000,
["unit"]=0
},
["recover"]={
["value"]=0,
["unit"]=0
},
["spd"]={
["value"]=100,
["unit"]=0
},
["crit"]={
["value"]=0,
["unit"]=0
},
["crit_time"]={
["value"]=15000,
["unit"]=0
},
["atk_interval"]={
["value"]=300,
["unit"]=0
},
["hero_card"]="hero_head_1",
["model_id"]="p0001",
["airborne_num"]={
["value"]=3,
["unit"]=0
}
}
}
local config = {
data=hero,count=1
}
return config

View File

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

View File

@ -5,272 +5,92 @@ local item = {
["icon"]="1"
},
[2]={
["type"]=6,
["type"]=1,
["qlt"]=0,
["icon"]="2"
},
[3]={
["type"]=1,
["qlt"]=0,
["icon"]="3"
},
[4]={
["type"]=6,
["type"]=3,
["qlt"]=2,
["icon"]="4"
},
[5]={
["type"]=6,
["type"]=3,
["qlt"]=3,
["icon"]="5"
},
[6]={
["type"]=6,
["type"]=3,
["qlt"]=4,
["icon"]="6"
},
[7]={
["type"]=6,
["icon"]="7"
},
[8]={
["type"]=1,
["icon"]="8"
},
[9]={
["type"]=6,
["icon"]="9"
},
[10]={
["type"]=6,
["icon"]="10"
},
[11]={
["type"]=6,
["icon"]="11"
},
[12]={
["type"]=1,
["icon"]="12"
},
[13]={
["type"]=1,
["icon"]="13"
},
[14]={
["type"]=1,
["icon"]="14"
},
[15]={
["type"]=1,
["icon"]="15"
},
[16]={
["type"]=6,
["icon"]="16"
},
[17]={
["type"]=4,
["parameter"]=1,
["icon"]="17"
},
[18]={
["type"]=4,
["parameter"]=10,
["icon"]="18"
},
[19]={
["type"]=6,
["icon"]="19"
},
[20]={
["type"]=3,
["icon"]="20",
["box_drop"]={
{
["type"]=1,
["id"]=2,
["num"]=50,
["weight"]=2500
},
{
["type"]=1,
["id"]=2,
["num"]=100,
["weight"]=400
},
{
["type"]=1,
["id"]=2,
["num"]=150,
["weight"]=100
},
{
["type"]=1,
["id"]=12,
["num"]=50,
["weight"]=1500
},
{
["type"]=1,
["id"]=12,
["num"]=200,
["weight"]=1000
},
{
["type"]=1,
["id"]=12,
["num"]=800,
["weight"]=500
},
{
["type"]=1,
["id"]=9,
["num"]=1,
["weight"]=500
},
{
["type"]=1,
["id"]=9,
["num"]=3,
["weight"]=500
},
{
["type"]=1,
["id"]=10,
["num"]=1,
["weight"]=500
},
{
["type"]=1,
["id"]=11,
["num"]=1,
["weight"]=500
},
{
["type"]=2,
["id"]=10001,
["num"]=1,
["weight"]=500
},
{
["type"]=2,
["id"]=10101,
["num"]=1,
["weight"]=500
},
{
["type"]=2,
["id"]=10201,
["num"]=1,
["weight"]=500
},
{
["type"]=2,
["id"]=10301,
["num"]=1,
["weight"]=500
}
}
},
[21]={
["type"]=4,
["parameter"]=35,
["icon"]="21"
},
[22]={
["type"]=4,
["parameter"]=105,
["icon"]="22"
},
[23]={
[5001]={
["type"]=5,
["icon"]="23",
["reward"]={
{
["type"]=2,
["id"]=10005,
["count"]={
["value"]=1,
["unit"]=0
}
["parameter"]=5001,
["qlt"]=2,
["icon"]="5001"
},
{
["type"]=2,
["id"]=20005,
["count"]={
["value"]=1,
["unit"]=0
}
},
{
["type"]=2,
["id"]=30005,
["count"]={
["value"]=1,
["unit"]=0
}
}
}
},
[24]={
[5002]={
["type"]=5,
["icon"]="24",
["reward"]={
{
["type"]=1,
["id"]=12,
["count"]={
["value"]=100,
["unit"]=0
}
}
}
["parameter"]=5002,
["qlt"]=2,
["icon"]="5002"
},
[25]={
[5003]={
["type"]=5,
["icon"]="25",
["reward"]={
{
["type"]=1,
["id"]=12,
["count"]={
["value"]=500,
["unit"]=0
}
}
}
["parameter"]=5003,
["qlt"]=2,
["icon"]="5003"
},
[26]={
[5004]={
["type"]=5,
["icon"]="26",
["reward"]={
{
["type"]=1,
["id"]=12,
["count"]={
["value"]=1000,
["unit"]=0
}
}
}
["parameter"]=5004,
["qlt"]=2,
["icon"]="5004"
},
[27]={
[5005]={
["type"]=5,
["icon"]="27",
["reward"]={
{
["type"]=1,
["id"]=12,
["count"]={
["value"]=2000,
["unit"]=0
}
}
}
["parameter"]=5005,
["qlt"]=2,
["icon"]="5005"
},
[28]={
["type"]=1,
["icon"]="28"
[5006]={
["type"]=5,
["parameter"]=5006,
["qlt"]=3,
["icon"]="5006"
},
[5007]={
["type"]=5,
["parameter"]=5007,
["qlt"]=3,
["icon"]="5007"
},
[5008]={
["type"]=5,
["parameter"]=5008,
["qlt"]=3,
["icon"]="5008"
},
[5009]={
["type"]=5,
["parameter"]=5009,
["qlt"]=3,
["icon"]="5009"
},
[5010]={
["type"]=5,
["parameter"]=5010,
["qlt"]=3,
["icon"]="5010"
}
}
local config = {
data=item,count=28
data=item,count=16
}
return config

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -1,406 +1,12 @@
local LocalizationGlobalConst =
{
TASK_DAILY_TITLE = "TASK_DAILY_TITLE",
COUNTDOWN = "COUNTDOWN",
EVENT_TITLE = "EVENT_TITLE",
ACT_SEVENDAY_TITLE = "ACT_SEVENDAY_TITLE",
ACT_SEVENDAY_BTN = "ACT_SEVENDAY_BTN",
ACT_SEVENDAY_LEFTTIME = "ACT_SEVENDAY_LEFTTIME",
ACT_SEVENDAY_TASK = "ACT_SEVENDAY_TASK",
ACT_SEVENDAY_DESC = "ACT_SEVENDAY_DESC",
BTN_CLAIM = "BTN_CLAIM",
BTN_DONE = "BTN_DONE",
BTN_GO = "BTN_GO",
BTN_FREE = "BTN_FREE",
BTN_CONFIRM = "BTN_CONFIRM",
SUMMON_TIMES = "SUMMON_TIMES",
SUMMON_RATE_TITLE = "SUMMON_RATE_TITLE",
SUMMON_RATE_DESC1 = "SUMMON_RATE_DESC1",
SUMMON_RATE_DESC2 = "SUMMON_RATE_DESC2",
IDLE_TITLE1 = "IDLE_TITLE1",
IDLE_TITLE2 = "IDLE_TITLE2",
IDLE_BTN = "IDLE_BTN",
IDLE_DESC = "IDLE_DESC",
MAIL_TITLE = "MAIL_TITLE",
MAIL_COUNTDOWN = "MAIL_COUNTDOWN",
BTN_READ = "BTN_READ",
BTN_DELETE_ALL = "BTN_DELETE_ALL",
BTN_CLAIM_ALL = "BTN_CLAIM_ALL",
FIRST_CHARGE_REWARD_DESC = "FIRST_CHARGE_REWARD_DESC",
SHOP_DESC1 = "SHOP_DESC1",
SUMMON_DESC1 = "SUMMON_DESC1",
SUMMON_DESC2 = "SUMMON_DESC2",
SUMMON_DESC3 = "SUMMON_DESC3",
DAILY_AND_WEEK = "DAILY_AND_WEEK",
TREASURE_DESC1 = "TREASURE_DESC1",
FAMILY_HEIRLOOM = "FAMILY_HEIRLOOM",
ARMOR_DESC1 = "ARMOR_DESC1",
MAIN_BTN_1 = "MAIN_BTN_1",
QLT_DESC_1 = "QLT_DESC_1",
QLT_DESC_2 = "QLT_DESC_2",
QLT_DESC_3 = "QLT_DESC_3",
QLT_DESC_4 = "QLT_DESC_4",
QLT_DESC_5 = "QLT_DESC_5",
QLT_DESC_6 = "QLT_DESC_6",
QLT_DESC_7 = "QLT_DESC_7",
PROBABILITY_DESC1 = "PROBABILITY_DESC1",
PROBABILITY_DESC2 = "PROBABILITY_DESC2",
LEVEL_DESC1 = "LEVEL_DESC1",
WEAPON_DESC1 = "WEAPON_DESC1",
LV_POINT = "LV_POINT",
LOOK_AD_DESC1 = "LOOK_AD_DESC1",
LOOK_AD_DESC2 = "LOOK_AD_DESC2",
LOOK_AD_DESC3 = "LOOK_AD_DESC3",
NEXT_SUMMON_NUM = "NEXT_SUMMON_NUM",
MAX_SUMMON_NUM = "MAX_SUMMON_NUM",
CANCEL_1 = "CANCEL_1",
TIME_STR_DHM = "TIME_STR_DHM",
TIME_STR_M = "TIME_STR_M",
TIME_STR_MS = "TIME_STR_MS",
TIME_STR_S = "TIME_STR_S",
TIME_STR_DH = "TIME_STR_DH",
TIME_STR_HMS = "TIME_STR_HMS",
TIME_STR_HM = "TIME_STR_HM",
TIME_STR_D = "TIME_STR_D",
TIME_MS = "TIME_MS",
TIME_HMS = "TIME_HMS",
REMAIN_TIME_DESC1 = "REMAIN_TIME_DESC1",
SUPER_DESC1 = "SUPER_DESC1",
GIFT_DESC1 = "GIFT_DESC1",
DUMGEON_1 = "DUMGEON_1",
DUMGEON_2 = "DUMGEON_2",
DUMGEON_3 = "DUMGEON_3",
DUMGEON_4 = "DUMGEON_4",
BLESSING_1 = "BLESSING_1",
BLESSING_2 = "BLESSING_2",
BLESSING_3 = "BLESSING_3",
ACCELERATION = "ACCELERATION",
LOOK_AD = "LOOK_AD",
DAILY_SHOP = "DAILY_SHOP",
WEEK_SHOP = "WEEK_SHOP",
FIRST_BUY_AWARD = "FIRST_BUY_AWARD",
FIRST_BUT_AWARD_2 = "FIRST_BUT_AWARD_2",
EQUIP_TITLE = "EQUIP_TITLE ",
EQUIP_DESC_1 = "EQUIP_DESC_1",
EQUIP_DESC_2 = "EQUIP_DESC_2",
EQUIP_DESC_3 = "EQUIP_DESC_3",
EQUIP_DESC_4 = "EQUIP_DESC_4",
EQUIP_DESC_5 = "EQUIP_DESC_5",
EQUIP_DESC_6 = "EQUIP_DESC_6",
ATTR_NAME_1 = "ATTR_NAME_1",
ATTR_NAME_2 = "ATTR_NAME_2",
ATTR_NAME_3 = "ATTR_NAME_3",
ATTR_NAME_4 = "ATTR_NAME_4",
ATTR_NAME_5 = "ATTR_NAME_5",
ATTR_NAME_6 = "ATTR_NAME_6",
ATTR_NAME_7 = "ATTR_NAME_7",
ATTR_NAME_8 = "ATTR_NAME_8",
ATTR_NAME_9 = "ATTR_NAME_9",
ATTR_NAME_11 = "ATTR_NAME_11",
ATTR_NAME_20 = "ATTR_NAME_20",
CAN_NOT_DIGGING_DARK = "CAN_NOT_DIGGING_DARK",
MUST_PUT_IN_GROUND = "MUST_PUT_IN_GROUND",
ITEM_NOT_ENOUGH = "ITEM_NOT_ENOUGH",
MAX_LV_DESC = "MAX_LV_DESC",
RESET_DESC = "RESET_DESC",
STRENGTHEN_DESC = "STRENGTHEN_DESC",
MASTERY_DESC_1 = "MASTERY_DESC_1",
MASTERY_DESC_2 = "MASTERY_DESC_2",
MASTERY_DESC_3 = "MASTERY_DESC_3",
MASTERY_DESC_4 = "MASTERY_DESC_4",
MASTERY_DESC_5 = "MASTERY_DESC_5",
HERO_TITLE_1 = "HERO_TITLE_1",
HERO_TITLE_2 = "HERO_TITLE_2",
HERO_TITLE_3 = "HERO_TITLE_3",
HERO_TITLE_4 = "HERO_TITLE_4",
EQUIP_DESC_7 = "EQUIP_DESC_7",
EQUIP_DESC_8 = "EQUIP_DESC_8",
EQUIP_DESC_9 = "EQUIP_DESC_9",
EQUIP_DESC_10 = "EQUIP_DESC_10",
EQUIP_DESC_11 = "EQUIP_DESC_11",
EQUIP_DESC_12 = "EQUIP_DESC_12",
EQUIP_DESC_13 = "EQUIP_DESC_13",
CONGRATULATE_GET_DESC = "CONGRATULATE_GET_DESC",
MINING_TITLE = "MINING_TITLE",
NEXT = "Next",
MINING_TIPS_DESC1 = "MINING_TIPS_DESC1",
MINING_TIPS_DESC2 = "MINING_TIPS_DESC2",
MINING_TIPS_DESC3 = "MINING_TIPS_DESC3",
MINING_TIPS_DESC4 = "MINING_TIPS_DESC4",
RESEARCH_TITLE = "RESEARCH_TITLE",
RESEARCH_MAT = "RESEARCH_MAT",
RESEARCHING_QUICK_FINISH = "RESEARCHING_QUICK_FINISH",
RESEARCHING_JUMP_TIME = "RESEARCHING_JUMP_TIME",
RESEARCHING_DESC1 = "RESEARCHING_DESC1",
MAX = "MAX",
NEED_BEFORE_RESEARCH = "NEED_BEFORE_RESEARCH",
RESEARCH = "RESEARCH",
DISCONNECT_RELOGIN = "DISCONNECT_RELOGIN",
RECONNECT = "RECONNECT",
BTN_TEXT_OK = "BTN_TEXT_OK",
RELOGIN = "RELOGIN",
DUNGEON_GOLD = "DUNGEON_GOLD",
DUNGEON_TREASURE = "DUNGEON_TREASURE",
DUNGEON_MITHRIL = "DUNGEON_MITHRIL",
DUNGEON_CHARACTERISTIC = "DUNGEON_CHARACTERISTIC",
TRAIN_DESC_1 = "TRAIN_DESC_1",
TRAIN_DESC_2 = "TRAIN_DESC_2",
TRAIN_DESC_3 = "TRAIN_DESC_3",
TRAIN_DESC_4 = "TRAIN_DESC_4",
TRAIN_DESC_5 = "TRAIN_DESC_5",
TRAIN_DESC_6 = "TRAIN_DESC_6",
TRAIN_DESC_7 = "TRAIN_DESC_7",
TRAIN_DESC_8 = "TRAIN_DESC_8",
TRAIN_DESC_9 = "TRAIN_DESC_9",
TRAIN_DESC_10 = "TRAIN_DESC_10",
TRAIN_DESC_11 = "TRAIN_DESC_11",
TRAIN_DESC_12 = "TRAIN_DESC_12",
TRAIN_DESC_13 = "TRAIN_DESC_13",
TRAIN_DESC_14 = "TRAIN_DESC_14",
TRAIN_DESC_15 = "TRAIN_DESC_15",
TRAIN_DESC_16 = "TRAIN_DESC_16",
TRAIN_DESC_17 = "TRAIN_DESC_17",
TRAIN_DESC_18 = "TRAIN_DESC_18",
UPGRADE_DESC = "UPGRADE_DESC",
GET_REWARDS = "GET_REWARDS",
ARENA = "ARENA",
REFRESH_TIME = "REFRESH_TIME",
DUNGEON_DESC1 = "DUNGEON_DESC1",
CHAPTER_UNLOCK_DESC = "CHAPTER_UNLOCK_DESC",
LEVEL_UNLOCK_DESC = "LEVEL_UNLOCK_DESC",
ENTER_DUNGEON = "ENTER_DUNGEON",
TASK_COMPLETE_DESC = "TASK_COMPLETE_DESC",
DUNGEON_GOLD_HELP_CONTENT = "DUNGEON_GOLD_HELP_CONTENT",
DUNGEON_TREASURE_HELP_CONTENT = "DUNGEON_TREASURE_HELP_CONTENT",
DUNGEON_MITHRIL_HELP_CONTENT = "DUNGEON_MITHRIL_HELP_CONTENT",
DUNGEON_CHARACTERISTIC_HELP_CONTENT = "DUNGEON_CHARACTERISTIC_HELP_CONTENT",
ARENA_HELP_CONTENT = "ARENA_HELP_CONTENT",
GET_SEVER_ERROR = "GET_SEVER_ERROR",
ENTER_DUNGEON_AD = "ENTER_DUNGEON_AD",
DUNGEON_DIFFICULT = "DUNGEON_DIFFICULT",
PASS_REWARD = "PASS_REWARD",
ARENA_RULE_TITLE = "ARENA_RULE_TITLE",
ARENA_RULE_CONTENT = "ARENA_RULE_CONTENT",
LOOK_SEASON_REWARD = "LOOK_SEASON_REWARD",
ARENA_SUBJECT_DESC = "ARENA_SUBJECT_DESC",
SWARD = "SWARD",
WAND = "WAND",
KNIFE = "KNIFE",
SPEAR = "SPEAR",
REWARD_PREVIEW = "REWARD_PREVIEW",
ARENA_ENTER_TITLE = "ARENA_ENTER_TITLE",
ARENA_REFRESH_TIME_DESC = "ARENA_REFRESH_TIME_DESC",
CUR_RANK_LEVEL = "CUR_RANK_LEVEL",
SCORE_DESC = "SCORE_DESC",
RANK_ORDER = "RANK_ORDER",
HERO_RANKING_TITLE = "HERO_RANKING_TITLE",
ARENA_BATTLE_REWARD_TITLE = "ARENA_BATTLE_REWARD_TITLE",
ARENA_MAX_LEVEL = "ARENA_MAX_LEVEL",
BEST_DESC = "BEST_DESC",
RANKING_REWARD = "RANKING_REWARD",
RANK_LEVEL_REWARD = "RANK_LEVEL_REWARD",
RANKING_DESC1 = "RANKING_DESC1",
RANKING_DESC2 = "RANKING_DESC2",
CLEARING_REMAIN_DESC = "CLEARING_REMAIN_DESC",
NO_ONE_IN_THIS_SEGMENT = "NO_ONE_IN_THIS_SEGMENT",
NEED_SOMETHING = "NEED_SOMETHING",
SELF_RANKING = "SELF_RANKING",
RANKIN_LEVEL_DESC = "RANKIN_LEVEL_DESC",
ARENA_RANK_DESC_1 = "ARENA_RANK_DESC_1",
SELF_RANK_ORDER = "SELF_RANK_ORDER",
SEVEN_DAY_SIGNIN_TITLE = "SEVEN_DAY_SIGNIN_TITLE",
DAY_DESC1 = "DAY_DESC1",
SEVEN_DAY_DESC = "SEVEN_DAY_DESC",
NOT_IN_RANK = "NOT_IN_RANK",
DIAMOND_GIFT_TITLE = "DIAMOND_GIFT_TITLE",
LIMIT_GIFT = "LIMIT_GIFT",
DAILY_GIFT = "DAILY_GIFT",
WEEK_GIFT = "WEEK_GIFT",
MALL_GIFT = "MALL_GIFT",
WEAPON_SUMMON_TITLE = "WEAPON_SUMMON_TITLE",
ARMOR_SUMMON_TITLE = "ARMOR_SUMMON_TITLE",
FAMILY_HEIRLOOM_SUMMON_TITLE = "FAMILY_HEIRLOOM_SUMMON_TITLE",
CHAPTER_DESC_1 = "CHAPTER_DESC_1",
CHAPTER_DESC_2 = "CHAPTER_DESC_2",
CHAPTER_DESC_3 = "CHAPTER_DESC_3",
CHAPTER_DESC_4 = "CHAPTER_DESC_4",
LIMIT_DESC = "LIMIT_DESC",
QLT_DESC = "QLT_DESC",
ITEM_DESC = "ITEM_DESC",
IDLE_DROP_DESC_1 = "IDLE_DROP_DESC_1",
IDLE_DROP_DESC_2 = "IDLE_DROP_DESC_2",
IDLE_DROP_DESC_3 = "IDLE_DROP_DESC_3",
GET_REWARDS_1 = "GET_REWARDS_1",
EXT_REWARDS = "EXT_REWARDS",
CAN_NOT_DIG_GROUND = "CAN_NOT_DIG_GROUND",
SEVEN_DAY_DESC_1 = "SEVEN_DAY_DESC_1",
SEVEN_DAY_DESC_2 = "SEVEN_DAY_DESC_2",
SEVEN_DAY_DESC_3 = "SEVEN_DAY_DESC_3",
SEVEN_DAY_DESC_4 = "SEVEN_DAY_DESC_4",
DAILY_TASK_DESC_1 = "DAILY_TASK_DESC_1",
DAILY_TASK_DESC_2 = "DAILY_TASK_DESC_2",
GAME_SETTING_DESC_1 = "GAME_SETTING_DESC_1",
GAME_SETTING_DESC_2 = "GAME_SETTING_DESC_2",
GAME_SETTING_DESC_3 = "GAME_SETTING_DESC_3",
GAME_SETTING_DESC_4 = "GAME_SETTING_DESC_4",
GAME_SETTING_DESC_5 = "GAME_SETTING_DESC_5",
GAME_SETTING_FACEBOOK = "GAME_SETTING_FACEBOOK",
GAME_SETTING_DISCORD = "GAME_SETTING_DISCORD",
GAME_SETTING_DESC_6 = "GAME_SETTING_DESC_6",
GAME_SETTING_DESC_7 = "GAME_SETTING_DESC_7",
GAME_SETTING_DESC_8 = "GAME_SETTING_DESC_8",
GAME_SETTING_DESC_9 = "GAME_SETTING_DESC_9",
GAME_SETTING_DESC_10 = "GAME_SETTING_DESC_10",
GAME_SETTING_DESC_11 = "GAME_SETTING_DESC_11",
GAME_SETTING_DESC_12 = "GAME_SETTING_DESC_12",
GAME_SETTING_DESC_13 = "GAME_SETTING_DESC_13",
GAME_SETTING_DESC_14 = "GAME_SETTING_DESC_14",
TUTORIAL_MINE = "TUTORIAL_MINE",
HAS_RESEARCHING = "HAS_RESEARCHING",
BATTLE_FAILED = "BATTLE_FAILED",
BATTLE_FAIL_DESC_1 = "BATTLE_FAIL_DESC_1",
BATTLE_FAIL_DESC_2 = "BATTLE_FAIL_DESC_2",
BATTLE_FAIL_DESC_3 = "BATTLE_FAIL_DESC_3",
BATTLE_FAIL_DESC_4 = "BATTLE_FAIL_DESC_4",
ACCOUNT_DESC_1 = "ACCOUNT_DESC_1",
ACCOUNT_DESC_2 = "ACCOUNT_DESC_2",
LOGIN_BY_GOOGLE = "LOGIN_BY_GOOGLE",
LOGIN_BY_APPLE = "LOGIN_BY_APPLE",
DELETE_ACCOUNT = "DELETE_ACCOUNT",
BLESSING_TITLE = "BLESSING_TITLE",
BLESSING_TITLE_1 = "BLESSING_TITLE_1",
BLESSING_TITLE_2 = "BLESSING_TITLE_2",
BLESSING_TITLE_3 = "BLESSING_TITLE_3",
BLESSING_DESC_1 = "BLESSING_DESC_1",
BLESSING_DESC_2 = "BLESSING_DESC_2",
BLESSING_DESC_3 = "BLESSING_DESC_3",
BLESSING_DESC_4 = "BLESSING_DESC_4",
GET = "GET",
ACT_SEVENDAY_DESC_1 = "ACT_SEVENDAY_DESC_1",
BATTLE_SPEED_UP_DESC_1 = "BATTLE_SPEED_UP_DESC_1",
BATTLE_SPEED_UP_DESC_2 = "BATTLE_SPEED_UP_DESC_2",
BATTLE_SPEED_UP_DESC_3 = "BATTLE_SPEED_UP_DESC_3",
BATTLE_SPEED_UP_DESC_4 = "BATTLE_SPEED_UP_DESC_4",
BATTLE_SPEED_UP_DESC_5 = "BATTLE_SPEED_UP_DESC_5",
BATTLE_SPEED_UP_DESC_6 = "BATTLE_SPEED_UP_DESC_6",
BATTLE_FAIL = "BATTLE_FAIL",
BATTLE_VICTORY = "BATTLE_VICTORY",
CLICK_CLOSE_DESC = "CLICK_CLOSE_DESC",
FUNC_OPEN_LEVEL = "FUNC_OPEN_LEVEL",
FUNC_OPEN_STAGE = "FUNC_OPEN_STAGE",
FUNC_OPEN_TASK = "FUNC_OPEN_TASK",
TASK_DESC = "TASK_DESC",
TRAIN_DESC_19 = "TRAIN_DESC_19",
TRAIN_DESC_20 = "TRAIN_DESC_20",
RUNE_TITLE_1 = "RUNE_TITLE_1",
RUNE_TITLE_2 = "RUNE_TITLE_2",
RUNE_TITLE_3 = "RUNE_TITLE_3",
RUNE_TITLE_4 = "RUNE_TITLE_4",
RUNE_TITLE_5 = "RUNE_TITLE_5",
RUNE_TITLE_6 = "RUNE_TITLE_6",
RUNE_TITLE_7 = "RUNE_TITLE_7",
BATTLE_SPEED_UP_DESC_7 = "BATTLE_SPEED_UP_DESC_7",
MASTERY_DESC_6 = "MASTERY_DESC_6",
MESSAGE_BOX_TITLE = "MESSAGE_BOX_TITLE",
RESEARCH_COMPLETE = "RESEARCH_COMPLETE",
BOUNTY_DESC_1 = "BOUNTY_DESC_1",
BOUNTY_DESC_2 = "BOUNTY_DESC_2",
BOUNTY_DESC_4 = "BOUNTY_DESC_4",
BOUNTY_DESC_5 = "BOUNTY_DESC_5",
BOUNTY_DESC_6 = "BOUNTY_DESC_6",
BOUNTY_DESC_7 = "BOUNTY_DESC_7",
BOUNTY_DESC_8 = "BOUNTY_DESC_8",
BOUNTY_DESC_9 = "BOUNTY_DESC_9",
BOUNTY_DESC_10 = "BOUNTY_DESC_10",
BOUNTY_DESC_11 = "BOUNTY_DESC_11",
BOUNTY_DESC_12 = "BOUNTY_DESC_12",
BOUNTY_DESC_13 = "BOUNTY_DESC_13",
BOUNTY_DESC_14 = "BOUNTY_DESC_14",
BOUNTY_DESC_15 = "BOUNTY_DESC_15",
AUTO_FIGHT = "AUTO_FIGHT",
OPEN_AUTO_FIGHT = "OPEN_AUTO_FIGHT",
BATTLE_NEXT_WAVE = "BATTLE_NEXT_WAVE",
BATTLE_WAVE = "BATTLE_WAVE",
BATTLE_LEFT = "BATTLE_LEFT",
BATTLE_STAGE_FAILED_DESC = "BATTLE_STAGE_FAILED_DESC",
POWER = "POWER",
BATTLE_CHAPTER_PASS = "BATTLE_CHAPTER_PASS",
BATTLE_CHAPTER_DESC = "BATTLE_CHAPTER_DESC",
BATTLE_LIMIT_DESC = "BATTLE_LIMIT_DESC",
BATTLE_CHAPTER_STEP_DESC = "BATTLE_CHAPTER_STEP_DESC",
BATTLE_PAUSE = "BATTLE_PAUSE",
BATTLE_ATTR = "BATTLE_ATTR",
BATTLE_RESUME = "BATTLE_RESUME",
BATTLE_DUNGEON_EXIT = "BATTLE_DUNGEON_EXIT",
TRAIN_DESC_21 = "TRAIN_DESC_21",
TRAIN_DESC_22 = "TRAIN_DESC_22",
HELP_DESC = "HELP_DESC",
HISTORY_RECORD = "HISTORY_RECORD",
NEW_RECORD = "NEW_RECORD",
BATTLE_END = "BATTLE_END",
CUR_RECORD = "CUR_RECORD",
CLICK_CLOSE_DESC_2 = "CLICK_CLOSE_DESC_2",
BATTLE_REVIVE_TITLE = "BATTLE_REVIVE_TITLE",
BATTLE_REVIVE_AD = "BATTLE_REVIVE_AD",
BATTLE_REVIVE = "BATTLE_REVIVE",
SELECT_LEGACY_DESC = "SELECT_LEGACY_DESC",
SELECT_ONE_LEGACY = "SELECT_ONE_LEGACY",
CHANGE_OTHER = "CHANGE_OTHER",
VIEW_SELECTED_LEGACY = "VIEW_SELECTED_LEGACY",
ARENA_CHANGE_FINISH_DESC = "ARENA_CHANGE_FINISH_DESC",
ARENA_SCORE = "ARENA_SCORE",
BATTLE_AGAIN = "BATTLE_AGAIN",
RECHARGE_TITLE = "RECHARGE_TITLE",
BATTLE_ERROR = "BATTLE_ERROR",
ARENA_CALCULATE = "ARENA_CALCULATE",
RENAME_DESC_1 = "RENAME_DESC_1",
RENAME_DESC_2 = "RENAME_DESC_2",
RENAME_DESC_3 = "RENAME_DESC_3",
RENAME_DESC_4 = "RENAME_DESC_4",
SHIELDED_WORD_DESC = "SHIELDED_WORD_DESC",
NAME_ALREADY_USED_DESC = "NAME_ALREADY_USED_DESC",
NEW_PLAYER_DESC = "NEW_PLAYER_DESC",
LANGUAGE_DESC = "LANGUAGE_DESC",
ARENA_FIGHT_FORBID = "ARENA_FIGHT_FORBID",
FUNDCHAPTER_TITLE = "FUNDCHAPTER_TITLE",
FUNDCHAPTER_TITLE_DESC = "FUNDCHAPTER_TITLE_DESC",
ARENA_SEGMENT_TITLE = "ARENA_SEGMENT_TITLE",
ARENA_SEGMENT_TITLE_DESC = "ARENA_SEGMENT_TITLE_DESC",
RECEIVE_REWARD = "RECEIVE_REWARD",
REWARD_TITLE = "REWARD_TITLE",
MAX_SCORE = "MAX_SCORE",
SAVE_POWER_DESC_2 = "SAVE_POWER_DESC_2",
SAVE_POWER_DESC_3 = "SAVE_POWER_DESC_3",
SAVE_POWER_DESC_4 = "SAVE_POWER_DESC_4",
FUND_PROGRESS = "FUND_PROGRESS",
FUND_LOW_TX = "FUND_LOW_TX",
FUND_HIGH_TX = "FUND_HIGH_TX",
NO_NETWORK = "NO_NETWORK",
NETWORK_ERROE_1 = "NETWORK_ERROE_1",
REPEAT_PAY_ORDER = "REPEAT_PAY_ORDER",
BATTLE_STAGE_FAILED_DESC_2 = "BATTLE_STAGE_FAILED_DESC_2",
ACTIVITY_OVER_DESC = "ACTIVITY_OVER_DESC",
BINDED_DESC = "BINDED_DESC",
SWITCH_ACCOUNT_DESC = "SWITCH_ACCOUNT_DESC",
BATTLE_MISS = "BATTLE_MISS",
MAINTAIN = "MAINTAIN",
FORBIDDEN = "FORBIDDEN",
OTHER_LOGIN = "OTHER_LOGIN",
NO_ADS = "NO_ADS",
ACCOUNT_EXCHANGE_DESC_1 = "ACCOUNT_EXCHANGE_DESC_1",
ACCOUNT_EXCHANGE_DESC_2 = "ACCOUNT_EXCHANGE_DESC_2",
BESURE_DELETE_TIPS_DESC = "BESURE_DELETE_TIPS_DESC",
BESURE_DELETE_ACCOUNT_DESC = "BESURE_DELETE_ACCOUNT_DESC",
LOADING_DESC = "LOADING_DESC",
CLICK_COPY_ACOUNT_DESC = "CLICK_COPY_ACOUNT_DESC",
APP = "APP",
BLESS_DESC = "BLESS_DESC",
SKIP_AD_DESC = "SKIP_AD_DESC",
ARENA_SETTLE_DESC = "ARENA_SETTLE_DESC",
PAY_FAILED_DESC_1 = "PAY_FAILED_DESC_1",
MONTH_CARD_DESC = "MONTH_CARD_DESC",
SETTING_DESC_22 = "SETTING_DESC_22",
SETTING_DESC_23 = "SETTING_DESC_23",
SETTING_DESC_25 = "SETTING_DESC_25",
}
return LocalizationGlobalConst

View File

@ -1,109 +0,0 @@
local mail = {
[1]={
["type"]=1,
["time_type"]=1,
["time_send"]={
0,
0,
0
},
["time"]=24,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=1000,
["unit"]=0
}
}
}
},
[2]={
["type"]=2,
["time_type"]=1,
["time_send"]={
0,
0,
0
},
["time"]=24,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=1000,
["unit"]=0
}
}
}
},
[3]={
["type"]=3,
["time_type"]=2,
["time_send"]={
5,
12,
0,
0
},
["time"]=24,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=3000,
["unit"]=0
}
}
}
},
[4]={
["type"]=3,
["time_type"]=2,
["time_send"]={
6,
12,
0,
0
},
["time"]=24,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=5000,
["unit"]=0
}
}
}
},
[5]={
["type"]=3,
["time_type"]=2,
["time_send"]={
7,
12,
0,
0
},
["time"]=24,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=7000,
["unit"]=0
}
}
}
}
}
local config = {
data=mail,count=5
}
return config

View File

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

View File

@ -1,752 +0,0 @@
local mall_act = {
[10000]={
["type"]=6,
["sort"]=1000000,
["reward"]={
{
["type"]=2,
["id"]=10305,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["limit"]=1
},
[10001]={
["type"]=1,
["recharge_id"]=5,
["sort"]=1000100,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=7500,
["unit"]=0
}
},
{
["type"]=1,
["id"]=21,
["count"]={
["value"]=20,
["unit"]=0
}
},
{
["type"]=1,
["id"]=1,
["count"]={
["value"]=1000000,
["unit"]=0
}
}
},
["condition"]={
1,
100
},
["continued_time"]=259200,
["limit"]=1,
["effect"]="ui_mall_limit_gift_01",
["bg"]="recharge_bg_13",
["value"]=600
},
[10002]={
["type"]=1,
["recharge_id"]=5,
["sort"]=1000200,
["reward"]={
{
["type"]=2,
["id"]=10004,
["count"]={
["value"]=100,
["unit"]=0
}
},
{
["type"]=2,
["id"]=20004,
["count"]={
["value"]=100,
["unit"]=0
}
},
{
["type"]=2,
["id"]=30004,
["count"]={
["value"]=100,
["unit"]=0
}
},
{
["type"]=4,
["id"]=40305,
["count"]={
["value"]=100,
["unit"]=0
}
}
},
["condition"]={
1,
200
},
["continued_time"]=259200,
["limit"]=1,
["effect"]="ui_mall_limit_gift_02",
["bg"]="recharge_bg_13",
["value"]=600
},
[10003]={
["type"]=1,
["recharge_id"]=10,
["sort"]=1000300,
["reward"]={
{
["type"]=1,
["id"]=9,
["count"]={
["value"]=200,
["unit"]=0
}
},
{
["type"]=1,
["id"]=10,
["count"]={
["value"]=40,
["unit"]=0
}
},
{
["type"]=1,
["id"]=11,
["count"]={
["value"]=40,
["unit"]=0
}
},
{
["type"]=1,
["id"]=12,
["count"]={
["value"]=10000,
["unit"]=0
}
}
},
["condition"]={
1,
300
},
["continued_time"]=259200,
["limit"]=1,
["effect"]="ui_mall_limit_gift_06",
["bg"]="recharge_bg_14",
["value"]=600
},
[10004]={
["type"]=1,
["recharge_id"]=10,
["sort"]=1000400,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=30000,
["unit"]=0
}
},
{
["type"]=1,
["id"]=6,
["count"]={
["value"]=10,
["unit"]=0
}
},
{
["type"]=1,
["id"]=14,
["count"]={
["value"]=50000,
["unit"]=0
}
}
},
["condition"]={
1,
400
},
["continued_time"]=259200,
["limit"]=1,
["effect"]="ui_mall_limit_gift_07",
["bg"]="recharge_bg_14",
["value"]=600
},
[10005]={
["type"]=1,
["recharge_id"]=10,
["sort"]=1000500,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=100000,
["unit"]=0
}
}
},
["condition"]={
1,
500
},
["continued_time"]=259200,
["limit"]=1,
["effect"]="ui_mall_limit_gift_01",
["bg"]="recharge_bg_14",
["value"]=600
},
[10006]={
["type"]=1,
["recharge_id"]=12,
["sort"]=1000600,
["reward"]={
{
["type"]=2,
["id"]=10007,
["count"]={
["value"]=100,
["unit"]=0
}
},
{
["type"]=2,
["id"]=20306,
["count"]={
["value"]=100,
["unit"]=0
}
},
{
["type"]=2,
["id"]=30206,
["count"]={
["value"]=100,
["unit"]=0
}
},
{
["type"]=4,
["id"]=40505,
["count"]={
["value"]=100,
["unit"]=0
}
}
},
["condition"]={
1,
800
},
["continued_time"]=259200,
["limit"]=1,
["effect"]="ui_mall_limit_gift_03",
["bg"]="recharge_bg_10",
["value"]=600
},
[10101]={
["type"]=1,
["recharge_id"]=5,
["sort"]=1010100,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=7500,
["unit"]=0
}
},
{
["type"]=1,
["id"]=9,
["count"]={
["value"]=125,
["unit"]=0
}
},
{
["type"]=1,
["id"]=10,
["count"]={
["value"]=25,
["unit"]=0
}
},
{
["type"]=1,
["id"]=11,
["count"]={
["value"]=25,
["unit"]=0
}
}
},
["condition"]={
3,
47
},
["continued_time"]=259200,
["limit"]=1,
["effect"]="ui_mall_limit_gift_06",
["bg"]="recharge_bg_13",
["value"]=600
},
[10102]={
["type"]=1,
["recharge_id"]=5,
["sort"]=1010200,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=15000,
["unit"]=0
}
},
{
["type"]=1,
["id"]=4,
["count"]={
["value"]=10,
["unit"]=0
}
},
{
["type"]=1,
["id"]=5,
["count"]={
["value"]=10,
["unit"]=0
}
},
{
["type"]=1,
["id"]=6,
["count"]={
["value"]=10,
["unit"]=0
}
}
},
["condition"]={
3,
72
},
["continued_time"]=259200,
["limit"]=1,
["effect"]="ui_mall_limit_gift_07",
["bg"]="recharge_bg_13",
["value"]=600
},
[10103]={
["type"]=1,
["recharge_id"]=10,
["sort"]=1010300,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=30000,
["unit"]=0
}
},
{
["type"]=1,
["id"]=16,
["count"]={
["value"]=20,
["unit"]=0
}
},
{
["type"]=2,
["id"]=10005,
["count"]={
["value"]=100,
["unit"]=0
}
}
},
["condition"]={
3,
91
},
["continued_time"]=259200,
["limit"]=1,
["effect"]="ui_mall_limit_gift_05",
["bg"]="recharge_bg_14",
["value"]=600
},
[10104]={
["type"]=1,
["recharge_id"]=12,
["sort"]=1010400,
["reward"]={
{
["type"]=2,
["id"]=10306,
["count"]={
["value"]=100,
["unit"]=0
}
},
{
["type"]=2,
["id"]=20006,
["count"]={
["value"]=100,
["unit"]=0
}
},
{
["type"]=2,
["id"]=30006,
["count"]={
["value"]=100,
["unit"]=0
}
},
{
["type"]=4,
["id"]=40501,
["count"]={
["value"]=100,
["unit"]=0
}
}
},
["condition"]={
3,
150
},
["continued_time"]=259200,
["limit"]=1,
["effect"]="ui_mall_limit_gift_03",
["bg"]="recharge_bg_10",
["value"]=600
},
[10105]={
["type"]=1,
["recharge_id"]=12,
["sort"]=1010500,
["reward"]={
{
["type"]=2,
["id"]=10107,
["count"]={
["value"]=100,
["unit"]=0
}
},
{
["type"]=2,
["id"]=20106,
["count"]={
["value"]=100,
["unit"]=0
}
},
{
["type"]=2,
["id"]=30306,
["count"]={
["value"]=100,
["unit"]=0
}
},
{
["type"]=4,
["id"]=40502,
["count"]={
["value"]=100,
["unit"]=0
}
}
},
["condition"]={
3,
200
},
["continued_time"]=259200,
["limit"]=1,
["effect"]="ui_mall_limit_gift_03",
["bg"]="recharge_bg_10",
["value"]=600
},
[10106]={
["type"]=1,
["recharge_id"]=17,
["sort"]=1010600,
["reward"]={
{
["type"]=2,
["id"]=10008,
["count"]={
["value"]=100,
["unit"]=0
}
}
},
["condition"]={
3,
300
},
["continued_time"]=259200,
["limit"]=1,
["effect"]="ui_mall_limit_gift_04",
["bg"]="recharge_bg_11",
["value"]=600
},
[10201]={
["type"]=1,
["recharge_id"]=10,
["sort"]=1020100,
["reward"]={
{
["type"]=2,
["id"]=10205,
["count"]={
["value"]=100,
["unit"]=0
}
},
{
["type"]=2,
["id"]=20305,
["count"]={
["value"]=100,
["unit"]=0
}
},
{
["type"]=2,
["id"]=30205,
["count"]={
["value"]=100,
["unit"]=0
}
}
},
["condition"]={
4,
5
},
["continued_time"]=259200,
["limit"]=1,
["effect"]="ui_mall_limit_gift_05",
["bg"]="recharge_bg_14",
["value"]=600
},
[10202]={
["type"]=1,
["recharge_id"]=12,
["sort"]=1020200,
["reward"]={
{
["type"]=2,
["id"]=10206,
["count"]={
["value"]=100,
["unit"]=0
}
},
{
["type"]=2,
["id"]=20206,
["count"]={
["value"]=100,
["unit"]=0
}
},
{
["type"]=2,
["id"]=30106,
["count"]={
["value"]=100,
["unit"]=0
}
}
},
["condition"]={
4,
6
},
["continued_time"]=259200,
["limit"]=1,
["effect"]="ui_mall_limit_gift_03",
["bg"]="recharge_bg_10",
["value"]=600
},
[10301]={
["type"]=1,
["recharge_id"]=10,
["sort"]=1030100,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=15000,
["unit"]=0
}
},
{
["type"]=4,
["id"]=40401,
["count"]={
["value"]=300,
["unit"]=0
}
}
},
["condition"]={
6,
5
},
["continued_time"]=259200,
["limit"]=1,
["effect"]="ui_mall_limit_gift_05",
["bg"]="recharge_bg_14",
["value"]=600
},
[10302]={
["type"]=1,
["recharge_id"]=12,
["sort"]=1030200,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=30000,
["unit"]=0
}
},
{
["type"]=4,
["id"]=40503,
["count"]={
["value"]=300,
["unit"]=0
}
}
},
["condition"]={
6,
6
},
["continued_time"]=259200,
["limit"]=1,
["effect"]="ui_mall_limit_gift_03",
["bg"]="recharge_bg_10",
["value"]=600
},
[20001]={
["type"]=2,
["recharge_id"]=12,
["sort"]=2000100,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=30000,
["unit"]=0
}
}
},
["limit"]=1,
["effect"]="ui_mall_limit_gift_09",
["bg"]="recharge_bg_16",
["value"]=2000
},
[30001]={
["type"]=3,
["recharge_id"]=5,
["sort"]=3000100,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=7500,
["unit"]=0
}
}
},
["limit"]=1,
["effect"]="ui_mall_limit_gift_10",
["bg"]="recharge_bg_17",
["value"]=2000
},
[40001]={
["type"]=4,
["recharge_id"]=10,
["sort"]=4000100,
["daily_reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=5000,
["unit"]=0
}
},
{
["type"]=1,
["id"]=9,
["count"]={
["value"]=30,
["unit"]=0
}
}
},
["effect_continued_time"]=30,
["limit"]=9999,
["effect"]="ui_mall_limit_gift_08",
["bg"]="recharge_bg_8",
["value"]=1500
},
[60001]={
["type"]=7,
["recharge_id"]=5,
["limit"]=1
},
[60002]={
["type"]=7,
["recharge_id"]=11,
["limit"]=1
},
[70001]={
["type"]=8,
["recharge_id"]=12,
["start_time"]="2023-03-15 00:00:00",
["end_time"]="2023-04-14 00:00:00",
["limit"]=1
}
}
local config = {
data=mall_act,count=23
}
return config

View File

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

View File

@ -1,349 +0,0 @@
local mall_daily = {
[1001]={
["type"]=1,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=500,
["unit"]=0
}
}
},
["limit"]=1,
["sort"]=100
},
[1002]={
["type"]=1,
["recharge_id"]=2,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=3000,
["unit"]=0
}
},
{
["type"]=1,
["id"]=4,
["count"]={
["value"]=3,
["unit"]=0
}
},
{
["type"]=1,
["id"]=5,
["count"]={
["value"]=3,
["unit"]=0
}
},
{
["type"]=1,
["id"]=6,
["count"]={
["value"]=3,
["unit"]=0
}
}
},
["limit"]=2,
["sort"]=200,
["value"]=300
},
[1003]={
["type"]=1,
["recharge_id"]=3,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=4500,
["unit"]=0
}
},
{
["type"]=1,
["id"]=8,
["count"]={
["value"]=100,
["unit"]=0
}
},
{
["type"]=1,
["id"]=21,
["count"]={
["value"]=3,
["unit"]=0
}
}
},
["limit"]=2,
["sort"]=300,
["value"]=300
},
[1004]={
["type"]=1,
["recharge_id"]=5,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=7500,
["unit"]=0
}
},
{
["type"]=1,
["id"]=4,
["count"]={
["value"]=5,
["unit"]=0
}
},
{
["type"]=1,
["id"]=5,
["count"]={
["value"]=5,
["unit"]=0
}
},
{
["type"]=1,
["id"]=16,
["count"]={
["value"]=5,
["unit"]=0
}
}
},
["limit"]=2,
["sort"]=400,
["value"]=300
},
[1005]={
["type"]=1,
["recharge_id"]=10,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=15000,
["unit"]=0
}
},
{
["type"]=1,
["id"]=9,
["count"]={
["value"]=100,
["unit"]=0
}
},
{
["type"]=1,
["id"]=10,
["count"]={
["value"]=10,
["unit"]=0
}
},
{
["type"]=1,
["id"]=11,
["count"]={
["value"]=10,
["unit"]=0
}
},
{
["type"]=1,
["id"]=12,
["count"]={
["value"]=5000,
["unit"]=0
}
}
},
["limit"]=2,
["sort"]=500,
["value"]=300
},
[2001]={
["type"]=2,
["recharge_id"]=5,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=9000,
["unit"]=0
}
},
{
["type"]=1,
["id"]=4,
["count"]={
["value"]=7,
["unit"]=0
}
},
{
["type"]=1,
["id"]=5,
["count"]={
["value"]=7,
["unit"]=0
}
},
{
["type"]=1,
["id"]=6,
["count"]={
["value"]=7,
["unit"]=0
}
}
},
["limit"]=2,
["sort"]=100100,
["value"]=400
},
[2002]={
["type"]=2,
["recharge_id"]=10,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=20000,
["unit"]=0
}
},
{
["type"]=1,
["id"]=8,
["count"]={
["value"]=500,
["unit"]=0
}
},
{
["type"]=1,
["id"]=22,
["count"]={
["value"]=3,
["unit"]=0
}
}
},
["limit"]=2,
["sort"]=100200,
["value"]=400
},
[2003]={
["type"]=2,
["recharge_id"]=11,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=30000,
["unit"]=0
}
},
{
["type"]=1,
["id"]=4,
["count"]={
["value"]=20,
["unit"]=0
}
},
{
["type"]=1,
["id"]=5,
["count"]={
["value"]=20,
["unit"]=0
}
},
{
["type"]=1,
["id"]=16,
["count"]={
["value"]=20,
["unit"]=0
}
}
},
["limit"]=2,
["sort"]=100300,
["value"]=400
},
[2004]={
["type"]=2,
["recharge_id"]=12,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=40000,
["unit"]=0
}
},
{
["type"]=1,
["id"]=9,
["count"]={
["value"]=200,
["unit"]=0
}
},
{
["type"]=1,
["id"]=10,
["count"]={
["value"]=20,
["unit"]=0
}
},
{
["type"]=1,
["id"]=11,
["count"]={
["value"]=20,
["unit"]=0
}
},
{
["type"]=1,
["id"]=12,
["count"]={
["value"]=15000,
["unit"]=0
}
}
},
["limit"]=2,
["sort"]=100400,
["value"]=400
}
}
local config = {
data=mall_daily,count=9
}
return config

View File

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

View File

@ -1,96 +0,0 @@
local mall_treasure = {
[1]={
["recharge_id"]=1,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=1500,
["unit"]=0
}
}
},
["bg"]="recharge_diamond_1",
["limit"]=1
},
[2]={
["recharge_id"]=5,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=7500,
["unit"]=0
}
}
},
["bg"]="recharge_diamond_2",
["limit"]=1
},
[3]={
["recharge_id"]=10,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=15000,
["unit"]=0
}
}
},
["bg"]="recharge_diamond_3",
["limit"]=1
},
[4]={
["recharge_id"]=12,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=30000,
["unit"]=0
}
}
},
["bg"]="recharge_diamond_4",
["limit"]=1
},
[5]={
["recharge_id"]=15,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=75000,
["unit"]=0
}
}
},
["bg"]="recharge_diamond_5",
["limit"]=1
},
[6]={
["recharge_id"]=17,
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=150000,
["unit"]=0
}
}
},
["bg"]="recharge_diamond_6",
["limit"]=1
}
}
local config = {
data=mall_treasure,count=6
}
return config

View File

@ -1,10 +0,0 @@
fileFormatVersion: 2
guid: 4fed9ae52ff8728488929d1b10939996
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: e4ff66a3800442e4e822fa7ca21bb1da
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: e7755abb0aa059e418bd2c550c9d725a
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}

View File

@ -1,508 +0,0 @@
local mine_element = {
[1]={
["type"]=1,
["area"]={
1,
1
}
},
[2]={
["type"]=2,
["icon"]="mine_element_1",
["pickaxe_cost"]=1,
["area"]={
1,
1
}
},
[3]={
["type"]=2,
["icon"]="mine_element_2",
["pickaxe_cost"]=1,
["area"]={
1,
1
},
["reward"]={
{
["type"]=1,
["id"]=12,
["count"]={
["value"]=30,
["unit"]=0
}
}
},
["reward_location"]={
{
1.0,
1.0
}
}
},
[4]={
["type"]=2,
["icon"]="mine_element_3",
["pickaxe_cost"]=1,
["area"]={
1,
1
},
["reward"]={
{
["type"]=1,
["id"]=12,
["count"]={
["value"]=100,
["unit"]=0
}
}
},
["reward_location"]={
{
1.0,
1.0
}
}
},
[5]={
["type"]=2,
["icon"]="mine_element_4",
["pickaxe_cost"]=1,
["area"]={
1,
1
},
["reward"]={
{
["type"]=1,
["id"]=12,
["count"]={
["value"]=300,
["unit"]=0
}
}
},
["reward_location"]={
{
1.0,
1.0
}
}
},
[6]={
["type"]=2,
["icon"]="mine_element_5",
["pickaxe_cost"]=1,
["area"]={
1,
1
},
["reward"]={
{
["type"]=1,
["id"]=11,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_location"]={
{
1.0,
1.0
}
}
},
[7]={
["type"]=2,
["icon"]="mine_element_6",
["pickaxe_cost"]=1,
["area"]={
1,
1
},
["reward"]={
{
["type"]=1,
["id"]=9,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_location"]={
{
1.0,
1.0
}
}
},
[8]={
["type"]=2,
["icon"]="mine_element_7",
["pickaxe_cost"]=1,
["area"]={
1,
1
},
["reward"]={
{
["type"]=1,
["id"]=10,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_location"]={
{
1.0,
1.0
}
}
},
[9]={
["type"]=2,
["icon"]="mine_element_8",
["pickaxe_cost"]=1,
["area"]={
1,
1
},
["reward"]={
{
["type"]=1,
["id"]=20,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_location"]={
{
1.0,
1.0
}
}
},
[10]={
["type"]=3,
["icon"]="mine_element_9",
["pickaxe_cost"]=2,
["area"]={
1,
1
}
},
[11]={
["type"]=4,
["icon"]="mine_element_10",
["area"]={
2,
2
},
["reward"]={
{
["type"]=1,
["id"]=25,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_location"]={
{
1.0,
1.0
}
}
},
[12]={
["type"]=4,
["icon"]="mine_element_11",
["area"]={
3,
2
},
["reward"]={
{
["type"]=1,
["id"]=25,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_location"]={
{
2.0,
2.0
}
}
},
[13]={
["type"]=4,
["icon"]="mine_element_12",
["area"]={
4,
2
},
["reward"]={
{
["type"]=1,
["id"]=25,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_location"]={
{
2.0,
2.0
}
}
},
[14]={
["type"]=5,
["icon"]="mine_element_11",
["area"]={
3,
2
},
["reward"]={
{
["type"]=1,
["id"]=26,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_location"]={
{
2.0,
2.0
}
}
},
[15]={
["type"]=5,
["icon"]="mine_element_12",
["area"]={
4,
2
},
["reward"]={
{
["type"]=1,
["id"]=26,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_location"]={
{
2.0,
2.0
}
}
},
[16]={
["type"]=5,
["icon"]="mine_element_13",
["area"]={
6,
2
},
["reward"]={
{
["type"]=1,
["id"]=26,
["count"]={
["value"]=1,
["unit"]=0
}
},
{
["type"]=1,
["id"]=26,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_location"]={
{
2.0,
3.0
},
{
2.0,
4.0
}
}
},
[17]={
["type"]=6,
["icon"]="mine_element_11",
["area"]={
3,
2
},
["reward"]={
{
["type"]=1,
["id"]=27,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_location"]={
{
2.0,
2.0
}
}
},
[18]={
["type"]=6,
["icon"]="mine_element_12",
["area"]={
4,
2
},
["reward"]={
{
["type"]=1,
["id"]=27,
["count"]={
["value"]=1,
["unit"]=0
}
},
{
["type"]=1,
["id"]=27,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_location"]={
{
2.0,
2.0
},
{
2.0,
3.0
}
}
},
[19]={
["type"]=6,
["icon"]="mine_element_13",
["area"]={
6,
2
},
["reward"]={
{
["type"]=1,
["id"]=27,
["count"]={
["value"]=1,
["unit"]=0
}
},
{
["type"]=1,
["id"]=27,
["count"]={
["value"]=1,
["unit"]=0
}
}
},
["reward_location"]={
{
2.0,
3.0
},
{
2.0,
4.0
}
}
},
[20]={
["type"]=2,
["icon"]="mine_element_6",
["pickaxe_cost"]=1,
["area"]={
1,
1
},
["reward"]={
{
["type"]=1,
["id"]=9,
["count"]={
["value"]=3,
["unit"]=0
}
}
},
["reward_location"]={
{
1.0,
1.0
}
}
},
[21]={
["type"]=2,
["icon"]="mine_element_14",
["pickaxe_cost"]=1,
["area"]={
1,
1
},
["reward"]={
{
["type"]=1,
["id"]=2,
["count"]={
["value"]=50,
["unit"]=0
}
}
},
["reward_location"]={
{
1.0,
1.0
}
}
}
}
local config = {
data=mine_element,count=21
}
return config

View File

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

View File

@ -1,110 +0,0 @@
local mine_item = {
[9]={
["range"]={
{
0,
0
}
}
},
[10]={
["range"]={
{
0,
0
},
{
0,
1
},
{
0,
2
},
{
0,
3
},
{
0,
-1
},
{
0,
-2
},
{
0,
-3
},
{
1,
3
},
{
-1,
3
}
}
},
[11]={
["range"]={
{
0,
0
},
{
0,
1
},
{
0,
2
},
{
0,
-1
},
{
0,
-2
},
{
1,
0
},
{
1,
1
},
{
1,
-1
},
{
2,
0
},
{
-1,
0
},
{
-1,
1
},
{
-1,
-1
},
{
-2,
0
}
}
}
}
local config = {
data=mine_item,count=3
}
return config

View File

@ -1,10 +0,0 @@
fileFormatVersion: 2
guid: d777c3fbf97b22e40b965faf32516c1a
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: f0d4ebe96af67f3468f6a5f9f0ff9fcb
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}

View File

@ -1,34 +0,0 @@
local mine_research_time = {
[1]={
["time"]=0,
["cost"]=0
},
[2]={
["time"]=3600,
["cost"]=10
},
[3]={
["time"]=21600,
["cost"]=5
},
[4]={
["time"]=86400,
["cost"]=4
},
[5]={
["time"]=259200,
["cost"]=3
},
[6]={
["time"]=864000,
["cost"]=2
},
[7]={
["time"]=8640000,
["cost"]=1
}
}
local config = {
data=mine_research_time,count=7
}
return config

View File

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

View File

@ -1,716 +0,0 @@
local mine_stage = {
[1]={
["mine_stage_row"]={
11,
12,
13,
14,
15,
16
}
},
[2]={
["mine_stage_row"]={
21,
22,
23,
24,
25,
26
}
},
[3]={
["mine_stage_row"]={
31,
32,
33,
34,
35,
36
}
},
[4]={
["mine_stage_row"]={
41,
42,
43,
44,
45,
46
}
},
[5]={
["mine_stage_row"]={
51,
52,
53,
54,
55,
56
}
},
[6]={
["mine_stage_row"]={
61,
62,
63,
64,
65,
66
}
},
[7]={
["mine_stage_row"]={
71,
72,
73,
74,
75,
76
}
},
[8]={
["mine_stage_row"]={
81,
82,
83,
84,
85,
86
}
},
[9]={
["mine_stage_row"]={
91,
92,
93,
94,
95,
96
}
},
[10]={
["mine_stage_row"]={
101,
102,
103,
104,
105,
106
}
},
[11]={
["mine_stage_row"]={
111,
112,
113,
114,
115,
116
}
},
[12]={
["mine_stage_row"]={
121,
122,
123,
124,
125,
126
}
},
[13]={
["mine_stage_row"]={
131,
132,
133,
134,
135,
136
}
},
[14]={
["mine_stage_row"]={
141,
142,
143,
144,
145,
146
}
},
[15]={
["mine_stage_row"]={
151,
152,
153,
154,
155,
156
}
},
[16]={
["mine_stage_row"]={
161,
162,
163,
164,
165,
166
}
},
[17]={
["mine_stage_row"]={
171,
172,
173,
174,
175,
176
}
},
[18]={
["mine_stage_row"]={
181,
182,
183,
184,
185,
186
}
},
[19]={
["mine_stage_row"]={
191,
192,
193,
194,
195,
196
}
},
[20]={
["mine_stage_row"]={
201,
202,
203,
204,
205,
206
}
},
[21]={
["mine_stage_row"]={
211,
212,
213,
214,
215,
216
}
},
[22]={
["mine_stage_row"]={
221,
222,
223,
224,
225,
226
}
},
[23]={
["mine_stage_row"]={
231,
232,
233,
234,
235,
236
}
},
[24]={
["mine_stage_row"]={
241,
242,
243,
244,
245,
246
}
},
[25]={
["mine_stage_row"]={
251,
252,
253,
254,
255,
256
}
},
[26]={
["mine_stage_row"]={
261,
262,
263,
264,
265,
266
}
},
[27]={
["mine_stage_row"]={
271,
272,
273,
274,
275,
276
}
},
[28]={
["mine_stage_row"]={
281,
282,
283,
284,
285,
286
}
},
[29]={
["mine_stage_row"]={
291,
292,
293,
294,
295,
296
}
},
[30]={
["mine_stage_row"]={
301,
302,
303,
304,
305,
306
}
},
[31]={
["mine_stage_row"]={
311,
312,
313,
314,
315,
316
}
},
[32]={
["mine_stage_row"]={
321,
322,
323,
324,
325,
326
}
},
[33]={
["mine_stage_row"]={
331,
332,
333,
334,
335,
336
}
},
[34]={
["mine_stage_row"]={
341,
342,
343,
344,
345,
346
}
},
[35]={
["mine_stage_row"]={
351,
352,
353,
354,
355,
356
}
},
[36]={
["mine_stage_row"]={
361,
362,
363,
364,
365,
366
}
},
[37]={
["mine_stage_row"]={
371,
372,
373,
374,
375,
376
}
},
[38]={
["mine_stage_row"]={
381,
382,
383,
384,
385,
386
}
},
[39]={
["mine_stage_row"]={
391,
392,
393,
394,
395,
396
}
},
[40]={
["mine_stage_row"]={
401,
402,
403,
404,
405,
406
}
},
[41]={
["mine_stage_row"]={
411,
412,
413,
414,
415,
416
}
},
[42]={
["mine_stage_row"]={
421,
422,
423,
424,
425,
426
}
},
[43]={
["mine_stage_row"]={
431,
432,
433,
434,
435,
436
}
},
[44]={
["mine_stage_row"]={
441,
442,
443,
444,
445,
446
}
},
[45]={
["mine_stage_row"]={
451,
452,
453,
454,
455,
456
}
},
[46]={
["mine_stage_row"]={
461,
462,
463,
464,
465,
466
}
},
[47]={
["mine_stage_row"]={
471,
472,
473,
474,
475,
476
}
},
[48]={
["mine_stage_row"]={
481,
482,
483,
484,
485,
486
}
},
[49]={
["mine_stage_row"]={
491,
492,
493,
494,
495,
496
}
},
[50]={
["mine_stage_row"]={
501,
502,
503,
504,
505,
506
}
},
[51]={
["mine_stage_row"]={
511,
512,
513,
514,
515,
516
}
},
[52]={
["mine_stage_row"]={
521,
522,
523,
524,
525,
526
}
},
[53]={
["mine_stage_row"]={
531,
532,
533,
534,
535,
536
}
},
[54]={
["mine_stage_row"]={
541,
542,
543,
544,
545,
546
}
},
[55]={
["mine_stage_row"]={
551,
552,
553,
554,
555,
556
}
},
[56]={
["mine_stage_row"]={
561,
562,
563,
564,
565,
566
}
},
[57]={
["mine_stage_row"]={
571,
572,
573,
574,
575,
576
}
},
[58]={
["mine_stage_row"]={
581,
582,
583,
584,
585,
586
}
},
[59]={
["mine_stage_row"]={
591,
592,
593,
594,
595,
596
}
},
[60]={
["mine_stage_row"]={
601,
602,
603,
604,
605,
606
}
},
[61]={
["mine_stage_row"]={
611,
612,
613,
614,
615,
616
}
},
[62]={
["mine_stage_row"]={
621,
622,
623,
624,
625,
626
}
},
[63]={
["mine_stage_row"]={
631,
632,
633,
634,
635,
636
}
},
[64]={
["mine_stage_row"]={
641,
642,
643,
644,
645,
646
}
},
[65]={
["mine_stage_row"]={
651,
652,
653,
654,
655,
656
}
},
[66]={
["mine_stage_row"]={
661,
662,
663,
664,
665,
666
}
},
[67]={
["mine_stage_row"]={
671,
672,
673,
674,
675,
676
}
},
[68]={
["mine_stage_row"]={
681,
682,
683,
684,
685,
686
}
},
[69]={
["mine_stage_row"]={
691,
692,
693,
694,
695,
696
}
},
[70]={
["mine_stage_row"]={
701,
702,
703,
704,
705,
706
}
},
[71]={
["mine_stage_row"]={
711,
712,
713,
714,
715,
716
}
}
}
local config = {
data=mine_stage,count=71
}
return config

View File

@ -1,10 +0,0 @@
fileFormatVersion: 2
guid: 332411f07ba21e54e95389ebfdbf9260
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: 7dc869b8b8c96ec4dbd3389908e62037
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}

View File

@ -1,389 +0,0 @@
local monster_base = {
[1]={
["size"]=1,
["collision_radius"]=60,
["model_id"]="m0001",
["model_fight"]=1.0,
["fx_fight"]=1.0
},
[2]={
["size"]=1,
["collision_radius"]=60,
["model_id"]="m0002",
["model_fight"]=1.0,
["fx_fight"]=1.0
},
[3]={
["size"]=1,
["collision_radius"]=60,
["model_id"]="m0003",
["model_fight"]=1.0,
["fx_fight"]=1.0
},
[4]={
["size"]=1,
["collision_radius"]=60,
["model_id"]="m0004",
["model_fight"]=1.0,
["fx_fight"]=1.0
},
[5]={
["size"]=1,
["collision_radius"]=60,
["model_id"]="m0005",
["model_fight"]=1.0,
["fx_fight"]=1.0
},
[6]={
["size"]=1,
["collision_radius"]=60,
["model_id"]="m0006",
["model_fight"]=1.0,
["fx_fight"]=1.0
},
[7]={
["size"]=1,
["collision_radius"]=60,
["model_id"]="m0007",
["model_fight"]=1.0,
["fx_fight"]=1.0
},
[8]={
["size"]=1,
["collision_radius"]=60,
["model_id"]="m0008",
["model_fight"]=1.0,
["fx_fight"]=1.0
},
[9]={
["size"]=1,
["collision_radius"]=60,
["model_id"]="m0009",
["model_fight"]=1.0,
["fx_fight"]=1.0
},
[10]={
["size"]=1,
["collision_radius"]=60,
["model_id"]="m0010",
["model_fight"]=1.0,
["fx_fight"]=1.0
},
[1001]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m1001",
["model_fight"]=1.0,
["fx_fight"]=1.0
},
[1002]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m1002",
["model_fight"]=1.0,
["fx_fight"]=1.0
},
[1003]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m1003",
["model_fight"]=1.0,
["fx_fight"]=1.0
},
[1004]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m1004",
["model_fight"]=1.0,
["fx_fight"]=1.0
},
[1005]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m1005",
["model_fight"]=1.0,
["fx_fight"]=1.0
},
[1006]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m1006",
["model_fight"]=1.0,
["fx_fight"]=1.0
},
[1007]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m1007",
["model_fight"]=1.0,
["fx_fight"]=1.0
},
[1008]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m1008",
["model_fight"]=1.0,
["fx_fight"]=1.0
},
[1009]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m1009",
["model_fight"]=1.0,
["fx_fight"]=1.0
},
[1010]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m1010",
["model_fight"]=1.0,
["fx_fight"]=1.0
},
[1011]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m1011",
["model_fight"]=1.0,
["fx_fight"]=1.0
},
[1012]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m1012",
["model_fight"]=1.0,
["fx_fight"]=1.0
},
[1013]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m1013",
["model_fight"]=1.0,
["fx_fight"]=1.0
},
[2001]={
["size"]=3,
["collision_radius"]=120,
["model_id"]="m2001",
["model_fight"]=1.0,
["fx_fight"]=1.0
},
[2002]={
["size"]=3,
["collision_radius"]=120,
["model_id"]="m2002",
["model_fight"]=1.0,
["fx_fight"]=1.0
},
[2003]={
["size"]=3,
["collision_radius"]=120,
["model_id"]="m2003",
["model_fight"]=1.0,
["fx_fight"]=1.0,
["icon"]="avatar_m2003"
},
[30011]={
["size"]=3,
["collision_radius"]=120,
["model_id"]="m3001_1",
["model_fight"]=1.0,
["fx_fight"]=1.0,
["icon"]="avatar_m3001_1"
},
[30012]={
["size"]=3,
["collision_radius"]=120,
["model_id"]="m3001_2",
["model_fight"]=1.0,
["fx_fight"]=1.0,
["icon"]="avatar_m3001_2"
},
[30013]={
["size"]=3,
["collision_radius"]=120,
["model_id"]="m3001_3",
["model_fight"]=1.0,
["fx_fight"]=1.0,
["icon"]="avatar_m3001_3"
},
[30014]={
["size"]=3,
["collision_radius"]=120,
["model_id"]="m3001_4",
["model_fight"]=1.0,
["fx_fight"]=1.0,
["icon"]="avatar_m3001_4"
},
[30015]={
["size"]=3,
["collision_radius"]=120,
["model_id"]="m3001_5",
["model_fight"]=1.0,
["fx_fight"]=1.0,
["icon"]="avatar_m3001_5"
},
[30016]={
["size"]=3,
["collision_radius"]=120,
["model_id"]="m3001_6",
["model_fight"]=1.0,
["fx_fight"]=1.0,
["icon"]="avatar_m3001_6"
},
[3002]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m3002",
["model_fight"]=1.0,
["fx_fight"]=1.0,
["icon"]="avatar_m3002"
},
[3003]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m3003",
["model_fight"]=1.0,
["fx_fight"]=1.0,
["icon"]="avatar_m3003"
},
[3004]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m3004",
["model_fight"]=1.0,
["fx_fight"]=1.0,
["icon"]="avatar_m3004"
},
[3005]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m3005",
["model_fight"]=1.0,
["fx_fight"]=1.0,
["icon"]="avatar_m3005"
},
[3006]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m3006",
["model_fight"]=1.0,
["fx_fight"]=1.0,
["icon"]="avatar_m3006"
},
[3007]={
["size"]=3,
["collision_radius"]=120,
["model_id"]="m3007",
["model_fight"]=1.0,
["fx_fight"]=1.0,
["icon"]="avatar_m3007"
},
[3008]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m3008",
["model_fight"]=1.0,
["fx_fight"]=1.0,
["icon"]="avatar_m3008"
},
[3009]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m3009",
["model_fight"]=1.0,
["fx_fight"]=1.0,
["icon"]="avatar_m3009"
},
[3010]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m3010",
["model_fight"]=1.0,
["fx_fight"]=1.0,
["icon"]="avatar_m3010"
},
[3011]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m3011",
["model_fight"]=1.0,
["fx_fight"]=1.0,
["icon"]="avatar_m3011"
},
[3012]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m3012",
["model_fight"]=1.0,
["fx_fight"]=1.0,
["icon"]="avatar_m3012"
},
[3013]={
["size"]=3,
["collision_radius"]=120,
["model_id"]="m3013",
["model_fight"]=1.0,
["fx_fight"]=1.0,
["icon"]="avatar_m3013"
},
[3014]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m3014",
["model_fight"]=1.0,
["fx_fight"]=1.0,
["icon"]="avatar_m3014"
},
[3015]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m3015",
["model_fight"]=1.0,
["fx_fight"]=1.0,
["icon"]="avatar_m3015"
},
[3016]={
["size"]=3,
["collision_radius"]=120,
["model_id"]="m3016",
["model_fight"]=1.0,
["fx_fight"]=1.0,
["icon"]="avatar_m3016"
},
[3017]={
["size"]=3,
["collision_radius"]=120,
["model_id"]="m3017",
["model_fight"]=1.0,
["fx_fight"]=1.0,
["icon"]="avatar_m3017"
},
[3018]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m3018",
["model_fight"]=1.0,
["fx_fight"]=1.0,
["icon"]="avatar_m3018"
},
[3019]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m3019",
["model_fight"]=1.0,
["fx_fight"]=1.0,
["icon"]="avatar_m3019"
},
[3020]={
["size"]=2,
["collision_radius"]=60,
["model_id"]="m3020",
["model_fight"]=1.0,
["fx_fight"]=1.0,
["icon"]="avatar_m3020"
}
}
local config = {
data=monster_base,count=51
}
return config

View File

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

View File

@ -1,606 +0,0 @@
local monster_position = {
[101]={
["position"]={
5.0,
4.0
}
},
[102]={
["position"]={
5.0,
3.0
}
},
[103]={
["position"]={
5.0,
2.0
}
},
[104]={
["position"]={
5.0,
1.0
}
},
[105]={
["position"]={
5.0,
0.0
}
},
[106]={
["position"]={
5.0,
-1.0
}
},
[107]={
["position"]={
5.0,
-2.0
}
},
[108]={
["position"]={
5.0,
-3.0
}
},
[109]={
["position"]={
5.0,
-4.0
}
},
[110]={
["position"]={
5.0,
-5.0
}
},
[201]={
["position"]={
4.0,
4.0
}
},
[202]={
["position"]={
4.0,
3.0
}
},
[203]={
["position"]={
4.0,
2.0
}
},
[204]={
["position"]={
4.0,
1.0
}
},
[205]={
["position"]={
4.0,
0.0
}
},
[206]={
["position"]={
4.0,
-1.0
}
},
[207]={
["position"]={
4.0,
-2.0
}
},
[208]={
["position"]={
4.0,
-3.0
}
},
[209]={
["position"]={
4.0,
-4.0
}
},
[210]={
["position"]={
4.0,
-5.0
}
},
[301]={
["position"]={
3.0,
4.0
}
},
[302]={
["position"]={
3.0,
3.0
}
},
[303]={
["position"]={
3.0,
2.0
}
},
[304]={
["position"]={
3.0,
1.0
}
},
[305]={
["position"]={
3.0,
0.0
}
},
[306]={
["position"]={
3.0,
-1.0
}
},
[307]={
["position"]={
3.0,
-2.0
}
},
[308]={
["position"]={
3.0,
-3.0
}
},
[309]={
["position"]={
3.0,
-4.0
}
},
[310]={
["position"]={
3.0,
-5.0
}
},
[401]={
["position"]={
2.0,
4.0
}
},
[402]={
["position"]={
2.0,
3.0
}
},
[403]={
["position"]={
2.0,
2.0
}
},
[404]={
["position"]={
2.0,
1.0
}
},
[405]={
["position"]={
2.0,
0.0
}
},
[406]={
["position"]={
2.0,
-1.0
}
},
[407]={
["position"]={
2.0,
-2.0
}
},
[408]={
["position"]={
2.0,
-3.0
}
},
[409]={
["position"]={
2.0,
-4.0
}
},
[410]={
["position"]={
2.0,
-5.0
}
},
[501]={
["position"]={
1.0,
4.0
}
},
[502]={
["position"]={
1.0,
3.0
}
},
[503]={
["position"]={
1.0,
2.0
}
},
[504]={
["position"]={
1.0,
1.0
}
},
[505]={
["position"]={
1.0,
0.0
}
},
[506]={
["position"]={
1.0,
-1.0
}
},
[507]={
["position"]={
1.0,
-2.0
}
},
[508]={
["position"]={
1.0,
-3.0
}
},
[509]={
["position"]={
1.0,
-4.0
}
},
[510]={
["position"]={
1.0,
-5.0
}
},
[601]={
["position"]={
0.0,
4.0
}
},
[602]={
["position"]={
0.0,
3.0
}
},
[603]={
["position"]={
0.0,
2.0
}
},
[604]={
["position"]={
0.0,
1.0
}
},
[605]={
["position"]={
0.0,
0.0
}
},
[606]={
["position"]={
0.0,
-1.0
}
},
[607]={
["position"]={
0.0,
-2.0
}
},
[608]={
["position"]={
0.0,
-3.0
}
},
[609]={
["position"]={
0.0,
-4.0
}
},
[610]={
["position"]={
0.0,
-5.0
}
},
[701]={
["position"]={
-1.0,
4.0
}
},
[702]={
["position"]={
-1.0,
3.0
}
},
[703]={
["position"]={
-1.0,
2.0
}
},
[704]={
["position"]={
-1.0,
1.0
}
},
[705]={
["position"]={
-1.0,
0.0
}
},
[706]={
["position"]={
-1.0,
-1.0
}
},
[707]={
["position"]={
-1.0,
-2.0
}
},
[708]={
["position"]={
-1.0,
-3.0
}
},
[709]={
["position"]={
-1.0,
-4.0
}
},
[710]={
["position"]={
-1.0,
-5.0
}
},
[801]={
["position"]={
-2.0,
4.0
}
},
[802]={
["position"]={
-2.0,
3.0
}
},
[803]={
["position"]={
-2.0,
2.0
}
},
[804]={
["position"]={
-2.0,
1.0
}
},
[805]={
["position"]={
-2.0,
0.0
}
},
[806]={
["position"]={
-2.0,
-1.0
}
},
[807]={
["position"]={
-2.0,
-2.0
}
},
[808]={
["position"]={
-2.0,
-3.0
}
},
[809]={
["position"]={
-2.0,
-4.0
}
},
[810]={
["position"]={
-2.0,
-5.0
}
},
[901]={
["position"]={
-3.0,
4.0
}
},
[902]={
["position"]={
-3.0,
3.0
}
},
[903]={
["position"]={
-3.0,
2.0
}
},
[904]={
["position"]={
-3.0,
1.0
}
},
[905]={
["position"]={
-3.0,
0.0
}
},
[906]={
["position"]={
-3.0,
-1.0
}
},
[907]={
["position"]={
-3.0,
-2.0
}
},
[908]={
["position"]={
-3.0,
-3.0
}
},
[909]={
["position"]={
-3.0,
-4.0
}
},
[910]={
["position"]={
-3.0,
-5.0
}
},
[1001]={
["position"]={
-4.0,
4.0
}
},
[1002]={
["position"]={
-4.0,
3.0
}
},
[1003]={
["position"]={
-4.0,
2.0
}
},
[1004]={
["position"]={
-4.0,
1.0
}
},
[1005]={
["position"]={
-4.0,
0.0
}
},
[1006]={
["position"]={
-4.0,
-1.0
}
},
[1007]={
["position"]={
-4.0,
-2.0
}
},
[1008]={
["position"]={
-4.0,
-3.0
}
},
[1009]={
["position"]={
-4.0,
-4.0
}
},
[1010]={
["position"]={
-4.0,
-5.0
}
}
}
local config = {
data=monster_position,count=100
}
return config

View File

@ -1,10 +0,0 @@
fileFormatVersion: 2
guid: 55543330e808a2644bfe459c088643da
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: 9422cff54b4c2504aa8dcc248be9d325
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}

View File

@ -1,39 +0,0 @@
local move = {
[1]={
["horizontal"]=1,
["target"]=2,
["target_offset"]={
50,
0
},
["across"]=1,
["speed"]=9999,
["end_distance"]=0
},
[2]={
["horizontal"]=1,
["target"]=1,
["target_offset"]={
500,
0
},
["across"]=1,
["speed"]=1000,
["end_distance"]=0
},
[3]={
["horizontal"]=1,
["target"]=1,
["target_offset"]={
-500,
0
},
["speed"]=200,
["end_time"]=2000,
["collision_type"]=1
}
}
local config = {
data=move,count=3
}
return config

View File

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

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