import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Moltres", }, illustrator: "Mitsuhiro Arita", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 146, ], hp: 120, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Fire", "Colorless", "Colorless", ], name: { en: "Searing Flame", }, effect: { en: "The Defending Pokémon is now Burned.", }, damage: 50, }, { cost: [ "Fire", "Colorless", "Colorless", "Colorless", ], name: { en: "Fire Blast", }, effect: { en: "Discard a Fire Energy attached to this Pokémon.", }, damage: 90, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 2 } export default card