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: "ex3-14", localId: 14, // Card informations name: { en: "Dragonair", }, hp: 70, type: [ Type.COLORLESS, ], dexId: 148, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex3/14/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex3/14/high.png", }, }, evolveFrom: { en: "Dratini", }, tags: [ Tag.STAGE1, ], illustrator: { id: 43, name: "Aya Kusube" }, attacks: [{ cost: [ Type.LIGHTNING, Type.COLORLESS ], name: { en: "Dazzle Blast", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", }, damage: 20 },{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Healing Wave", }, text: { en: "Remove 1 damage counter from each of your Active Pokémon.", }, damage: 30 }], weaknesses: [{ type: Type.COLORLESS, value: "×2" }], resistances: [{ type: Type.GRASS, value: "-30" },{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Dragon", code: "ex3" } } export default card