import { Card } from '../../../interfaces' import Set from '../Nintendo Black Star Promos' const card: Card = { name: { en: "Latias", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 380, ], hp: 70, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Super Psy", }, damage: 10, }, { cost: [ "Fire", "Water", ], name: { en: "Searing Flame", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Burned.", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card