1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 13:22:15 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

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