mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-14 20:49:54 +00:00
34 lines
909 B
TypeScript
34 lines
909 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Darkness Ablaze'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Powerful Colorless Energy",
|
||
fr: "Énergie Colorless Puissance"
|
||
},
|
||
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).",
|
||
fr: "Tant que cette carte est attachée à un Pokémon, elle fournit une Énergie Colorless.\n\n \n\n\nLes attaques du Pokémon Colorless auquel cette carte est attachée infligent 20 dégâts supplémentaires au Pokémon Actif de votre adversaire (avant application de la Faiblesse et de la Résistance)."
|
||
},
|
||
|
||
energyType: "Special",
|
||
}
|
||
|
||
export default card
|