mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-21 07:39:54 +00:00
67 lines
2.4 KiB
TypeScript
67 lines
2.4 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Celestial Guardians"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Wishiwashi",
|
|
fr: "Froussardine",
|
|
es: "Wishiwashi",
|
|
it: "Wishiwashi",
|
|
de: "Lusardin",
|
|
'pt-br': "Wishiwashi",
|
|
ko: "약어리"
|
|
},
|
|
|
|
illustrator: "Kouki Saitou",
|
|
rarity: "One Diamond",
|
|
category: "Pokemon",
|
|
hp: 30,
|
|
types: ["Water"],
|
|
|
|
description: {
|
|
en: "Individually, they're incredibly weak. It's by gathering up into schools that they're able to confront opponents.",
|
|
fr: "Individuellement, ils sont très faibles. Ils ont\ndonc développé une tactique de déplacement\nen banc pour résister aux ennemis.",
|
|
es: "Debido a su manifiesta debilidad cuando van\nsolos, han adquirido la capacidad de agruparse\nen bancos a la hora de enfrentarse a un enemigo.",
|
|
it: "Presi singolarmente sono estremamente deboli.\nCiò li ha portati ad acquisire l'abilità di formare\nun banco quando affrontano il nemico.",
|
|
de: "Weil es alleine unheimlich schwach ist, hat es die\nFähigkeit erworben, einen Schwarm zu formen.\nSo kann es sich seinen Gegnern stellen.",
|
|
'pt-br': "Quando estão sozinhos, são extremamente fracos.\nFormam cardumes para confrontar os seus oponentes.",
|
|
ko: "1마리로는 너무나도 허약해서\n무리를 지어 상대에게 맞서는\n능력을 습득했다."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Call for Family",
|
|
fr: "Appel à la Famille",
|
|
es: "Llamar a la Familia",
|
|
it: "Cerca Famiglia",
|
|
de: "Familienruf",
|
|
'pt-br': "Chamar a Família",
|
|
ko: "동료부르기"
|
|
},
|
|
|
|
cost: ["Water"],
|
|
|
|
effect: {
|
|
en: "Put 1 random Wishiwashi or Wishiwashi ex from your deck onto your Bench.",
|
|
fr: "Placez une carte au hasard entre Froussardine ou Froussardine-ex de votre deck sur votre Banc.",
|
|
es: "Pon 1 carta aleatoria de entre Wishiwashi o Wishiwashi ex de tu baraja en tu Banca.",
|
|
it: "Prendi un Wishiwashi o Wishiwashi-ex a caso dal tuo mazzo e mettilo nella tua panchina.",
|
|
de: "Lege von den Karten Lusardin und Lusardin-ex 1 zufällige aus deinem Deck auf deine Bank.",
|
|
'pt-br': "Coloque 1 carta aleatória dentre Wishiwashi ou Wishiwashi ex do seu baralho no seu Banco.",
|
|
ko: "자신의 덱에서 「약어리」 또는 「약어리 ex」 랜덤으로 1장 벤치로 내보낸다."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Lightning",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1
|
|
}
|
|
|
|
export default card |