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: "bw10-56", localId: 56, // Card informations name: { en: "Houndoom", fr: "Démolosse", }, hp: 100, type: [ Type.DARKNESS, ], dexId: 229, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw10/56/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw10/56/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw10/56/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw10/56/high.png", }, }, evolveFrom: { en: "Houndour", fr: "Malosse", }, tags: [ Tag.STAGE1, ], illustrator: { id: 19, name: "Shin Nagasawa" }, attacks: [{ cost: [ Type.DARKNESS, Type.COLORLESS ], name: { en: "Dark Clamp", fr: "Pince des Ténèbres", }, text: { en: "The Defending Pokémon can't retreat during your opponent's next turn.", fr: "Le Pokémon Défenseur ne peut pas battre en retraite pendant le prochain tour de votre adversaire.", }, damage: 30 },{ cost: [ Type.DARKNESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Blazing Claws", fr: "Griffes Ardentes", }, text: { en: "If the Defending Pokémon is a Team Plasma Pokémon, this attack does 60 more damage, and the Defending Pokémon is now Burned.", fr: "Si le Pokémon Défenseur est un Pokémon de la Team Plasma, cette attaque inflige 60 dégâts supplémentaires et le Pokémon Défenseur est maintenant Brûlé.", }, damage: 60 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 1, rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Plasma Blast", code: "bw10" } } export default card