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

40 lines
2.8 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "Rapid Strike Scroll of Swirls",
fr: "Rouleau Tourbillons Mille Poings",
es: "Pergamino Vorágine Golpe Fluido",
it: "Rotolo dei Vortici Colpo Rapido",
pt: "Pergaminho de Turbilhão Golpe Fluido",
de: "Fließender-Angriff-Wirbelrolle"
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "The Rapid Strike Pokémon this card is attached to can use the attack on this card. (You still need the necessary Energy to use this attack.)\n\nFightingColorlessColorless Matchless Maelstrom\nThis attack does 30 damage to each of your opponents Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Le Pokémon Mille Poings auquel cette carte est attachée peut utiliser lattaque sur cette carte. (Vous avez toujours besoin de lÉnergie nécessaire pour utiliser cette attaque.)\n\n\nFightingColorlessColorless Maelström Redoutable\nCette attaque inflige 30 dégâts à chacun des Pokémon de votre adversaire.\n(Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
es: "El Pokémon Golpe Fluido al que esté unida esta carta puede usar el ataque de esta carta. (Sigues necesitando las Energías necesarias para usar este ataque).\n\nFightingColorlessColorless \nVorágine sin Igual\nEste ataque hace 30 puntos de daño a cada uno de los Pokémon de tu rival. \n(No apliques Debilidad y Resistencia a los Pokémon en Banca).",
it: "Il Pokémon Colpo Rapido a cui è assegnata questa carta può usare lattacco di questa carta. Devi comunque avere lEnergia necessaria per usare questo attacco.\n\nFightingColorlessColorless Maelstrom Ineguagliabile\nQuesto attacco infligge 30 danni a ciascuno dei Pokémon del tuo avversario. \nNon applicare debolezza e resistenza ai Pokémon in panchina.",
pt: "O Pokémon Golpe Fluido ao qual esta carta está ligada pode usar o ataque desta carta (você ainda precisa da Energia necessária para usar este ataque).\n\nFightingColorlessColorless Redemoinho Inigualável\nEste ataque causa 30 pontos de dano a cada um dos Pokémon do seu oponente\n(não aplique Fraqueza e Resistência aos Pokémon no Banco).",
de: "Das Fließender-Angriff-Pokémon, an das diese Karte angelegt ist, kann die Attacke auf dieser Karte einsetzen. (Du benötigst jedoch die für diese Attacke notwendige Energie.)\n\nFightingColorlessColorless Beispielloser Mahlstrom\nDiese Attacke fügt jedem Pokémon deines Gegners 30 Schadenspunkte zu. \n(Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
trainerType: "Tool",
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card