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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex15/22/high.png", }, }, evolveFrom: { en: "Horsea", }, tags: [ Tag.STAGE1, ], illustrator: { id: 12, name: "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