mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
23 lines
646 B
TypeScript
23 lines
646 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Unseen Forces'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Darkness Energy",
|
|
fr: "Énergie Obscurité",
|
|
de: "Darkness Energy*"
|
|
},
|
|
|
|
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
|