1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-09 18:47:50 +00:00
Florian Bouillon ec1b6a06b0
Add regulation mark (#17)
* Added to interface

* Added Regulation mark to all current cards

* Ready for merge
2021-05-28 11:21:10 +02:00

56 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Houndoom",
fr: "Démolosse"
},
illustrator: "Ryota Murayama",
rarity: "Rare",
category: "Pokemon",
hp: 130,
types: ["Darkness"],
evolveFrom: {
en: "Houndour",
fr: "Malosse"
},
abilities: [{
type: "Ability",
name: {
en: "Single Strike Roar",
fr: "Rugissement Poing Final"
},
effect: {
en: "Once during your turn, you may search your deck for a Single Strike Energy card and attach it to 1 of your Single Strike Pokémon. Then, shuffle your deck. If you attached Energy to a Pokémon in this way, put 2 damage counters on that Pokémon.",
fr: "Une fois pendant votre tour, vous pouvez chercher dans votre deck une carte Énergie Poing Final, puis lattacher à lun de vos Pokémon Poing Final. Mélangez ensuite votre deck. Si vous avez attaché de lÉnergie à un Pokémon de cette façon, placez 2 marqueurs de dégâts sur ce Pokémon-là."
}
}],
attacks: [{
name: {
en: "Darkness Fang",
fr: "Croc Obscur"
},
damage: 50,
cost: ["Darkness", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card