1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00
Florian Bouillon 416c717ce5
Add Evolving Skies Data (#60)
* First batch

Missing more informations like Attacks,etc but it will be added later

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-26 18:28:39 +02:00

28 lines
576 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
name: {
en: "Treasure Energy"
},
rarity: "Uncommon",
category: "Energy",
effect: {
en: "As long as this card is attached to a Pokemon, it provides Colorless Energy.\nIf you took this card as a face-down Prize card during your turn, before you put it into your hand, you may attach this card to 1 of your Pokemon."
},
energyType: "Special"
}
export default card