import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Shiftry", }, illustrator: "Ken Sugimori", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 275, ], hp: 120, types: [ "Grass", ], evolveFrom: { en: "Nuzleaf", }, stage: "Stage2", attacks: [ { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Feint Attack", }, effect: { 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: [ "Grass", "Colorless", "Colorless", "Colorless", ], name: { en: "Slash", }, damage: 60, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card