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: "ex15-22", localId: 22, // Card informations name: { en: "Seadra δ", }, hp: 70, type: [ Type.FIGHTING, ], dexId: 117, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex15/22/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex15/22/high", }, }, evolveFrom: { en: "Horsea", }, tags: [ Tag.STAGE1, ], illustrator: "Sachiko Adachi", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Smokescreen", }, text: { en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.", }, damage: 20 },{ cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Razor Wing", }, damage: 40 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Dragon Frontiers", code: "ex15" } } export default card