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

60 lines
1.3 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 = {
set: Set,
name: {
en: "Sandaconda VMAX",
fr: "Dunaconda VMAX"
},
illustrator: "aky CG Works",
rarity: "Rare",
category: "Pokemon",
hp: 320,
types: ["Fighting"],
evolveFrom: {
en: "Sandaconda V",
fr: "Dunaconda-V"
},
attacks: [{
name: {
en: "Sand Pulse",
fr: "Vibra Sable"
},
effect: {
en: "This attack also does 20 damage to each of your opponents Benched Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige aussi 20 dégâts à chacun des Pokémon de Banc de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)"
},
damage: 60,
cost: ["Fighting"]
}, {
name: {
en: "G-Max Cyclone",
fr: "Tourbillon G-Max"
},
effect: {
en: "Move any amount of Energy from your Pokémon to your other Pokémon in any way you like.",
fr: "Déplacez autant de cartes Énergie attachées à vos Pokémon que vous le voulez vers vos autres Pokémon, comme il vous plaît."
},
damage: 180,
cost: ["Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "E"
}
export default card