1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon afd3a664ae
Fixed most POP sets (#99)
Signed-off-by: Avior <github@avior.me>
2021-10-26 17:23:45 +02:00

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