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: "ecard2-15", localId: 15, // Card informations name: { en: "Houndoom", }, hp: 70, type: [ Type.DARKNESS, ], dexId: 229, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard2/15/low.png", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard2/15/high.png", }, }, evolveFrom: { en: "Houndour", }, tags: [ Tag.STAGE1, ], illustrator: { id: 30, name: "Hajime Kusajima" }, attacks: [{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Fireworks", }, text: { en: "Flip a coin. If tails, discard 1 Energy card attached to Houndoom.", }, damage: 30 },{ cost: [ Type.DARKNESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Dark Impact", }, text: { en: "The Defending Pokémon can't use any Poké-Powers until the end of your opponent's next turn.", }, damage: 40 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Aquapolis", code: "ecard2" } } export default card