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

39 lines
2.3 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 Energy",
fr: "Énergie Mille Poings",
es: "Energía Golpe Fluido",
it: "Energia Colpo Rapido",
pt: "Energia Golpe Fluido",
de: "Fließender-Angriff-Energie"
},
rarity: "Uncommon",
category: "Energy",
effect: {
en: "This card can only be attached to a Rapid Strike Pokémon. If this card is attached to anything other than a Rapid Strike Pokémon, discard this card.\n\nAs long as this card is attached to a Pokémon, it provides 2 in any combination of Water Energy and Fighting Energy.",
fr: "Cette carte ne peut être attachée quà un Pokémon Mille Poings. Si cette carte est attachée à autre chose quun Pokémon Mille Poings, défaussez-la.\n\n\nTant que cette carte est attachée à un Pokémon, elle fournit une combinaison de 2 cartes Énergie Water et Énergie Fighting.",
es: "Esta carta solo puede unirse a Pokémon Golpe Fluido. Si esta carta está unida a cualquier otra carta que no sea un Pokémon Golpe Fluido, descarta esta carta.\n\nMientras esta carta esté unida a 1 Pokémon, proporciona\n un total de 2 Energías, Water y Fighting, en cualquier combinación.",
it: "Questa carta può essere assegnata solo a Pokémon Colpo Rapido. Scarta questa carta se è assegnata a un Pokémon che non è un Pokémon Colpo Rapido.\n\nFintanto che questa carta è assegnata a un Pokémon, fornisce due Energie Water e Fighting in qualsiasi combinazione.",
pt: "Esta carta só pode ser ligada a um Pokémon Golpe Fluido. Se esta carta estiver ligada a qualquer coisa além de um Pokémon Golpe Fluido, descarte esta carta.\n\nEnquanto esta carta estiver ligada a um Pokémon, ela fornecerá 2 Energias em qualquer combinação de Energia Water e Energia Fighting.",
de: "Diese Karte kann nur an ein Fließender-Angriff-Pokémon angelegt sein. Wenn diese Karte an etwas anderes als ein Fließender-Angriff-Pokémon angelegt ist, lege diese Karte auf deinen Ablagestapel.\n\nSolange diese Karte an ein Pokémon angelegt ist, liefert sie 2 Energien in beliebiger Kombination aus Water-Energie und Fighting-Energie."
},
energyType: "Special",
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card