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

80 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 Blast'
const card: Card = {
name: {
en: "Dialga-EX",
fr: "Dialga EX",
es: "Dialga-EX",
it: "Dialga-EX",
pt: "Dialga-EX",
de: "Dialga-EX"
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
483,
],
hp: 180,
types: [
"Dragon",
],
suffix: "EX",
attacks: [
{
cost: [
"Psychic",
"Metal",
"Colorless",
],
name: {
en: "Reverse Edge",
fr: "Revers-Lame",
},
effect: {
en: "Flip a coin. If heads, put a card from your discard pile into your hand.",
fr: "Lancez une pièce. Si c'est face, ajoutez une carte de votre pile de défausse à votre main.",
},
damage: 50,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Fast Forward",
fr: "Avance Rapide",
},
effect: {
en: "For each Plasma Energy attached to this Pokémon, discard the top card of your opponent's deck.",
fr: "Pour chaque Énergie Plasma attachée à ce Pokémon, défaussez la carte du dessus du deck de votre adversaire.",
},
damage: 90,
},
],
weaknesses: [
{
type: "Dragon",
value: "×2"
},
],
retreat: 2,
}
export default card