12 lines
241 B
Go
12 lines
241 B
Go
package stub
|
|
|
|
type EmoteItem struct {
|
|
Type int `json:"pid"` // 消耗物品类型
|
|
Value int64 `json:"num"` // 消耗物品数量
|
|
}
|
|
|
|
var GPayEmote = map[int]*EmoteItem{
|
|
4004: {Type: 1000, Value: 100},
|
|
4009: {Type: 1000, Value: 100},
|
|
}
|