1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-12 15:59:18 +00:00

Added informations on more languages for Sword & Shield cards

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-06-29 17:20:26 +02:00
parent b1c866b38b
commit 96f34fcafb
1520 changed files with 28918 additions and 4846 deletions

View File

@ -0,0 +1,53 @@
import { Card } from '../../../interfaces'
import Set from '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Tapu Koko VMAX",
fr: "Tokorico VMAX",
es: "Tapu Koko VMAX",
it: "Tapu Koko VMAX",
pt: "Tapu Koko VMAX",
de: "Kapu-Riki VMAX"
},
rarity: "Secret Rare",
category: "Pokemon",
hp: 320,
types: ["Lightning"],
attacks: [{
name: {
en: "Max Shock",
fr: "Éclairomax",
es: "Maxidescarga",
it: "Dynashock",
pt: "Eletrochoque Max",
de: "Dyna-Schock"
},
damage: 180,
effect: {
en: "If you have more Prize cards remaining than your opponent, their Active Pokémon is now Paralyzed.",
fr: "Sil vous reste plus de cartes Récompense quà votre adversaire, son Pokémon Actif est maintenant Paralysé.",
es: "Si te quedan más cartas de Premio que a tu rival, su Pokémon Activo pasa a estar Paralizado.",
it: "Se hai più carte Premio rimanenti del tuo avversario, il suo Pokémon attivo viene paralizzato.",
pt: "Se você tiver mais cartas de Prêmio restantes do que seu oponente, o Pokémon Ativo dele(a) ficará Paralisado.",
de: "Wenn du mehr verbleibende Preiskarten hast als dein Gegner, ist sein Aktives Pokémon jetzt paralysiert."
},
cost: ["Lightning", "Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1
}
export default card