1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

85 lines
1.7 KiB
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 '../Dragon'
const card: Card = {
name: {
en: "Houndoom",
fr: "Hypotrempe",
de: "Hundemon"
},
illustrator: "Atsuko Nishida",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
229,
],
hp: 70,
types: [
"Darkness",
],
evolveFrom: {
en: "Houndour",
},
stage: "Stage1",
attacks: [
{
cost: [
"Darkness",
"Colorless",
],
name: {
en: "Feint Attack",
fr: "Feinte",
de: "Feint Attack"
},
effect: {
en: "Choose 1 of your opponent's Pokémon. This attack does 20 damage to that Pokémon. This attack's damage isn't affected by Weakness, Resistance, Poké-Powers, Poké-Bodies, or any other effects on that Pokémon.",
fr: "Choisissez un des Pokémon de votre adversaire. Cette attaque lui inflige 20 dégâts. Les dégâts de cette attaque ne sont pas affectés par la Faiblesse, la Résistance, les Poké-Powers, les Poké-Bodies ou tout autre effet.",
de: "Choose 1 of your opponent's Pokémon. This attack does 20 damage to that Pokémon. This attack's damage isn't affected by Weakness, resistance, Poke-Powers, Poke-Bodies, or any other effects on that Pokémon."
},
},
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Flamethrower",
fr: "Lance-flammes",
de: "Flamethrower"
},
effect: {
en: "Discard a Fire Energy card attached to Houndoom.",
fr: "Défaussez une carte Énergie attachée à Démolosse.",
de: "Discard a Energy card attached to Houndoom."
},
damage: 50,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-30"
},
],
}
export default card