1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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.5 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 '../Chilling Reign'
const card: Card = {
set: Set,
name: {
fr: "Rouleau Céleste Mille Poings",
en: "Rapid Strike Scroll of the Skies",
es: "Pergamino Celestial Golpe Fluido",
it: "Rotolo dei Cieli Colpo Rapido",
pt: "Pergaminho dos Céus Golpe Fluido",
de: "Fließender-Angriff-Himmelsrolle"
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
effect: {
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.)\nLightningColorless Impesanteur 10+\nCette attaque inflige 50 dégâts supplémentaires pour chaque Énergie attachée au Pokémon Actif de votre adversaire.",
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.)\nLightningColorless Gravdrop 10+\nThis attack does 50 more damage for each Energy attached to your opponents Active Pokémon.",
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).\nLightningColorless Caído del Cielo 10+\nEste ataque hace 50 puntos de daño más por cada Energía unida al Pokémon Activo de tu rival.",
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.\nLightning Colorless Discesa Gravitazionale 10+\nQuesto attacco infligge 50 danni in più per ogni Energia assegnata al Pokémon attivo del tuo avversario.",
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).\nLightningColorless Gravitombo 10+\nEste ataque causa 50 pontos de dano a mais para cada Energia ligada ao Pokémon Ativo do seu oponente.",
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.)\nLightningColorless Schwerkraftfall 10+\nDiese Attacke fügt für jede an das Aktive Pokémon deines Gegners angelegte Energie 50 Schadenspunkte mehr zu."
},
trainerType: "Tool",
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card