1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 18:39:54 +00:00

28 lines
684 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldean Fates"
const card: Card = {
set: Set,
name: {
en: "Penny",
fr: "Pania",
es: "Noa",
it: "Penny"
},
rarity: "Special illustration rare",
category: "Trainer",
effect: {
en: "Put 1 of your Basic Pokémon and all attached cards into your hand.",
fr: "Ajoutez à votre main l'un de vos Pokémon de base et toutes les cartes qui lui sont attachées.",
es: "Pon 1 de tus Pokémon Básicos y todas las cartas unidas a él en tu mano.",
it: "Riprendi in mano uno dei tuoi Pokémon Base e tutte le carte a esso assegnate."
},
trainerType: "Supporter",
regulationMark: "G"
}
export default card