mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-26 01:49:54 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
25 lines
695 B
TypeScript
25 lines
695 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Champion\'s Path'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Rotom Phone",
|
||
fr: "Motismart"
|
||
},
|
||
|
||
illustrator: "Ryo Ueda",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
set: Set,
|
||
|
||
effect: {
|
||
en: "Look at the top 5 cards of your deck, choose 1 of them, and shuffle the other cards back into your deck. Then, put the card you chose on top of your deck.",
|
||
fr: "Regardez les 5 cartes du dessus de votre deck, choisissez l’une d’elles, puis mélangez les autres cartes avec votre deck. Ensuite, placez la carte que vous avez choisie sur le dessus de votre deck."
|
||
},
|
||
|
||
trainerType: "Item",
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|