1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12: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

41 lines
1.6 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Chilling Reign'
const card: Card = {
set: Set,
name: {
fr: "Rouleau Perçant Poing Final",
en: "Single Strike Scroll of Piercing",
es: "Pergamino Penetrante Golpe Brusco",
it: "Rotolo della Perforazione Colpo Singolo",
pt: "Pergaminho Perfurante Golpe Decisivo",
de: "Fokussierter-Angriff-Stichrolle"
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
effect: {
fr: "Le Pokémon Poing Final 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.)",
en: "The Single 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.)",
es: "El Pokémon Golpe Brusco al que esté unida esta carta puede usar el ataque de esta carta. (Sigues necesitando las Energías necesarias para usar este ataque).",
it: "Il Pokémon Colpo Singolo a cui è assegnata questa carta può usare l'attacco di questa carta. Devi comunque avere l'Energia necessaria per usare questo attacco.",
pt: "O Pokémon Golpe Decisivo ao qual esta carta está ligada pode usar o ataque desta carta (você ainda precisa da Energia necessária para usar este ataque).",
de: "Das Fokussierter-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.)"
},
trainerType: "Tool",
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card