1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19: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,65 @@
import { Card } from '../../../interfaces'
import Set from '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Single Strike Urshifu VMAX",
fr: "Shifours Poing Final VMAX",
es: "Urshifu Golpe Brusco VMAX",
it: "Urshifu Singolcolpo VMAX",
pt: "Urshifu Golpe Decisivo VMAX",
de: "Fokussierter-Angriff-Wulaosu VMAX"
},
rarity: "Secret Rare",
category: "Pokemon",
hp: 330,
types: ["Fighting"],
attacks: [{
name: {
en: "Beatdown",
fr: "Dérouillée",
es: "Derrumbar",
it: "Batosta",
pt: "Abater",
de: "Niederprügler"
},
damage: 100,
cost: ["Colorless", "Colorless", "Colorless"]
}, {
name: {
en: "G-Max One Blow",
fr: "Coup Final G-Max",
es: "Gigagolpe Brusco",
it: "Gigacolpo Unico",
pt: "Golpe Único G-Max",
de: "Giga-Einzelschlag"
},
damage: 270,
effect: {
en: "Discard all Energy from this Pokémon. This attacks damage isnt affected by any effects on your opponents Active Pokémon.",
fr: "Défaussez toute lÉnergie de ce Pokémon. Les dégâts de cette attaque ne sont affectés par aucun effet en action sur le Pokémon Actif de votre adversaire.",
es: "Descarta todas las Energías de este Pokémon. El daño de este ataque no se ve afectado por ningún efecto en el Pokémon Activo de tu rival.",
it: "Scarta tutte le Energie da questo Pokémon. I danni di questo attacco non sono influenzati da alcun effetto presente sul Pokémon attivo del tuo avversario.",
pt: "Descarte todas as Energias deste Pokémon. O dano deste ataque não é afetado por quaisquer efeitos no Pokémon Ativo do seu oponente.",
de: "Lege alle Energien von diesem Pokémon auf deinen Ablagestapel. Der Schaden dieser Attacke wird durch Effekte auf dem Aktiven Pokémon deines Gegners nicht verändert."
},
cost: ["Fighting", "Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 3
}
export default card