1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-05 13:09:53 +00:00

63 lines
876 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Darkrai",
},
illustrator: "nagimiso",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 120,
types: [
"Darkness",
],
abilities: [
{
type: "Ability",
name: {
en: "Darkness Guard",
},
effect: {
en: "If this Pokémon has any Darkness Energy attached, it takes 20 less damage from attacks (after applying Weakness and Resistance).",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Vortex of Darkness",
},
effect: {
en: "This attack does 20 more damage for each Darkness Energy attached to this Pokémon.",
},
damage: "60+",
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
}
export default card