import { Card } from '../../../interfaces' import Set from '../Hidden Legends' const card: Card = { name: { en: "Spinda", fr: "Spinda" }, illustrator: "Kagemaru Himeno", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 327, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "The Hula-la", fr: "Danse-folle" }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused. If tails, both the Defending Pokémon and Spinda are now Confused.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Confus. Si c'est pile, le Pokémon Défenseur et Spinda sont maintenant Confus." }, }, { cost: [ "Colorless", ], name: { en: "Flail", fr: "Fléau" }, effect: { en: "Does 10 damage times the number of damage counters on Spinda.", fr: "Inflige 10 dégâts multipliés par le nombre de marqueurs de dégât sur Spinda." }, damage: "10×", }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card