1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-21 15:49:55 +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
594 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: false,
reverse: false,
holo: false,
firstEdition: false
},
name: {
en: "Boost Shake"
},
rarity: "Secret Rare",
category: "Trainer",
effect: {
en: "Search your deck for a card that evolves from 1 of your Pokemon and put it onto that Pokemon to evolve it. Then, shuffle your deck. You can use this card during your first turn or on a Pokemon that was put into play this turn. Your turn ends."
},
trainerType: "Item"
}
export default card