mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-20 02:59:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
65
data/Sword & Shield/Darkness Ablaze/21.ts
Normal file
65
data/Sword & Shield/Darkness Ablaze/21.ts
Normal file
@ -0,0 +1,65 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Darkness Ablaze'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Houndoom V",
|
||||
},
|
||||
illustrator: "Ayaka Yoshida",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
hp: 210,
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fire",
|
||||
],
|
||||
name: {
|
||||
en: "Searing Flame",
|
||||
},
|
||||
effect: {
|
||||
en: "Your opponent’s Active Pokémon is now Burned.",
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Fire",
|
||||
"Fire",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Vengeful Flame",
|
||||
},
|
||||
effect: {
|
||||
en: "If your Benched Fire Pokémon have any damage counters on them, this attack does 100 more damage.",
|
||||
},
|
||||
damage: "100+",
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user