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: "ecard3-110", localId: 110, // Card informations name: { en: "Ursaring", }, hp: 80, type: [ Type.COLORLESS, ], dexId: 217, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard3/110/low.png", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard3/110/high.png", }, }, evolveFrom: { en: "Teddiursa", }, tags: [ Tag.STAGE1, ], illustrator: { id: 9, name: "Mitsuhiro Arita" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Bear Hug", }, text: { en: "The Defending Pokémon can't Retreat during your opponent's next turn.", }, damage: 30 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Rend", }, text: { en: "If the Defending Pokémon has any damage counters on it, this attack does 40 damage plus 20 more damage. If not, this attack does 40 damage.", }, damage: 40 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Skyridge", code: "ecard3" } } export default card