mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-23 00:29:55 +00:00
* 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>
28 lines
614 B
TypeScript
28 lines
614 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: "Raihan"
|
||
},
|
||
|
||
rarity: "Secret Rare",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
en: "You can play this card only if any of your Pokemon were Knocked Out during your opponent’s last turn.\nAttach a basic Energy from your discard pile to 1 of your Pokemon. If you do, search your deck for a card and put it into your hand. Then, shuffle your deck."
|
||
},
|
||
|
||
trainerType: "Supporter"
|
||
}
|
||
|
||
export default card |