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: "ex4-34", localId: 34, // Card informations name: { en: "Team Magma's Houndoom", }, hp: 70, type: [ Type.FIRE, ], dexId: 229, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex4/34/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex4/34/high.png", }, }, evolveFrom: {}, tags: [ Tag.STAGE1, ], illustrator: { id: 42, name: "Ken Ikuji" }, attacks: [{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Target Scorch", }, text: { en: "If the Defending Pokémon has Team Aqua in its name, the Defending Pokémon is now Burned.", }, damage: 30 },{ cost: [ Type.FIRE, Type.COLORLESS, Type.COLORLESS ], name: { en: "Damage Burn", }, text: { en: "If the Defending Pokémon already has any damage counters on it, 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 Magma vs Team Aqua", code: "ex4" } } export default card