mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
93 lines
3.3 KiB
TypeScript
93 lines
3.3 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Battle Styles'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Rapid Strike Urshifu VMAX",
|
||
fr: "Shifours Mille Poings VMAX",
|
||
es: "Urshifu Golpe Fluido VMAX",
|
||
it: "Urshifu Pluricolpo VMAX",
|
||
pt: "Urshifu Golpe Fluido VMAX",
|
||
de: "Fließender-Angriff-Wulaosu VMAX"
|
||
},
|
||
|
||
illustrator: "PLANETA Tsuji",
|
||
rarity: "Ultra Rare",
|
||
category: "Pokemon",
|
||
hp: 330,
|
||
types: ["Fighting"],
|
||
|
||
evolveFrom: {
|
||
en: "Rapid Strike Urshifu V",
|
||
fr: "Shifours Mille Poings-V",
|
||
es: "Urshifu Golpe Fluido V",
|
||
it: "Urshifu Pluricolpo-V",
|
||
pt: "Urshifu Golpe Fluido V",
|
||
de: "Fließender-Angriff-Wulaosu-V"
|
||
},
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Gale Thrust",
|
||
fr: "Coup d'Bourrasque",
|
||
es: "Impulso Vendaval",
|
||
it: "Raffica di Stoccate",
|
||
pt: "Propulsão de Tempestade",
|
||
de: "Orkanstoß"
|
||
},
|
||
|
||
effect: {
|
||
en: "If this Pokémon moved from your Bench to the Active Spot this turn, this attack does 120 more damage.",
|
||
fr: "Si ce Pokémon a été déplacé de votre Banc vers le Poste Actif pendant ce tour, cette attaque inflige 120 dégâts supplémentaires.",
|
||
es: "Si este Pokémon se ha movido de tu Banca al Puesto Activo en este turno, este ataque hace 120 puntos de daño más.",
|
||
it: "Se questo Pokémon si è spostato dalla tua panchina in posizione attiva nel turno in corso, questo attacco infligge 120 danni in più.",
|
||
pt: "Se este Pokémon foi movido do seu Banco para o Campo Ativo durante este turno, este ataque causará 120 pontos de dano a mais.",
|
||
de: "Wenn dieses Pokémon während dieses Zuges von deiner Bank in die Aktive Position gewechselt ist, fügt diese Attacke 120 Schadenspunkte mehr zu."
|
||
},
|
||
|
||
damage: "30+",
|
||
cost: ["Fighting"]
|
||
}, {
|
||
name: {
|
||
en: "G-Max Rapid Flow",
|
||
fr: "Multicoup G-Max",
|
||
es: "Gigagolpe Fluido",
|
||
it: "Gigaflusso Rapido",
|
||
pt: "Fluxo Veloz G-Max",
|
||
de: "Giga-Turbofluss"
|
||
},
|
||
|
||
effect: {
|
||
en: "Discard all Energy from this Pokémon. This attack does 120 damage to 2 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||
fr: "Défaussez toute l'Énergie de ce Pokémon. Cette attaque inflige 120 dégâts à 2 des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||
es: "Descarta todas las Energías de este Pokémon. Este ataque hace 120 puntos de daño a 2 de los Pokémon de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
|
||
it: "Scarta tutte le Energie da questo Pokémon. Questo attacco infligge 120 danni a due dei Pokémon del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.",
|
||
pt: "Descarte todas as Energias deste Pokémon. Este ataque causa 120 pontos de dano a 2 dos Pokémon do seu oponente (não aplique Fraqueza e Resistência aos Pokémon no Banco).",
|
||
de: "Lege alle Energien von diesem Pokémon auf deinen Ablagestapel. Diese Attacke fügt 2 Pokémon deines Gegners 120 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
|
||
},
|
||
|
||
cost: ["Fighting", "Fighting", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "E",
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: true,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "VMAX"
|
||
}
|
||
|
||
export default card
|