1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 22:02:15 +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

74 lines
1.4 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: "Ice Rider Calyrex VMAX",
fr: "Sylveroy Cavalier du Froid VMAX"
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
hp: 320,
dexId: [898],
types: [
"Water",
],
evolveFrom: {
en: "Ice Rider Calyrex V",
fr: 'Sylveroy Cavalier du Froid-V'
},
stage: 'VMAX',
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Ride of the High King",
fr: "Chevauchée Impériale"
},
effect: {
en: "This attack does 30 more damage for each of your opponents Benched Pokémon.",
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chacun des Pokémon de Banc de votre adversaire.",
},
damage: '10+'
},
{
cost: [
"Water",
"Water",
],
name: {
en: "Max Lance",
fr: "Lançomax"
},
effect: {
en: "You may discard up to 2 Energy from this Pokémon. If you do, this attack does 120 more damage for each card you discarded in this way.",
fr: "Vous pouvez défausser jusquà 2 Énergies de ce Pokémon. Dans ce cas, cette attaque inflige 120 dégâts supplémentaires pour chaque carte défaussée de cette façon.",
},
damage: '10+'
}
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 2,
regulationMark: "E"
}
export default card