mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
23 lines
650 B
TypeScript
23 lines
650 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Ruby & Sapphire'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Darkness Energy",
|
|
fr: "Énergie Obscurité",
|
|
de: "Finsternis-Energie"
|
|
},
|
|
|
|
illustrator: "Milky Isobe",
|
|
rarity: "Rare",
|
|
category: "Energy",
|
|
set: Set,
|
|
energyType: "Special",
|
|
|
|
effect: {
|
|
de: "If the Pokémon Darkness Energy is attached to attacks, the attack does 10 more damage to the Active Pokémon (before applying Weakness and Resistance). Ignore this effect unless the Attacking Pokémon is or has Dark in its name. Darkness Energy provides Energy. (Doesn't count as a basic Energy card.)"
|
|
}
|
|
}
|
|
|
|
export default card
|