import { Card } from '../../../interfaces' import Set from '../Macdonald\'s Collection 2021' const card: Card = { name: { en: "Totodile", fr: "Kaiminus", }, illustrator: "Kagemaru Himeno", rarity: "None", category: "Pokemon", set: Set, dexId: [ 158, ], hp: 60, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Fury Strikes", fr: "Attaques Furieuses", }, effect: { en: "Flip 3 coins. This attack does 10 damage times the number of heads.", fr: "Lancez 3 pièces. Cette attaque inflige 10 dégâts multipliés par le nombre de côtés face.", }, damage: "10×", }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, description: { en: "It is small but rough and tough. It won’t hesitate to take a bite out of anything that moves." }, variants: { normal: true, reverse: false, holo: true, firstEdition: false } } export default card