mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-28 02:40:11 +00:00
32 lines
558 B
TypeScript
32 lines
558 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Darkness Ablaze'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Powerful Colorless Energy",
|
||
},
|
||
illustrator: undefined,
|
||
rarity: "Uncommon",
|
||
category: "Energy",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
en: "As long as this card is attached to a Pokémon, it provides Colorless Energy.\n\n \n\nThe attacks of the Colorless Pokémon this card is attached to do 20 more damage to your opponent’s Active Pokémon (before applying Weakness and Resistance).",
|
||
},
|
||
|
||
energyType: "Normal",
|
||
}
|
||
|
||
export default card
|