mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-21 07:39:54 +00:00
40 lines
2.6 KiB
TypeScript
40 lines
2.6 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Evolving Skies'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
name: {
|
||
en: "Rapid Strike Scroll of the Flying Dragon",
|
||
fr: "Rouleau du Dragon Volant Mille Poings",
|
||
es: "Pergamino Dragón Volador Golpe Fluido",
|
||
it: "Rotolo del Drago Volante Colpo Rapido",
|
||
pt: "Rapid Strike Scroll of the Flying Dragon",
|
||
de: "Fließender-Angriff-Flugdrachenrolle"
|
||
},
|
||
|
||
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.)",
|
||
fr: "Le Pokémon Mille Poings auquel cette carte est attachée peut utiliser l’attaque sur cette carte. (Vous avez toujours besoin de l’Énergie nécessaire pour utiliser cette attaque.)\nFireLightning Corps Céleste\nDéfaussez 2 Énergies de ce Pokémon. Cette attaque inflige 90 dégâts à l’un des Pokémon de votre adversaire.\n(N’appliquez 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).\nFireLightning Meteoro\nDescarta 2 Energías de este Pokémon. Este ataque hace 90 puntos de daño a 1\nde los Pokémon de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
|
||
it: "Il Pokémon Colpo Rapido a cui è assegnata questa carta può usare l’attacco di questa carta. Devi comunque avere l’Energia necessaria per usare questo attacco.\nFireLightning Meteorite\nScarta due Energie da questo Pokémon. Questo attacco infligge 90 danni a uno dei Pokémon del tuo avversario.\nNon applicare debolezza e resistenza ai Pokémon in panchina.",
|
||
pt: "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.)\nFireLightning Meteor\nDiscard 2 Energy from this Pokémon. This attack does 90 damage to 1 of your opponent’s Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)",
|
||
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.)\nFireLightning Meteor\nLege 2 Energien von diesem Pokémon auf deinen Ablagestapel. Diese Attacke fügt 1 Pokémon deines Gegners 90 Schadenspunkte zu.\n(Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
|
||
},
|
||
|
||
trainerType: "Tool",
|
||
illustrator: "5ban Graphics"
|
||
}
|
||
|
||
export default card
|