添加获得对手

This commit is contained in:
luying
2021-01-06 20:25:06 +08:00
parent 524cdc11c7
commit a339b8adcc
4 changed files with 120 additions and 20 deletions

View File

@@ -55,3 +55,15 @@ export interface SclResultInter {
position: SclPosInter[]
}
// pvp对手返回
export interface oppPlayersInter {
pos: number; // 对手位置
roleId: string; // 对手玩家id
roleName: string; // 对手玩家名
headHid: number; // 头像
sHid: number; // 形象
pLv: number; // 对手队伍等级
defCe: number; // 防守阵容战力
addScore: number; // 战胜后可获军功
plusScore: number; // 连胜加成军功
}