attacks = sets.flatMap(s => s.cards.map(c => ({...c, date: new Date(s.releaseDate)})))
.filter(c => c.supertype === "Pokémon")
.filter(c => c.attacks !== undefined)
.flatMap(c => c.attacks.map(a => ({...a, date: c.date, strength: attackStrength(a)})))