1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-12 15:59:18 +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

67
data/Neo/Neo Destiny/7.ts Normal file
View File

@ -0,0 +1,67 @@
import { Card } from '../../../interfaces'
import Set from '../Neo Destiny'
const card: Card = {
name: {
en: "Dark Houndoom",
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
229,
],
hp: 60,
types: [
"Fire",
],
evolveFrom: {
en: "Houndour",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Eerie Howl",
},
effect: {
en: "If your opponent's Bench isn't full, look at his or her hand. If your opponent has any Baby Pokémon or Basic Pokémon there, choose 1 of them and put it on his or her Bench. Then, switch it with the Defending Pokémon.",
},
},
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Dark Fire",
},
effect: {
en: "If there are any Energy cards attached to Dark Houndoom, discard 1 of them and this attack does 30 damage plus 20 more damage (plus 10 more damage for the Energy you discarded). If there aren't any, this attack does 30 damage.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card