import { Card } from '../../../interfaces' import Set from '../Mysterious Treasures' const card: Card = { name: { en: "Crobat", }, illustrator: "Masakazu Fukuda", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 169, ], hp: 100, types: [ "Psychic", ], evolveFrom: { en: "Golbat", }, stage: "Stage2", abilities: [ { type: "Poke-POWER", name: { en: "Evolutionary Toxic", }, effect: { en: "Once during your turn, when you play Crobat from your hand to evolve 1 of your Pokémon, you may choose 1 of the Defending Pokémon. That Pokémon is now Poisoned. Put 2 damage counters instead of 1 on that Pokémon between turns.", }, }, ], attacks: [ { cost: [ "Psychic", "Psychic", ], name: { en: "Strike and Fade", }, effect: { en: "Choose 1 of your opponent's Pokémon. This attack does 50 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) Flip a coin. If tails, shuffle Crobat and all cards attached to it back into your deck.", }, }, ], weaknesses: [ { type: "Psychic", value: "+30" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], } export default card