1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-10 07:09:54 +00:00

35 lines
571 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Platinum'
const card: Card = {
name: {
en: "Pokémon Rescue",
fr: "Rescousse Pokémon",
de: "Pokémon-Rettungsaktion"
},
illustrator: "Ryo Ueda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Choisissez un Pokémon dans votre pile de défausse, montrez-le à votre adversaire et placez-le dans votre main.",
de: "Search your discard pile for a Pokémon, show it to your opponent, and put it into your hand."
},
trainerType: "Item",
}
export default card