import { Card } from '../../../interfaces' import Set from '../Wizards Black Star Promos' const card: Card = { name: { en: "Moltres", }, illustrator: "Toshinao Aoki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 146, ], hp: 70, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Fire", "Fire", "Fire", ], name: { en: "Hyper Flame", }, effect: { en: "Flip a coin. If heads, discard 1 Energy card attached to Moltres. If tails, discard all Energy cards attached to Moltres. If you can't discard Energy cards, this attack does nothing.", }, damage: 60, }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card