mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
28 lines
517 B
TypeScript
28 lines
517 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../POP Series 2'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Mr. Briney’s Compassion",
|
||
},
|
||
|
||
illustrator: "Ken Sugimori",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
set: Set,
|
||
trainerType: "Supporter",
|
||
|
||
effect: {
|
||
en: "Choose 1 of your Pokémon in play (excluding Pokémon-ex). Return that Pokémon and all cards attached to it to your hand."
|
||
},
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: false,
|
||
holo: false,
|
||
firstEdition: false
|
||
}
|
||
}
|
||
|
||
export default card
|