samba/stub/emote.go

12 lines
241 B
Go
Raw Normal View History

2025-06-04 09:51:39 +08:00
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},
}