1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00

28 lines
433 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldean Fates"
const card: Card = {
set: Set,
name: {
en: "Nemona",
fr: "Menzi",
es: "Mencía",
it: "Nemi"
},
rarity: "Special illustration rare",
category: "Trainer",
effect: {
en: "Draw 3 cards.",
fr: "Piochez 3 cartes.",
es: "Roba 3 cartas.",
it: "Pesca tre carte."
},
trainerType: "Supporter",
regulationMark: "G"
}
export default card