import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Teddiursa", }, illustrator: "Yukiko Baba", rarity: "Common", category: "Pokemon", set: Set, hp: 70, types: [ "Colorless", ], attacks: [ { cost: [ "Colorless", ], name: { en: "Baby-Doll Eyes", }, effect: { en: "During your opponent’s next turn, the Defending Pokémon can’t retreat.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Dig Claws", }, damage: 20, }, ], weaknesses: [ { type: "Fightning", value: "×2" }, ], retreat: 2, } export default card