1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 15:12:10 +00:00

70 lines
960 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Team Magma vs Team Aqua'
const card: Card = {
name: {
en: "Team Magma's Houndoom",
},
illustrator: "Ken Ikuji",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
229,
],
hp: 70,
types: [
"Fire",
"Darkness",
],
stage: "Stage1",
attacks: [
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Roasting Heat",
},
effect: {
en: "If the Defending Pokémon is Burned, this attack does 30 damage plus 20 more damage.",
},
damage: 30,
},
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Magma Spurt",
},
effect: {
en: "Discard the top 5 cards from your deck. This attack does 30 damage times the number of Fire and Fighting basic Energy cards discarded in this way.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card