1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

72 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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,
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card