1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00

Chilling-Reign (#10)

only missing the secrets cards as they are secret :D

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-06-18 20:13:38 +02:00
parent b0d0319f04
commit abbffb45b7
198 changed files with 8576 additions and 57 deletions

View File

@ -0,0 +1,60 @@
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