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-15", localId: 15, // Card informations name: { en: "Ursaring", }, hp: 80, type: [ Type.COLORLESS, ], dexId: 217, image: { low: { en: "https://assets.tcgdex.net/en/neo/neo2/15/low.png", }, high: { en: "https://assets.tcgdex.net/en/neo/neo2/15/high.png", }, }, evolveFrom: { en: "Teddiursa", }, tags: [ Tag.STAGE1, ], illustrator: { id: 23, name: "Naoyo Kimura" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Headpress", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed. If tails, this attack does nothing (not even damage).", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Double Lariat", }, text: { en: "Flip 2 coins. This attack does 40 times the number of heads.", }, }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Neo Discovery", code: "neo2" } } export default card