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: "ex6-114", localId: 114, // Card informations name: { en: "Articuno ex", }, hp: 110, type: [ Type.WATER, ], dexId: 144, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex6/114/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex6/114/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 1, name: "Ryo Ueda" }, attacks: [{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS ], name: { en: "Cold Crush", }, text: { en: "You may discard an Energy card attached to Articuno ex. If you do, your opponent discards an Energy card attached to the Defending Pokémon.", }, damage: 50 }], weaknesses: [{ type: Type.METAL, value: "×2" }], rarity: Rarity.RareHoloEX, category: Category.POKEMON, set: { name: "FireRed & LeafGreen", code: "ex6" } } export default card