1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* 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
2021-10-26 10:40:03 +02:00

40 lines
2.3 KiB
TypeScript

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.\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 qu'un Pokémon Mille Poings, défaussez-la.\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\nun 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