1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00

23 lines
760 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Delta Species'
const card: Card = {
name: {
en: "Holon Energy GL",
fr: "Énergie Holon GL",
de: "Holon-Energie PE"
},
illustrator: "Takumi Akabane",
rarity: "Rare",
category: "Energy",
set: Set,
energyType: "Special",
effect: {
de: "Holon Energy GL provides Energy. If the Pokémon that Holon Energy GL is attached to also has a basic Energy card attached to it, that Pokémon can't be affected by any Special Conditions. If the Pokémon that Holon Energy GL is attached to also has a basic Energy card attached to it, damage done by your opponent's Pokémon-ex is reduced by 10. Ignore these effects if Holon Energy GL is attached to Pokémon-ex."
}
}
export default card