mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* 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>
85 lines
2.1 KiB
TypeScript
85 lines
2.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Dragons Exalted'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Reuniclus",
|
||
fr: "Symbios",
|
||
es: "Reuniclus",
|
||
it: "Reuniclus",
|
||
pt: "Reuniclus",
|
||
de: "Zytomega"
|
||
},
|
||
illustrator: "5ban Graphics",
|
||
rarity: "Secret Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
579,
|
||
],
|
||
hp: 90,
|
||
types: [
|
||
"Psychic",
|
||
],
|
||
evolveFrom: {
|
||
en: "Duosion",
|
||
fr: "Méios",
|
||
},
|
||
stage: "Stage2",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Ability",
|
||
name: {
|
||
en: "Damage Swap",
|
||
fr: "Échange de Dégâts",
|
||
es: "Intercambio de Daño",
|
||
it: "Dannoscambio",
|
||
pt: "Troca de Danos",
|
||
de: "Schadenstausch"
|
||
},
|
||
effect: {
|
||
en: "As often as you like during your turn (before your attack), you may move 1 damage counter from 1 of your Pokémon to another of your Pokémon.",
|
||
fr: "Autant de fois que vous le voulez pendant votre tour (avant votre attaque), vous pouvez déplacer 1 marqueur de dégâts de l’un de vos Pokémon vers un autre de vos Pokémon.",
|
||
es: "Todas las veces que quieras durante tu turno (antes de tu ataque), puedes mover 1 contador de daño de 1 de tus Pokémon a otro de tus Pokémon.",
|
||
it: "Durante il tuo turno, prima di attaccare, puoi distribuire a piacimento i segnalini danno presenti sui tuoi Pokémon.",
|
||
pt: "Tantas vezes quanto desejar em sua vez de jogar (antes de atacar), você pode mover 1 marcador de danos de 1 dos seus Pokémon para outro dos seus Pokémon.",
|
||
de: "Beliebig oft während deines Zuges (vor deinem Angriff) kannst du 1 Schadensmarke von 1 deiner Pokémon auf ein anderes deiner Pokémon verschieben."
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
"Psychic",
|
||
"Psychic",
|
||
],
|
||
name: {
|
||
en: "Psywave",
|
||
fr: "Vague Psy",
|
||
},
|
||
effect: {
|
||
en: "Does 10 more damage for each Energy attached to the Defending Pokémon.",
|
||
fr: "Inflige 10 dégâts supplémentaires pour chaque Énergie attachée au Pokémon Défenseur.",
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|