import { Card } from '../../../interfaces' import Set from '../Skyridge' const card: Card = { name: { en: "Stantler", }, illustrator: "Aya Kusube", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 234, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Threaten", }, effect: { en: "Flip a coin. If heads, look at your opponent's hand. If he or she has any Trainer cards there, choose 1 of them. Your opponent shuffles that card back into his or her deck.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Antler Swipe", }, effect: { en: "Flip a coin. If heads, this attack does 20 damage to the Defending Pokémon (Don't apply Weakness and Resistance) If tails, your and opponent has any Benched Pokémon, choose 1 of them and this attack does 20 damage to it. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card