import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "xy8-56", localId: 56, // Card informations name: { en: "Stunfisk", fr: "Limonde", }, hp: 110, type: [ Type.LIGHTNING, ], dexId: 618, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy8/56/low", fr: "https://assets.tcgdex.net/fr/xy/xy8/56/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy8/56/high", fr: "https://assets.tcgdex.net/fr/xy/xy8/56/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Naoki Saito", attacks: [{ cost: [ Type.LIGHTNING, Type.COLORLESS ], name: { en: "Revenge", fr: "Vendetta", }, text: { en: "If any of your Pokémon were Knocked Out by damage from an opponent's attack during his or her last turn, this attack does 80 more damage.", fr: "Si l'un de vos Pokémon a été mis K.O. par les dégâts d'une attaque de votre adversaire pendant son dernier tour, cette attaque inflige 80 dégâts supplémentaires.", }, damage: 20 },{ cost: [ Type.LIGHTNING, Type.LIGHTNING, Type.COLORLESS ], name: { en: "Thunder Blast", fr: "Grondement de Tonnerre", }, text: { en: "Discard an Energy attached to this Pokémon.", fr: "Défaussez une Énergie attachée à ce Pokémon.", }, damage: 80 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.METAL, value: "-20" }], retreat: 3, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "BREAKthrough", code: "xy8" } } export default card