mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
Chilling Reign Pre Release (#9)
* Added current set informations Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net> * Fixed incorrect set ID * Updated Chilling Reign current cards Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Updated informations for Chilling Reign Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Added new Entries Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
This commit is contained in:
76
data/Sword & Shield/Chilling Reign/75.ts
Normal file
76
data/Sword & Shield/Chilling Reign/75.ts
Normal file
@ -0,0 +1,76 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Chilling Reign'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Shadow Rider Calyrex VMAX",
|
||||
fr: "Sylveroy Cavalier d'Effroi VMAX"
|
||||
},
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
set: Set,
|
||||
hp: 320,
|
||||
dexId: [898],
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: 'Shadow Rider Calyrex-V',
|
||||
fr: 'Sylveroy Cavalier d\'Effroi-V'
|
||||
},
|
||||
|
||||
stage: 'VMAX',
|
||||
|
||||
abilities: [{
|
||||
type: 'Ability',
|
||||
name: {
|
||||
en: 'Underworld Door',
|
||||
fr: 'Porte de 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 poucez attacher une carte Energie Psy de votre main à l\'un de vos Pokémon Psy 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 Psy 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
|
Reference in New Issue
Block a user