import { Card } from '../../../interfaces' import Set from '../Mysterious Treasures' const card: Card = { name: { en: "Totodile", }, illustrator: "Kouki Saitou", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 158, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { name: { en: "Bite", }, damage: 10, }, { cost: [ "Water", ], name: { en: "Shining Fang", }, effect: { en: "If the Defending Pokémon already has any damage counters on it, this attack does 10 damage plus 10 more damage.", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "+10" }, ], } export default card