import { Card } from '../../../interfaces' import Set from '../Unseen Forces' const card: Card = { name: { en: "Teddiursa", }, illustrator: "Naoyo Kimura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 216, ], hp: 40, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Teary Eyes", }, effect: { en: "During your opponent's next turn, any damage done to Teddiursa by attacks is reduced by 20 (after applying Weakness and Resistance).", }, }, { cost: [ "Colorless", ], name: { en: "Scratch", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card