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:
53
data/Sword & Shield/Battle Styles/166.ts
Normal file
53
data/Sword & Shield/Battle Styles/166.ts
Normal 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: "S’il 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
|
Reference in New Issue
Block a user