mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-28 13:52:13 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
25 lines
539 B
TypeScript
25 lines
539 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Milo",
|
||
fr: "Percy"
|
||
},
|
||
|
||
illustrator: "Hitoshi Ariga",
|
||
rarity: "Rare",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
en: "Discard up to 2 cards from your hand, and draw 2 cards for each card you discarded in this way.",
|
||
fr: "Défaussez jusqu’à 2 cartes de votre main, puis piochez 2 cartes pour chaque carte défaussée de cette façon."
|
||
},
|
||
|
||
trainerType: "Supporter",
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card |