Add pets for tiers 4-6.

This commit is contained in:
Greyson Parrelli
2026-07-23 00:10:20 -04:00
parent 8d43bbf61e
commit 10ac457e2e
11 changed files with 1334 additions and 163 deletions
+15 -3
View File
@@ -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
}