1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +00:00

Added informations (#25)

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-05-26 22:20:17 +02:00
committed by GitHub
parent 5dab7afa10
commit dc52152f23
166 changed files with 7775 additions and 0 deletions

View File

@ -0,0 +1,55 @@
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
}
export default card