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