import { Card } from '../../../interfaces' import Set from '../Expedition Base Set' const card: Card = { name: { en: "Totodile", }, illustrator: "Aimi Tomita", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 158, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Paralyzing Gaze", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, }, { cost: [ "Water", "Colorless", ], name: { en: "Bite", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card