mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-18 14:29:55 +00:00
33 lines
360 B
TypeScript
33 lines
360 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Boundaries Crossed'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Potion",
|
||
fr: "Potion",
|
||
},
|
||
illustrator: "Ayaka Yoshida",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
fr: "Soignez 30 dégâts à 1 de vos Pokémon.",
|
||
},
|
||
trainerType: "Item",
|
||
|
||
}
|
||
|
||
export default card
|