1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
| GetGachaDisplayReq: { bool IsAll, GachaType Type, } GetGachaDisplayRsp: { Retcode retcode, bool IsAll, GachaType Type, uint PrayGachaId, uint GachaRandom, List<GachaDisplayInfo> GachaDisplayInfoLists, List<GachaTenDiscountInfo> GachaTenDiscountInfoLists, List<GachaDailyTimesLimit> GachaDailyTimesLimitLists, } GachaType: { GachaHcoin = 2, GachaSpecialHcoin = 3, GachaActivity1 = 4, GachaCustomAvatar = 5, GachaActivity2 = 6, GachaCustomEquip = 7, GachaBox1 = 8, GachaUnique = 9, GachaEquipHcoin = 10, GachaPray = 11, GachaSpecial2 = 12, GachaControllableBox = 14, GachaActivity3 = 15, GachaBox2 = 16, GachaBox3 = 17, GachaOptionalAvatar = 18, GachaOptionalEquip = 19, GachaAdventure = 20, GachaBox4 = 21, GachaBox5 = 22, GachaAdventureEquip = 23, GachaBox6 = 24, GachaSpEquip = 25, GachaElf1 = 26, GachaActivity4 = 27, GachaActivity5 = 28, GachaActivity6 = 29, GachaSpecial3 = 30, GachaAdventureNewbie1 = 31, GachaAdventureNewbie2 = 32, GachaSpecialNewbie1 = 33, GachaSpecialNewbie2 = 34, GachaBox7 = 35, GachaSpecialNewbie3 = 36, GachaSpecialNewbie4 = 37, GachaCustomAvatarGoback = 38, GachaEquipGoback = 39, GachaSpecialNewbie5 = 40, GachaSpecialNewbie6 = 41, GachaSpecialNewbie7 = 42, GachaSpecialNewbie8 = 43, GachaTypeError = 100, } GachaDisplayInfo: { GachaType GachaType, GachaDisplayCommonData CommonData, HcoinGachaData HcoinGachaData, FriendsPointGachaData FriendsPointGachaData, ActivityGachaData ActivityGachaData, CustomGachaData CustomGachaData, UniqueGachaData UniqueGachaData, BoxGachaData BoxGachaData, PrayGachaData PrayGachaData, ControllableBoxGachaData ControllableBoxGachaData, OptionalGachaData OptionalGachaData, AdventureGachaData AdventureGachaData, AdventureEquipGachaData AdventureEquipGachaData, SpEquipGachaData SpEquipGachaData, SpecialCommonGachaData SpecialGachaData, } GachaDisplayCommonData: { string TitleImage, string SupplyImage, string Title, string Content, uint[] UpAvatarLists, List<WeaponDetailData> UpWeaponLists, List<StigmataDetailData> UpStigmataLists, string Rule, string ContentDetail, uint[] UpItemLists, string ContentUrl, string BtnImagePath, List<GachaSortItem> SortItemLists, bool IsEnablePrompt, uint GachaId, uint DataBeginTime, uint DataEndTime, uint[] UpElfLists, string DisplayExt, uint FreeGachaTimes, List<GachaFreeInfo> FreeInfoLists }
|