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