import { Card } from '../../../interfaces' import Set from '../Holon Phantoms' const card: Card = { name: { en: "Pikachu δ", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 25, ], hp: 50, types: [ "Metal", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tail Whap", }, damage: 10, }, { cost: [ "Metal", "Colorless", "Colorless", ], name: { en: "Steel Headbutt", }, effect: { en: "Flip a coin. If heads, this attack does 30 damage plus 10 more damage.", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card