import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "neo2-65", localId: 65, // Card informations name: { en: "Teddiursa", }, hp: 40, type: [ Type.COLORLESS, ], dexId: 216, image: { low: { en: "https://assets.tcgdex.net/en/neo/neo2/65/low.png", }, high: { en: "https://assets.tcgdex.net/en/neo/neo2/65/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 37, name: "Miki Tanaka" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Scratch", }, damage: 10 },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Nap Time", }, text: { en: "Remove all damage counters from Teddiursa. Teddiursa is now Asleep.", }, }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Neo Discovery", code: "neo2" } } export default card