import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Tapu Koko", }, illustrator: "Hasuno", rarity: "Rare", category: "Pokemon", set: Set, hp: 110, types: [ "Lightning", ], attacks: [ { cost: [ "Colorless", ], name: { en: "Allure", }, effect: { en: "Draw 2 cards.", }, }, { cost: [ "Lightning", "Lightning", "Colorless", ], name: { en: "Electric Ball", }, damage: 110, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card