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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex2/22/high.png", }, }, evolveFrom: { en: "Nuzleaf", }, tags: [ Tag.STAGE2, ], illustrator: { id: 5, name: "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