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: "xy6-19", localId: 19, // Card informations name: { en: "Pelipper", fr: "Bekipan", }, hp: 100, type: [ Type.WATER, ], dexId: 279, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy6/19/low", fr: "https://assets.tcgdex.net/fr/xy/xy6/19/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy6/19/high", fr: "https://assets.tcgdex.net/fr/xy/xy6/19/high", }, }, evolveFrom: { en: "Wingull", fr: "Goélise", }, tags: [ Tag.STAGE1, ], illustrator: "Midori Harada", attacks: [{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Swallow", fr: "Avale", }, text: { en: "Heal from this Pokémon the same amount of damage you did to your opponent's Active Pokémon.", fr: "Soignez à ce Pokémon la même quantité de dégâts que vous avez infligée au Pokémon Actif de votre adversaire.", }, damage: 30 },{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Water Pulse", fr: "Vibraqua", }, text: { en: "Your opponent's Active Pokémon is now Asleep.", fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.", }, damage: 70 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 2, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Roaring Skies", code: "xy6" } } export default card