1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 14:52:09 +00:00
Florian Bouillon abbffb45b7
Chilling-Reign (#10)
only missing the secrets cards as they are secret :D

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-18 20:13:38 +02:00

77 lines
1.5 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"
},
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"
},
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."
}
}],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Max Geist",
fr: "Spiritomax"
},
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.",
},
damage: '10+'
}
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [{
type: 'Fighting',
value: "-30"
}],
retreat: 2,
regulationMark: "E"
}
export default card