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

83 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Boundaries Crossed'
const card: Card = {
name: {
en: "Cresselia-EX",
fr: "Cresselia-EX",
es: "Cresselia-EX",
it: "Cresselia-EX",
pt: "Cresselia-EX",
de: "Cresselia-EX"
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
488,
],
hp: 170,
types: [
"Psychic",
],
suffix: "EX",
abilities: [
{
type: "Ability",
name: {
en: "Sparkling Particles",
fr: "Particules Étincelantes",
es: "Partículas Centelleantes",
it: "Atomidiluce",
pt: "Partículas Cintilantes",
de: "Glitzerteilchen"
},
effect: {
en: "At any time between turns, heal 10 damage from this Pokémon.",
fr: "Nimporte quand entre chaque tour, soignez 10 dégâts à ce Pokémon.",
es: "En cualquier momento entre turnos, cura 10 puntos de daño a este Pokémon.",
it: "Tra un turno e laltro, in qualsiasi momento, cura questo Pokémon da 10 danni.",
pt: "A qualquer momento entre as vezes de jogar, cure 10 de danos deste Pokémon.",
de: "Heile zu einem beliebigen Zeitpunkt zwischen den Zügen 10 Schadenspunkte bei diesem Pokémon."
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Psychic Protection",
fr: "Protection Psy",
},
effect: {
en: "During your opponent's next turn, this Pokémon has no Weakness.",
fr: "Pendant le prochain tour de votre adversaire, ce Pokémon n'a pas de Faiblesse.",
},
damage: 90,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card