M_PopupCFG.lua 2.8 KB

123456789101112131415161718192021222324252627282930313233
  1. M_PopupCFG = {}
  2. function M_PopupCFG:getData(key)
  3. if self.datas == nil then
  4. return nil
  5. end
  6. return self.datas[key]
  7. end
  8. function M_PopupCFG:init()
  9. self.datas = {}
  10. self.datas["TomorrowGiftView"] = {Key = "TomorrowGiftView", Scene = "11", RewardCon = 1, OtherDes = "", Oder = 2, Channel = {}}
  11. self.datas["SevenLoginView"] = {Key = "SevenLoginView", Scene = "11", RewardCon = 1, OtherDes = "", Oder = 4, Channel = {}}
  12. self.datas["MonthSignView"] = {Key = "MonthSignView", Scene = "11", RewardCon = 1, OtherDes = "", Oder = 7, Channel = {}}
  13. self.datas["MonthCardView"] = {Key = "MonthCardView", Scene = "11", RewardCon = 1, OtherDes = "3", Oder = 8, Channel = {}}
  14. self.datas["VipCoinView"] = {Key = "VipCoinView", Scene = "10", RewardCon = 1, OtherDes = "", Oder = 9, Channel = {}}
  15. self.datas["ActivityView"] = {Key = "ActivityView", Scene = "10", RewardCon = 0, OtherDes = "{"open":"pay;huntfish;FishActivity","oder":"DoubelEgg;LuckBag;ScoreLottery;crab;FishActivity;LuckStar;AcParvenu;pay;huntfish;TherionLegend;GiantsharkLegend;KunLegend;DebrisExchange;CanonExchange;LuckLottey;redpacket"}", Oder = 6, Channel = {}}
  16. self.datas["NYView"] = {Key = "NYView", Scene = "11", RewardCon = 1, OtherDes = "", Oder = 6, Channel = {}}
  17. self.datas["SevenPayView"] = {Key = "SevenPayView", Scene = "10", RewardCon = 0, OtherDes = "", Oder = 3, Channel = {"100001","100002","100003","100004","100005"}}
  18. self.datas["RedPack"] = {Key = "RedPack", Scene = "", RewardCon = nil, OtherDes = "", Oder = 10, Channel = {"100001","100002"}}
  19. self.datas["MDView"] = {Key = "MDView", Scene = "10", RewardCon = 0, OtherDes = "{"Channel":["brave","gift"],"brave":[1,2,110]}", Oder = 6, Channel = {"100001","100002"}}
  20. self.datas["FishGrowthView"] = {Key = "FishGrowthView", Scene = "", RewardCon = nil, OtherDes = "{"TurretLevel":6}", Oder = 11, Channel = {}}
  21. self.datas["DBView"] = {Key = "DBView", Scene = "10", RewardCon = 0, OtherDes = "{"Channel":["gift"]}", Oder = 6, Channel = {"100001","100002"}}
  22. self.datas["SummerView"] = {Key = "SummerView", Scene = "10", RewardCon = 0, OtherDes = "{"Channel":["gift"]}", Oder = 6, Channel = {"100001","100002"}}
  23. self.datas["GrandPrixView"] = {Key = "GrandPrixView", Scene = "10", RewardCon = 0, OtherDes = "", Oder = 7, Channel = {" "}}
  24. self.datas["FisrtGift"] = {Key = "FisrtGift", Scene = "10", RewardCon = 0, OtherDes = "", Oder = 5, Channel = {}}
  25. self.datas["VerifiedView"] = {Key = "VerifiedView", Scene = "11", RewardCon = 0, OtherDes = "", Oder = 1, Channel = {}}
  26. self.datas["SummerHappy"] = {Key = "SummerHappy", Scene = "10", RewardCon = 0, OtherDes = "", Oder = 2, Channel = {}}
  27. self.datas["SailingPop"] = {Key = "SailingPop", Scene = "10", RewardCon = 0, OtherDes = "", Oder = 2, Channel = {}}
  28. self.datas["AbysmFishingKingView"] = {Key = "AbysmFishingKingView", Scene = "11", RewardCon = 1, OtherDes = "", Oder = 7, Channel = {}}
  29. end
  30. M_PopupCFG:init()