123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- package msg
- // 服务端用
- type AddBagMaterialIs struct {
- RpcRequestMsg
- PlayerId int64 `json:"userId"`
- Source int `json:"source"` // 类型
- Materials map[int64]int64 `json:"materials"` // 奖励
- Cost map[int64]int64 `json:"cost"` // 消耗
- }
- type ResponseAddBagMaterialIs struct {
- RpcResponseMsg
- }
- // HeroLevelUp 升级
- type HeroLevelUp struct {
- PlayerId int64 `json:"userId"`
- HeroId int64 `json:"heroId"`
- }
- type HeroLevelUpData struct {
- Materials map[int64]int64 `json:"materials"`
- Hero *Hero `json:"hero"`
- }
- type ResponseHeroLevelUp struct {
- ErrCode int `json:"errCode"`
- Msg string `json:"msg,omitempty"`
- Data *HeroLevelUpData `json:"data"`
- }
- // HeroChangeSkin 英雄换皮肤
- type HeroChangeSkin struct {
- PlayerId int64 `json:"userId"`
- HeroId int64 `json:"heroId"`
- SkinId int64 `json:"skinId"`
- }
- type HeroChangeSkinData struct {
- Hero *Hero `json:"hero"`
- }
- type ResponseHeroChangeSkin struct {
- ErrCode int `json:"errCode"`
- Msg string `json:"msg,omitempty"`
- Data *HeroChangeSkinData `json:"data"`
- }
- // HeroBuy 英雄购买
- type HeroBuy struct {
- PlayerId int64 `json:"userId"`
- HeroId int64 `json:"heroId"`
- }
- type ResponseHeroBuy struct {
- ErrCode int `json:"errCode"`
- Msg string `json:"msg,omitempty"`
- Data *HeroBuyData `json:"data"`
- }
- type HeroBuyData struct {
- PlayerId int64 `json:"userId"`
- Hero *Hero `json:"hero"`
- Materials map[int64]int64 `json:"materials"`
- }
- // HeroSkinActive 英雄皮肤激活
- type HeroSkinActive struct {
- PlayerId int64 `json:"userId"`
- SkinId int64 `json:"skinId"`
- }
- type ResponseHeroSkinActive struct {
- ErrCode int `json:"errCode"`
- Msg string `json:"msg,omitempty"`
- Data *HeroSkinActiveData `json:"data"`
- }
- type HeroSkinActiveData struct {
- PlayerId int64 `json:"userId"`
- Hero *Hero `json:"hero"`
- SkinId int64 `json:"skinId"`
- Materials map[int64]int64 `json:"materials"`
- }
- // // HeroActive 激活
- // type HeroActive struct {
- // PlayerId int64 `json:"userId"`
- // HeroId int32 `json:"heroId"`
- // Type int32 `json:"type"` // 1 碎片合成 2 钻石购买
- // }
- // type HeroActiveData struct {
- // }
- // type ResponseHeroActive struct {
- // ErrCode int `json:"errCode"`
- // Msg string `json:"msg,omitempty"`
- // Data *HeroActiveData `json:"data"`
- // }
- // TreasuresLevelUp 宝物升级
- // type TreasuresLevelUp struct {
- // PlayerId int64 `json:"userId"`
- // Id int32 `json:"id"`
- // }
- // type TreasuresLevelUpData struct {
- // }
- // type ResponseTreasuresLevelUp struct {
- // ErrCode int `json:"errCode"`
- // Msg string `json:"msg,omitempty"`
- // Data *TreasuresLevelUpData `json:"data"`
- // }
- // // TreasureStarUp 宝物升星
- // type TreasuresStarUp struct {
- // PlayerId int64 `json:"userId"`
- // Id int32 `json:"id"`
- // }
- // type TreasuresStarUpData struct {
- // }
- // type ResponseTreasuresStarUp struct {
- // ErrCode int `json:"errCode"`
- // Msg string `json:"msg,omitempty"`
- // Data *TreasuresStarUpData `json:"data"`
- // }
|