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-93", localId: 93, // Card informations name: { en: "Sceptile ex", }, hp: 150, type: [ Type.GRASS, ], dexId: 254, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex4/93/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex4/93/high", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: "Hikaru Koike", attacks: [{ cost: [ Type.GRASS ], name: { en: "Green Heal", }, text: { en: "Remove 4 damage counters from each of your Pokémon that has Grass Energy attached. If that Pokémon has less than 4 damage counters, remove all of them.", }, },{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Poison Ring", }, text: { en: "The Defending Pokémon is now Poisoned. The Defending Pokémon can't retreat until the end of your opponent's next turn.", }, damage: 40 },{ cost: [ Type.GRASS, Type.GRASS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Slashing Strike", }, text: { en: "Sceptile ex can't use Slashing Strike during your next turn.", }, damage: 100 }], weaknesses: [{ type: Type.GRASS, value: "×2" },{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.WATER, value: "-30" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Team Magma vs Team Aqua", code: "ex4" } } export default card