import { Card } from '../../../interfaces' import Set from '../Primal Clash' const card: Card = { name: { en: "Spinda", fr: "Spinda", }, illustrator: "Mitsuhiro Arita", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 327, ], hp: 80, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Staggering Steps", fr: "Démarche Branlante", }, effect: { en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Confused. If tails, this Pokémon is now Confused.", fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Confus. Si c'est pile, ce Pokémon est maintenant Confus.", }, }, { cost: [ "Colorless", ], name: { en: "Uproar", fr: "Brouhaha", }, effect: { en: "This attack does 10 damage to each of your opponent’s Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)", fr: "Cette attaque inflige 10 dégâts à chacun des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card