mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-06 17:27:52 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
25 lines
636 B
TypeScript
25 lines
636 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Darkness Ablaze'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Turbo Patch",
|
||
fr: "Fortifiant Turbo"
|
||
},
|
||
|
||
illustrator: "Toyste Beach",
|
||
rarity: "Rare",
|
||
category: "Trainer",
|
||
set: Set,
|
||
|
||
effect: {
|
||
en: "Flip a coin. If heads, attach a basic Energy card from your discard pile to 1 of your Basic Pokémon that isn’t a Pokémon-GX.",
|
||
fr: "Lancez une pièce. Si c’est face, attachez une carte Énergie de base de votre pile de défausse à l’un de vos Pokémon de base qui n’est pas un Pokémon-GX."
|
||
},
|
||
|
||
trainerType: "Item",
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|