1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 09:59:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,73 @@
import { Card } from '../../../interfaces'
import Set from '../Lost Thunder'
const card: Card = {
name: {
en: "Houndoom",
fr: "Démolosse",
},
illustrator: "Sekio",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
229,
],
hp: 110,
types: [
"Fire",
],
evolveFrom: {
en: "Houndour",
fr: "Malosse",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Nasty Plot",
fr: "Machination",
},
effect: {
en: "Search your deck for a card and put it into your hand. Then, shuffle your deck.",
fr: "Cherchez une carte dans votre deck, puis ajoutez-la à votre main. Mélangez ensuite votre deck.",
},
},
{
cost: [
"Fire",
"Fire",
],
name: {
en: "Attack Operation",
fr: "Opération dAttaque",
},
effect: {
en: "If you have more cards in your hand than your opponent, this attack does 80 more damage.",
fr: "Si vous avez plus de cartes dans votre main que votre adversaire, cette attaque inflige 80 dégâts supplémentaires.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
}
export default card