mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
23 lines
770 B
TypeScript
23 lines
770 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Delta Species'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Holon Energy WP",
|
|
fr: "Énergie Holon WP",
|
|
de: "Holon-Energie WP"
|
|
},
|
|
|
|
illustrator: "Takumi Akabane",
|
|
rarity: "Rare",
|
|
category: "Energy",
|
|
set: Set,
|
|
energyType: "Special",
|
|
|
|
effect: {
|
|
de: "Holon Energy WP provides Energy.\nIf the Pokémon that Holon Energy WP is attached to also has any basic Energy card attached to it, prevent all effects, excluding damage, done to that Pokémon by your opponent's Pokémon. If the Pokémon that Holon Energy WP is attached to also has any basic Energy card attached to it, that Pokémon's Retreat Cost is 0. Ignore these effects if Holon Energy WP is attached to Pokémon-ex."
|
|
}
|
|
}
|
|
|
|
export default card
|