mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-02 12:19:53 +00:00
35 lines
1.5 KiB
TypeScript
35 lines
1.5 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Celestial Guardians"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Lana",
|
|
fr: "Néphie",
|
|
es: "Capitana Nereida",
|
|
it: "Suiren",
|
|
de: "Tracy",
|
|
'pt-br': "Vitória",
|
|
ko: "수련"
|
|
},
|
|
|
|
illustrator: "Yuu Nishida",
|
|
rarity: "Two Diamond",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "You can use this card only if you have Araquanid in play. Switch in 1 of your opponent's Benched Pokémon to the Active Spot.",
|
|
fr: "Vous ne pouvez utiliser cette carte que si vous avez Tarenbulle en jeu. Envoyez un des Pokémon de Banc de votre adversaire sur le Poste Actif.",
|
|
es: "Puedes usar esta carta solo si tienes Araquanid en juego. Cambia 1 de los Pokémon en Banca de tu rival por el Pokémon que esté en el Puesto Activo.",
|
|
it: "Puoi usare questa carta solo se hai Araquanid in gioco. Scambia uno dei Pokémon nella panchina del tuo avversario con il suo Pokémon attivo.",
|
|
de: "Du kannst diese Karte nur einsetzen, wenn du Aranestro im Spiel hast. Wechsle 1 Pokémon von der Bank deines Gegners in die Aktive Position ein.",
|
|
'pt-br': "Você só pode usar esta carta se tiver Araquanid em jogo.\nMande 1 dos Pokémon no Banco do seu oponente para o Campo Ativo.",
|
|
ko: "이 카드는 자신의 필드에 「깨비물거미」 있을 때만 사용할 수 있다.\n상대의 벤치 포켓몬을 1마리 선택해서 배틀 포켓몬과 교체한다."
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
boosters: ["solgaleo"]
|
|
}
|
|
|
|
export default card |