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: "ex7-48", localId: 48, // Card informations name: { en: "Seadra", }, hp: 70, type: [ Type.WATER, ], dexId: 117, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex7/48/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex7/48/high", }, }, evolveFrom: { en: "Horsea", }, tags: [ Tag.STAGE1, ], illustrator: "Kagemaru Himeno", attacks: [{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Confuse Ray", }, text: { en: "The Defending Pokémon is now Confused.", }, damage: 10 },{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Aqua Trick", }, text: { en: "If your opponent has any Benched Pokemon, move 1 Energy card attached to the Defending Pokémon to 1 of your opponent's Benched Pokémon. If your opponent has no Benched Pokémon, this effect does nothing.", }, damage: 30 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Team Rocket Returns", code: "ex7" } } export default card