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: "ex2-22", localId: 22, // Card informations name: { en: "Shiftry", }, hp: 120, type: [ Type.GRASS, ], dexId: 275, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex2/22/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex2/22/high", }, }, evolveFrom: { en: "Nuzleaf", }, tags: [ Tag.STAGE2, ], illustrator: "Ken Sugimori", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Feint Attack", }, text: { en: "Choose 1 of your opponent's Pokémon. This attack does 40 damage to that Pokémon. This attack's damage isn't affected by Weakness, Resistance, Poke-Powers, Poke-Bodies, or any other effects on that Pokémon.", }, },{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Slash", }, damage: 60 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Sandstorm", code: "ex2" } } export default card