1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 23:22:11 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

78 lines
1.5 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 '../Undaunted'
const card: Card = {
name: {
en: "Houndoom",
fr: "Demolosse",
},
illustrator: "Hideaki Hakozaki",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
229,
],
hp: 110,
types: [
"Darkness",
],
evolveFrom: {
en: "Houndour",
fr: "Malosse",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Fire Breath",
fr: "Haleine de feu",
},
effect: {
en: "Once during your turn (before your attack), you may flip a coin. If heads, the Defending Pokémon is now Burned. This power can't be used if Houndoom is affected by a Special Condition.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez lancer une pièce. Si c'est face, le Pokémon Défenseur est maintenant Brûlé. Ce pouvoir ne peut pas être utilisé si Démolosse est affecté par un État Spécial.",
},
},
],
attacks: [
{
cost: [
"Darkness",
"Darkness",
"Colorless",
],
name: {
en: "Dark Clamp",
fr: "Pince des Ténèbres",
},
effect: {
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 durant le prochain tour de votre adversaire.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
}
export default card