import { Card } from '../../../interfaces' import Set from '../Wizards Black Star Promos' const card: Card = { name: { en: "Ho-oh", }, illustrator: "Mitsuhiro Arita", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 250, ], hp: 80, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Fire", "Fire", "Colorless", "Colorless", ], name: { en: "Sacred Fire", }, effect: { en: "Flip a coin. If tails, this attack's base damage is 20 instead of 60.", }, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card