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: "ex4-17", localId: 17, // Card informations name: { en: "Team Aqua's Seviper", }, hp: 80, type: [ Type.GRASS, ], dexId: 336, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex4/17/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex4/17/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Jungo Suzuki", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Call for Family", }, text: { en: "Search your deck for a Grass Basic Pokémon or Basic Pokémon with Team Aqua in its name and put it onto your Bench. Shuffle your deck afterward.", }, },{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Thick Poison", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused and Poisoned. If tails, the Defending Pokémon is now Poisoned.", }, damage: 20 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Team Magma vs Team Aqua", code: "ex4" } } export default card