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: "ex11-41", localId: 41, // Card informations name: { en: "Dragonair δ", }, hp: 70, type: [ Type.LIGHTNING, ], dexId: 148, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex11/41/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex11/41/high.png", }, }, evolveFrom: { en: "Dratini", }, tags: [ Tag.STAGE1, ], illustrator: { id: 30, name: "Hajime Kusajima" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Slam", }, text: { en: "Flip 2 coins. This attack does 20 damage times the number of heads.", }, damage: 20 },{ cost: [ Type.LIGHTNING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Dragon Rage", }, damage: 40 }], weaknesses: [{ type: Type.COLORLESS, value: "×2" }], resistances: [{ type: Type.GRASS, value: "-30" },{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Delta Species", code: "ex11" } } export default card