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: "col1-22", localId: 22, // Card informations name: { en: "Umbreon", }, hp: 90, type: [ Type.DARKNESS, ], dexId: 197, image: { low: { en: "https://assets.tcgdex.net/en/col/col1/22/low.png", }, high: { en: "https://assets.tcgdex.net/en/col/col1/22/high.png", }, }, evolveFrom: { en: "Eevee", }, tags: [ Tag.STAGE1, ], illustrator: { id: 9, name: "Mitsuhiro Arita" }, attacks: [{ cost: [ Type.DARKNESS ], name: { en: "Moonlight Fang", }, text: { en: "During your opponent's next turn, prevent all effects, including damage, done to Umbreon by attacks from your opponent's Pokémon that has any Poké-Powers or Poké-Bodies.", }, damage: 30 },{ cost: [ Type.DARKNESS, Type.COLORLESS ], name: { en: "Quick Blow", }, text: { en: "Flip a coin. If heads, this attack does 30 damage plus 30 more damage.", }, damage: 30 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Call of Legends", code: "col1" } } export default card