mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
28 lines
615 B
TypeScript
28 lines
615 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../POP Series 5'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "δ Rainbow Energy",
|
|
},
|
|
|
|
illustrator: "Takumi Akabane",
|
|
rarity: "Uncommon",
|
|
category: "Energy",
|
|
set: Set,
|
|
energyType: "Special",
|
|
|
|
effect: {
|
|
en: "δ Rainbow Energy provides Colorless Energy. While attached to a Pokémon that has δ on its card, δ Rainbow Energy provides every type of Energy but provides only 1 Energy at a time. (Has no effect other than providing Energy.)"
|
|
},
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card
|