Add pets for tiers 4-6.
This commit is contained in:
+15
-3
@@ -38,18 +38,30 @@ export interface PendingTrade {
|
||||
}
|
||||
|
||||
export interface BattleEvent {
|
||||
type: 'reveal' | 'summon' | 'rock' | 'clash' | 'eat'
|
||||
type:
|
||||
| 'prep'
|
||||
| 'reveal'
|
||||
| 'summon'
|
||||
| 'mill'
|
||||
| 'rock'
|
||||
| 'clash'
|
||||
| 'shield'
|
||||
| 'strip'
|
||||
| 'steal'
|
||||
| 'eat'
|
||||
| 'heal'
|
||||
seat?: number
|
||||
target?: number
|
||||
card?: Card
|
||||
count?: number
|
||||
// clash
|
||||
damage?: number[]
|
||||
died?: boolean[]
|
||||
// rock
|
||||
// rock / strip / steal
|
||||
roll?: number
|
||||
damageAfter?: number
|
||||
targetDied?: boolean
|
||||
// eat
|
||||
// eat (new bonus total) / reveal (starting bonus)
|
||||
bonus?: number
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user