mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
33 lines
443 B
TypeScript
33 lines
443 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Evolutions'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Pidgeot Spirit Link",
|
|
fr: "Lien Spirituel Roucarnage",
|
|
},
|
|
illustrator: "5ban Graphics",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Votre tour ne se termine pas si le Pokémon auquel cette carte est attachée devient M-Roucarnage-EX.",
|
|
},
|
|
trainerType: "Tool",
|
|
|
|
}
|
|
|
|
export default card
|