import { Card } from '../../../interfaces' import Set from '../Promos' const card: Card = { name: { en: "Jirachi", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 385, ], hp: 70, types: [ "Metal", ], stage: "Basic", attacks: [ { cost: [ "Metal", ], name: { en: "Precognitive Dream", }, effect: { en: "Draw 3 cards. This Pokémon is now Asleep.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Iron Head", }, effect: { en: "Flip a coin until you get tails. This attack does 30 damage times the number of heads.", }, damage: 30, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], } export default card