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: "ex14-26", localId: 26, // Card informations name: { en: "Pelipper δ", }, hp: 70, type: [ Type.LIGHTNING, ], dexId: 279, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex14/26/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex14/26/high", }, }, evolveFrom: { en: "Wingull", }, tags: [ Tag.STAGE1, ], illustrator: "Masakazu Fukuda", abilities: [{ id: 894, type: AbilityType.POKEPOWER, name: { en: "Delta Transport", }, text: { en: "Once during your turn (before your attack), if Pelipper is on your Bench, you may switch 1 of your Active Pokémon that has δ on its card with 1 of your Benched Pokémon.", } }], attacks: [{ cost: [ Type.LIGHTNING, Type.COLORLESS ], name: { en: "Supersonic", }, text: { en: "The Defending Pokémon is now Confused.", }, damage: 20 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Wing Attack", }, damage: 40 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Crystal Guardians", code: "ex14" } } export default card