import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Ursaring", }, illustrator: "Sanosuke Sakuma", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 217, ], hp: 130, types: [ "Colorless", ], evolveFrom: { en: "Teddiursa", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Picnic Weather", }, effect: { en: "Put a Teddiursa from your discard pile onto your Bench. Then, attach an Energy card from your discard pile to that Pokémon.", }, }, { cost: [ "Colorless", "Colorless", "Colorless", "Colorless", ], name: { en: "Fury Swipes", }, effect: { en: "Flip 3 coins. This attack does 50 damage times the number of heads.", }, damage: 50, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card