feat: 骰子魔法表情 & 猜拳魔法表情

This commit is contained in:
linyuchen
2024-04-07 18:51:26 +08:00
parent 81821e74d8
commit b501af6e0e
4 changed files with 89 additions and 4 deletions

View File

@@ -212,9 +212,22 @@ export interface GrayTipElement {
}
}
export enum FaceType {
normal=1, // 小黄脸
dice=3 // 骰子
}
export interface FaceElement {
faceIndex: number,
faceType: 1
faceType: FaceType,
faceText?: string,
packId?: string,
stickerId?: string,
sourceType?: number,
stickerType?: number,
resultId?: string,
surpriseId?: string,
randomType?: number
}
export interface MarketFaceElement {