1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon e21ea0646e
Added BW translation (#65)
* Added basic translation
IT will need a second checkup by another source
as attacks are not correcly ordered

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>

* Removed bugged file

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-09-02 12:01:58 +02:00

42 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Plasma Storm'
const card: Card = {
name: {
en: "Victory Piece",
fr: "Éclat de Victoire",
es: "Pieza Victoria",
it: "Portavittoria",
pt: "Peça da Vitória",
de: "TriumVant"
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Si cette carte est attachée à Victini-EX, Victini-EX peut utiliser ses attaques indépendamment de la quantité ou du type dÉnergie qui lui est attachée.",
en: "If this card is attached to Victini-EX, Victini-EX can use its attacks regardless of the amount or type of Energy attached to it.",
es: "Si esta carta está unida a Victini-EX, Victini-EX puede usar sus ataques sin importar la cantidad o el tipo de Energía unida a él.",
it: "Si cette carte est attachée à Victini-EX, Victini-EX peut utiliser ses attaques indépendamment de la quantité ou du type dÉnergie qui lui est attachée.",
pt: "Se este card estiver ligado a Victini-EX, Victini-EX poderá usar seus ataques independentemente da quantidade ou do tipo de Energia ligada a ele.",
de: "Wenn diese Karte an Victini-EX angelegt ist, kann Victini-EX seine Angriffe ungeachtet der Anzahl oder des Typs der angelegten Energien einsetzen."
},
trainerType: "Tool",
}
export default card