import { Card } from '../../../interfaces' import Set from '../Neo Discovery' const card: Card = { name: { en: "Ursaring", }, illustrator: "Naoyo Kimura", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 217, ], hp: 80, types: [ "Colorless", ], evolveFrom: { en: "Teddiursa", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Headpress", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed. If tails, this attack does nothing (not even damage).", }, }, { cost: [ "Colorless", "Colorless", "Colorless", "Colorless", ], name: { en: "Double Lariat", }, effect: { en: "Flip 2 coins. This attack does 40 times the number of heads.", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card