mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 23:02:09 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
25 lines
684 B
TypeScript
25 lines
684 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Shining Fates'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Shehroz",
|
||
en: "Rose"
|
||
},
|
||
|
||
illustrator: "Megumi Mizutani",
|
||
rarity: "Ultra Rare",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
fr: "Attachez jusqu’à 2 cartes Énergie de base de votre pile de défausse à l’un de vos Pokémon-VMAX. Si vous avez attaché au moins une carte Énergie de cette façon, défaussez votre main.",
|
||
en: "Attach up to 2 basic Energy cards from your discard pile to 1 of your Pokémon VMAX. If you attached any Energy cards in this way, discard your hand."
|
||
},
|
||
|
||
trainerType: "Supporter",
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card |