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.2 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: "Palkia-EX",
fr: "Palkia EX",
es: "Palkia-EX",
it: "Palkia-EX",
pt: "Palkia-EX",
de: "Palkia-EX"
},
illustrator: "Eske Yoshinob",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
484,
],
hp: 180,
types: [
"Dragon",
],
suffix: "EX",
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Strafe",
fr: "Rase-Motte",
},
effect: {
en: "You may switch this Pokémon with 1 of your Benched Pokémon.",
fr: "Vous pouvez échanger ce Pokémon avec 1 de vos Pokémon de Banc.",
},
damage: 50,
},
{
cost: [
"Grass",
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Dimension Heal",
fr: "Soin Dimensionnel",
},
effect: {
en: "Heal from this Pokémon 20 damage for each Plasma Energy attached to this Pokémon.",
fr: "Soignez à ce Pokémon 20 dégâts pour chaque Énergie Plasma attachée à ce Pokémon.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Dragon",
value: "×2"
},
],
retreat: 2,
}
export default card