import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "xy5-115", localId: 115, // Card informations name: { en: "Spinda", fr: "Spinda", }, hp: 80, type: [ Type.COLORLESS, ], dexId: 327, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy5/115/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy5/115/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy5/115/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy5/115/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 9, name: "Mitsuhiro Arita" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Staggering Steps", fr: "Démarche Branlante", }, text: { 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: [ Type.COLORLESS ], name: { en: "Uproar", fr: "Brouhaha", }, text: { 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: Type.FIGHTING, value: "×2" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Primal Clash", code: "xy5" } } export default card