mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-27 13:22:15 +00:00
34 lines
541 B
TypeScript
34 lines
541 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../XY Black Star Promos'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Aerodactyl Spirit Link",
|
|
fr: "Lien Spirituel Ptéra",
|
|
},
|
|
illustrator: "5ban Graphics",
|
|
rarity: "None",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Votre tour ne se termine pas si le Pokémon auquel cette carte est attachée devient M-Ptéra-EX.",
|
|
en: "Your turn does not end if the Pokémon this card is attached to becomes M Aerodactyl-EX."
|
|
},
|
|
trainerType: "Tool",
|
|
|
|
}
|
|
|
|
export default card
|