1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

103 lines
3.2 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 '../Chilling Reign'
const card: Card = {
name: {
en: "Shadow Rider Calyrex VMAX",
fr: "Sylveroy Cavalier dEffroi VMAX",
es: "Calyrex Jinete Espectral VMAX",
it: "Calyrex Cavaliere Spettrale VMAX",
pt: "Calyrex Cavaleiro Espectral VMAX",
de: "Rappenreiter-Coronospa VMAX"
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 320,
dexId: [898],
types: [
"Psychic",
],
evolveFrom: {
en: "Shadow Rider Calyrex V",
fr: "Sylveroy Cavalier dEffroi-V"
},
stage: 'VMAX',
abilities: [{
type: 'Ability',
name: {
en: 'Underworld Door',
fr: "Porte des Abîmes",
es: "Puerta del Inframundo",
it: "Portale Sottomondo",
pt: "Portão do Submundo",
de: "Tür zur Unterwelt"
},
effect: {
en: "Once during your turn, you may attach a Psychic Energy card from your hand to 1 of your Benched Psychic Pokémon. If you attached Energy to a Pokémon in this way, draw 2 cards.",
fr: "Une fois pendant votre tour, vous pouvez attacher une carte Énergie Psychic de votre main à lun de vos Pokémon Psychic de Banc. Si vous avez attaché de lÉnergie à un Pokémon de cette façon, piochez 2 cartes.",
es: "Una vez durante tu turno, puedes unir 1 carta de Energía Psychic de tu mano a 1 de tus Pokémon Psychic en Banca. Si has unido Energía a un Pokémon de esta manera, roba 2 cartas.",
it: "Una sola volta durante il tuo turno, puoi assegnare a uno dei tuoi Pokémon Psychic in panchina una carta Energia Psychic dalla tua mano. Se hai assegnato dellEnergia a un Pokémon in questo modo, pesca due carte.",
pt: "Uma vez durante o seu turno, você poderá ligar 1 carta de Energia Psychic da sua mão a 1 dos seus Pokémon Psychic no Banco. Se você ligou Energia a um Pokémon desta forma, compre 2 cartas.",
de: "Einmal während deines Zuges kannst du 1 Psychic-Energiekarte aus deiner Hand an 1 Psychic-Pokémon auf deiner Bank anlegen. Wenn du auf diese Weise Energie an ein Pokémon angelegt hast, ziehe 2 Karten."
}
}],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Max Geist",
fr: "Spiritomax",
es: "Maxiespíritu",
it: "Dynaspirito",
pt: "Assombração Max",
de: "Dyna-Geist"
},
effect: {
en: "This attack does 30 more damage for each Psychic Energy attached to all of your Pokémon.",
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Énergie Psychic attachée à tous vos Pokémon.",
es: "Este ataque hace 30 puntos de daño más por cada Energía Psychic unida a todos tus Pokémon.",
it: "Questo attacco infligge 30 danni in più per ogni Energia Psychic assegnata ai tuoi Pokémon.",
pt: "Este ataque causa 30 pontos de dano a mais para cada Energia Psychic ligada a todos os seus Pokémon.",
de: "Diese Attacke fügt für jede an alle deine Pokémon angelegte Psychic-Energie 30 Schadenspunkte mehr zu."
},
damage: '10+'
}
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [{
type: 'Fighting',
value: "-30"
}],
retreat: 2,
regulationMark: "E",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card