import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "ex7-37", localId: 37, // Card informations name: { en: "Dark Houndoom", }, hp: 70, type: [ Type.FIRE, Type.DARKNESS, ], dexId: 229, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex7/37/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex7/37/high", }, }, evolveFrom: { en: "Houndour", }, tags: [ Tag.STAGE1, ], illustrator: "Nakaoka", abilities: [{ id: 203, type: AbilityType.POKEPOWER, name: { en: "Fire Breath", }, text: { en: "Once during your turn (before your attack), if Dark Houndoom is your Active Pokémon, you may flip a coin. If heads, the Defending Pokémon (choose 1 if there are 2) is now Burned. This power can't be used if Dark Houndoom is affected by a Special Condition.", } }], attacks: [{ cost: [ Type.FIRE, Type.COLORLESS, Type.COLORLESS ], name: { en: "Fire Payback", }, text: { en: "If you have less Benched Pokémon than your opponent, this attack does 40 damage plus 20 more damage.", }, damage: 40 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Team Rocket Returns", code: "ex7" } } export default card