mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Evolutions'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Slowbro Spirit Link",
|
||
fr: "Lien Spirituel Flagadoss",
|
||
es: "Vínculo Espiritual de Slowbro",
|
||
it: "Legame Mentale con Slowbro",
|
||
pt: "Elo Espiritual de Slowbro",
|
||
de: "Lahmus‘ Geistesbund"
|
||
},
|
||
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-Flagadoss-EX.",
|
||
en: "Your turn does not end if the Pokémon this card is attached to becomes M Slowbro-EX.",
|
||
es: "Tu turno no termina si el Pokémon al que está unida esta carta se convierte en M-Slowbro-EX.",
|
||
it: "Il tuo turno non finisce se il Pokémon a cui è assegnata questa carta diventa M Slowbro-EX.",
|
||
pt: "Sua vez de jogar não terminará se o Pokémon ao qual este card está ligado tornar-se M-Slowbro-EX.",
|
||
de: "Dein Zug endet nicht, wenn das Pokémon, an das diese Karte angelegt ist, zu M-Lahmus-EX wird."
|
||
},
|
||
trainerType: "Tool",
|
||
|
||
}
|
||
|
||
export default card
|