From cae39e561bef7fe75712caf7f27a6f8e497bf276 Mon Sep 17 00:00:00 2001 From: Avior Date: Thu, 3 Jun 2021 16:12:10 +0200 Subject: [PATCH] Chilling Reign Pre Release (#9) * Added current set informations Signed-off-by: Florian BOUILLON * Fixed incorrect set ID * Updated Chilling Reign current cards Signed-off-by: Avior * Updated informations for Chilling Reign Signed-off-by: Avior * Added new Entries Signed-off-by: Florian BOUILLON --- data/Sword & Shield/Chilling Reign.ts | 34 ++++++++++ data/Sword & Shield/Chilling Reign/121.ts | 71 +++++++++++++++++++++ data/Sword & Shield/Chilling Reign/140.ts | 24 +++++++ data/Sword & Shield/Chilling Reign/147.ts | 24 +++++++ data/Sword & Shield/Chilling Reign/166.ts | 54 ++++++++++++++++ data/Sword & Shield/Chilling Reign/22.ts | 71 +++++++++++++++++++++ data/Sword & Shield/Chilling Reign/33.ts | 69 ++++++++++++++++++++ data/Sword & Shield/Chilling Reign/34.ts | 71 +++++++++++++++++++++ data/Sword & Shield/Chilling Reign/46.ts | 73 +++++++++++++++++++++ data/Sword & Shield/Chilling Reign/58.ts | 73 +++++++++++++++++++++ data/Sword & Shield/Chilling Reign/64.ts | 77 +++++++++++++++++++++++ data/Sword & Shield/Chilling Reign/75.ts | 76 ++++++++++++++++++++++ data/Sword & Shield/Chilling Reign/80.ts | 67 ++++++++++++++++++++ data/Sword & Shield/Chilling Reign/97.ts | 66 +++++++++++++++++++ 14 files changed, 850 insertions(+) create mode 100644 data/Sword & Shield/Chilling Reign.ts create mode 100644 data/Sword & Shield/Chilling Reign/121.ts create mode 100644 data/Sword & Shield/Chilling Reign/140.ts create mode 100644 data/Sword & Shield/Chilling Reign/147.ts create mode 100644 data/Sword & Shield/Chilling Reign/166.ts create mode 100644 data/Sword & Shield/Chilling Reign/22.ts create mode 100644 data/Sword & Shield/Chilling Reign/33.ts create mode 100644 data/Sword & Shield/Chilling Reign/34.ts create mode 100644 data/Sword & Shield/Chilling Reign/46.ts create mode 100644 data/Sword & Shield/Chilling Reign/58.ts create mode 100644 data/Sword & Shield/Chilling Reign/64.ts create mode 100644 data/Sword & Shield/Chilling Reign/75.ts create mode 100644 data/Sword & Shield/Chilling Reign/80.ts create mode 100644 data/Sword & Shield/Chilling Reign/97.ts diff --git a/data/Sword & Shield/Chilling Reign.ts b/data/Sword & Shield/Chilling Reign.ts new file mode 100644 index 000000000..b8c940a78 --- /dev/null +++ b/data/Sword & Shield/Chilling Reign.ts @@ -0,0 +1,34 @@ +import { Set } from '../../interfaces' +import serie from '../Sword & Shield' + +const set: Set = { + id: "swsh6", + name: { + en: "Chilling Reign", + fr: "Règne de Glace" +, + }, + serie: serie, + + + cardCount: { // NOT confirmed + total: 190, + official: 190 + }, + + releaseDate: "2021-06-18", + + legal: { + standard: true, + expanded: true + }, + + variants: { + normal: true, + reverse: true, + holo: false, + firstEdition: false + } +} + +export default set diff --git a/data/Sword & Shield/Chilling Reign/121.ts b/data/Sword & Shield/Chilling Reign/121.ts new file mode 100644 index 000000000..c766d54fe --- /dev/null +++ b/data/Sword & Shield/Chilling Reign/121.ts @@ -0,0 +1,71 @@ +import { Card } from '../../../interfaces' +import Set from '../Chilling Reign' + +const card: Card = { + name: { + en: "Castform", + fr: "Morphéo" + }, + + illustrator: "Asako Ito", + rarity: "Common", + category: "Pokemon", + set: Set, + hp: 70, + dexId: [351], + + types: [ + "Colorless", + ], + + stage: 'Basic', + + description: { + en: 'This is Castform\'s form when caught in a hailstrom. Its\nwhole body is chilled, and its skin is partially frozen!', + fr: 'Il n\'y a pas que son apparence qui change en\nfonction de la météo: son tempérament aussi !\nPlus il y a de vent, plus il se montre agressif.' + }, + + abilities: [{ + type: 'Ability', + name: { + en: 'Weather Reading', + fr: 'Météorologie' + }, + effect: { + en: 'If you have 8 or more Stadium cards in your discard pile, ignore all Energy in this pokémon\'s attack costs.', + fr: 'Si vous avez 8 cartes STade ou plus dans votre pile de défausse, ignorez toutes les Énergies dans le coût des attaques de ce Pokémon.', + } + }], + + attacks: [ + { + cost: [ + "Colorless", + "Colorless", + "Colorless", + ], + name: { + en: "Weather Force", + fr: "Force Météo" + }, + effect: { + en: "Draw cards until you have 6 cards in your hand.", + fr: "Piochez des cartes jusq'à en avoir 6 en main.", + }, + damage: 80 + } + ], + + weaknesses: [ + { + type: "Fighting", + value: "×2" + }, + ], + + + retreat: 0, + regulationMark: "E" +} + +export default card diff --git a/data/Sword & Shield/Chilling Reign/140.ts b/data/Sword & Shield/Chilling Reign/140.ts new file mode 100644 index 000000000..074561ae7 --- /dev/null +++ b/data/Sword & Shield/Chilling Reign/140.ts @@ -0,0 +1,24 @@ +import { Card } from '../../../interfaces' +import Set from '../Chilling Reign' + +const card: Card = { + name: { + en: "Fog Crystal", + fr: "Boule de Ctristal Brume" + }, + + illustrator: "sadaji", + rarity: "Uncommon", + category: "Trainer", + set: Set, + trainerType: 'Item', + + effect: { + en: 'Search your deck for a Psychic Energy card or a Basic Psychic Pokémon, reaveal it, and put it into your hand. Then, shuffle your deck.', + fr: 'Cherchez dans votre deck une carte Énergie Psy ou une carte Pokémon Psy de base, montrez-la, puis ajoutez-la à votre main, Mélangez ensuite votre deck.', + }, + + regulationMark: "E" +} + +export default card diff --git a/data/Sword & Shield/Chilling Reign/147.ts b/data/Sword & Shield/Chilling Reign/147.ts new file mode 100644 index 000000000..581d83f81 --- /dev/null +++ b/data/Sword & Shield/Chilling Reign/147.ts @@ -0,0 +1,24 @@ +import { Card } from '../../../interfaces' +import Set from '../Chilling Reign' + +const card: Card = { + name: { + en: "Old Cemetery", + fr: "Cimetière Ancien" + }, + + illustrator: "Aswaldo KATO", + rarity: "Uncommon", + category: "Trainer", + set: Set, + trainerType: 'Stadium', + + effect: { + en: 'Whenever any player attachez an Energy card fro mtheir hand to 1 of their non-Psychic Pokémon, put 2 damage counters on that Pokémon.', + fr: 'Chaque fois qu\'un joueur attache une carte Énergie de sa main à l\'un de ses Pokeḿon non Psy, placez 2 marqueurs des dégâts sur ce Pokémon-là.', + }, + + regulationMark: "E" +} + +export default card diff --git a/data/Sword & Shield/Chilling Reign/166.ts b/data/Sword & Shield/Chilling Reign/166.ts new file mode 100644 index 000000000..c118ffc7f --- /dev/null +++ b/data/Sword & Shield/Chilling Reign/166.ts @@ -0,0 +1,54 @@ +import { Card } from '../../../interfaces' +import Set from '../Chilling Reign' + +const card: Card = { + name: { + en: "Zeraora V", + fr: "Zeraora V" + }, + + illustrator: "Atsushi Furusawa", + rarity: "Ultra Rare", + category: "Pokemon", + set: Set, + hp: 210, + dexId: [807], + + types: [ + "Lightning", + ], + + stage: 'Basic', + suffix: 'V', + + attacks: [ + { + cost: [ + "Lightning", + "Colorless", + "Colorless" + ], + name: { + en: "Cross Fist", + fr: "Poings Croisés" + }, + effect: { + en: "If 1 of your other Rapid Strike Pokémon used an attack during your lat turn, this attack also does 160 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Si l'un de vos autres Pokémon Mlle Poings a utilisé une attaque pendant votre dernier tour, cette attque infligue aussie 160 dégâts à l'un des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)" + }, + damage: 100 + } + ], + + weaknesses: [ + { + type: "Fighting", + value: "×2" + }, + ], + + retreat: 2, + regulationMark: "E" +} + +export default card diff --git a/data/Sword & Shield/Chilling Reign/22.ts b/data/Sword & Shield/Chilling Reign/22.ts new file mode 100644 index 000000000..fa9dd4b72 --- /dev/null +++ b/data/Sword & Shield/Chilling Reign/22.ts @@ -0,0 +1,71 @@ +import { Card } from '../../../interfaces' +import Set from '../Chilling Reign' + +const card: Card = { + name: { + en: "Castform Sunny Form", + fr: "Morphéo Forme Solaire" + }, + + illustrator: "Yuko Morii", + rarity: "Common", + category: "Pokemon", + set: Set, + hp: 70, + dexId: [351], + + types: [ + "Fire", + ], + + stage: 'Basic', + + description: { + en: 'Castform changes to this form when it basks\nin bright sunlight. When you touch its\nglowing skin, it feels all dried out!', + fr: 'Morphéo adopte cette apparence lorsqu\'il y a du soleil.\nSon corps rougeoyant est très sec au toucher.' + }, + + abilities: [{ + type: 'Ability', + name: { + en: 'Weather Reading', + fr: 'Météorologie' + }, + effect: { + en: 'If you have 8 or more Stadium cards in your discard pile, ignore all Energy in this pokémon\'s attack costs.', + fr: 'Si vous avez 8 cartes STade ou plus dans votre pile de défausse, ignorez toutes les Énergies dans le coût des attaques de ce Pokémon.', + } + }], + + attacks: [ + { + cost: [ + "Fire", + "Fire", + "Colorless", + ], + name: { + en: "High-Pressure Blast", + fr: "Explosion Sous Pression" + }, + effect: { + en: "Discard a Stadium in play. If you can\'t, this attack does nothing", + fr: "Défuassez un Stade en jeu. Si vous ne le pouvez pas, cette attaque ne fait rien." + }, + damage: 150 + } + ], + + weaknesses: [ + { + type: "Water", + value: "×2" + }, + ], + + + retreat: 0, + regulationMark: "E" +} + +export default card diff --git a/data/Sword & Shield/Chilling Reign/33.ts b/data/Sword & Shield/Chilling Reign/33.ts new file mode 100644 index 000000000..541b87f28 --- /dev/null +++ b/data/Sword & Shield/Chilling Reign/33.ts @@ -0,0 +1,69 @@ +import { Card } from '../../../interfaces' +import Set from '../Chilling Reign' + +const card: Card = { + name: { + en: "Castform Rainy Form", + fr: "Morphéo Forme Eau de Pluie" + }, + + illustrator: "sowsow", + rarity: "Common", + category: "Pokemon", + set: Set, + hp: 70, + dexId: [351], + + types: [ + "Water", + ], + + stage: 'Basic', + + description: { + en: 'This is Castform\'s form when pelted by rain. In an\n experiment where it was placed in a shower,\n this Pokémon didn\'t change to this form.', + fr: 'Morphéo adopte cette apparence uniquement\n les jours de pluie. On a tenté de reproduire ce\nphénomène sous une douche, sans succès.' + }, + + abilities: [{ + type: 'Ability', + name: { + en: 'Weather Reading', + fr: 'Météorologie' + }, + effect: { + en: 'If you have 8 or more Stadium cards in your discard pile, ignore all Energy in this pokémon\'s attack costs.', + fr: 'Si vous avez 8 cartes STade ou plus dans votre pile de défausse, ignorez toutes les Énergies dans le coût des attaques de ce Pokémon.', + } + }], + + attacks: [ + { + cost: [ + "Water", + "Colorless", + ], + name: { + en: "Rainfall", + fr: "Ondée" + }, + effect: { + en: "This attack does 20 damage to each of your opponent\'s Pokémon. (Don\'t apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige 20 dégâts à chacun des Pokémon de votre adversaire. (N\'appliquez ni la faiblesse ni la Résistance aux Pokémon du Banc.)" + } + } + ], + + weaknesses: [ + { + type: "Lightning", + value: "×2" + }, + ], + + + retreat: 0, + regulationMark: "E" +} + +export default card diff --git a/data/Sword & Shield/Chilling Reign/34.ts b/data/Sword & Shield/Chilling Reign/34.ts new file mode 100644 index 000000000..1afc1c96f --- /dev/null +++ b/data/Sword & Shield/Chilling Reign/34.ts @@ -0,0 +1,71 @@ +import { Card } from '../../../interfaces' +import Set from '../Chilling Reign' + +const card: Card = { + name: { + en: "Castform Swnowy Form", + fr: "Morphéo Forme Blizzard" + }, + + illustrator: "miki kudo", + rarity: "Common", + category: "Pokemon", + set: Set, + hp: 70, + dexId: [351], + + types: [ + "Water", + ], + + stage: 'Basic', + + description: { + en: 'This is Castform\'s form when caught in a hailstrom. Its\nwhole body is chilled, and its skin is partially frozen!', + fr: 'Morphéo adopte cette apparence quand\n il est frappé par la grèle. Tout son corps est froid et sa peau est légèrement givrée.' + }, + + abilities: [{ + type: 'Ability', + name: { + en: 'Weather Reading', + fr: 'Météorologie' + }, + effect: { + en: 'If you have 8 or more Stadium cards in your discard pile, ignore all Energy in this pokémon\'s attack costs.', + fr: 'Si vous avez 8 cartes STade ou plus dans votre pile de défausse, ignorez toutes les Énergies dans le coût des attaques de ce Pokémon.', + } + }], + + attacks: [ + { + cost: [ + "Water", + "Water", + "Colorless", + ], + name: { + en: "Frosty Typhoon", + fr: "Typhon Givré" + }, + effect: { + en: "During your next turn, this Pokémon can\'t use Frosty Typhoon.", + fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Typhon Givré" + }, + damage: 120 + } + ], + + weaknesses: [ + { + type: "Metal", + value: "×2" + }, + ], + + + retreat: 0, + regulationMark: "E" +} + +export default card diff --git a/data/Sword & Shield/Chilling Reign/46.ts b/data/Sword & Shield/Chilling Reign/46.ts new file mode 100644 index 000000000..20adf7f43 --- /dev/null +++ b/data/Sword & Shield/Chilling Reign/46.ts @@ -0,0 +1,73 @@ +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 opponent\'s 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 jusq\'à 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 diff --git a/data/Sword & Shield/Chilling Reign/58.ts b/data/Sword & Shield/Chilling Reign/58.ts new file mode 100644 index 000000000..5f0b18535 --- /dev/null +++ b/data/Sword & Shield/Chilling Reign/58.ts @@ -0,0 +1,73 @@ +import { Card } from '../../../interfaces' +import Set from '../Chilling Reign' + +const card: Card = { + name: { + en: "Galarian Articuno V", + fr: "Artikodin de Galar V" + }, + + illustrator: "5ban Graphics", + rarity: "Ultra Rare", + category: "Pokemon", + set: Set, + hp: 210, + dexId: [144], + + types: [ + "Psychic", + ], + + stage: 'Basic', + suffix: 'V', + + abilities: [{ + type: 'Ability', + name: { + en: 'Reconstitue', + fr: 'Reconstitution' + }, + effect: { + en: 'You must discard 2 cards from your hand in order to use this Ability, Once during your turn, you may draw a card.', + fr: 'Vous devez défausser 2 cartes de votre min pour pouvoir utiliser ce talent. Une fois pendant votre tour, vous pouvez piocher une carte.', + } + }], + + attacks: [ + { + cost: [ + "Psychic", + "Colorless", + "Colorless", + ], + name: { + en: "Psyray", + fr: "Rayon Psy" + }, + effect: { + en: "Your opponent's Active Pokémon is now Confused", + fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.", + }, + damage: 110 + } + ], + + weaknesses: [ + { + type: "Darkness", + value: "×2" + }, + ], + + resistances: [ + { + type: "Fighting", + value: "-30" + }, + ], + + retreat: 2, + regulationMark: "E" +} + +export default card diff --git a/data/Sword & Shield/Chilling Reign/64.ts b/data/Sword & Shield/Chilling Reign/64.ts new file mode 100644 index 000000000..795ddbf79 --- /dev/null +++ b/data/Sword & Shield/Chilling Reign/64.ts @@ -0,0 +1,77 @@ +import { Card } from '../../../interfaces' +import Set from '../Chilling Reign' + +const card: Card = { + name: { + en: "Cresselia", + fr: "Cresselia" + }, + + illustrator: "Tia Matsuno", + rarity: "Rare", + category: "Pokemon", + set: Set, + hp: 120, + dexId: [488], + + types: [ + "Psychic", + ], + + stage: 'Basic', + + description: { + en: "Those who sleep holding cresselia's\nfeather are assured of joyful dreams. It is\nsaid to represent the crescent moon.", + fr: "Dormir aec une de ses plumes à la main\npermet de faire de beaux rêves. On le\nsurnomme « avatar d croissant de lune »." + }, + + attacks: [ + { + cost: [ + "Psychic" + ], + name: { + en: "Crescent Glow", + fr: "Lueur Lunule" + }, + effect: { + en: "Search your deck for a Psychic Energy card and attach it to 1 of your Pokémon. If you go second and it's your first turn, instead search for up to 3 Psychic Energy cards and attach them to 1 of your Pokémon. Then, shuffle your deck.", + fr: "Cherchez dans votre deck une carte Énergie Psy, puis attachez-la à l'un de vos Pokémon. Si vous jouez en second et que c'est votre premier tour, cherchez jusqu'à 3 cartes Énergie Psy à la place. puis attachez-les à l'un de vos Pokémon. Mélangez ensuite cotre deck.", + } + }, + { + cost: [ + "Psychic", + "Psychic" + ], + name: { + en: "Photon Laser", + fr: "Laser à Photons" + }, + effect: { + en: "If you have at least 5 Energy in play, this attack does 90 more damage.", + fr: "Si vous avez au moins 5 Énerges en jeu, cette attaque inflige 90 dégâts supplémentaires.", + }, + damage: '30+' + } + ], + + weaknesses: [ + { + type: "Darkness", + value: "×2" + }, + ], + + resistances: [ + { + type: "Fighting", + value: "-30" + }, + ], + + retreat: 1, + regulationMark: "E" +} + +export default card diff --git a/data/Sword & Shield/Chilling Reign/75.ts b/data/Sword & Shield/Chilling Reign/75.ts new file mode 100644 index 000000000..c5b067d19 --- /dev/null +++ b/data/Sword & Shield/Chilling Reign/75.ts @@ -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 diff --git a/data/Sword & Shield/Chilling Reign/80.ts b/data/Sword & Shield/Chilling Reign/80.ts new file mode 100644 index 000000000..4c747563f --- /dev/null +++ b/data/Sword & Shield/Chilling Reign/80.ts @@ -0,0 +1,67 @@ +import { Card } from '../../../interfaces' +import Set from '../Chilling Reign' + +const card: Card = { + name: { + en: "Galarian Zapdos V", + fr: "Électhor de Galar V" + }, + + illustrator: "5ban Graphics", + rarity: "Ultra Rare", + category: "Pokemon", + set: Set, + hp: 200, + dexId: [145], + + types: [ + "Fighting", + ], + + stage: 'Basic', + suffix: 'V', + + abilities: [{ + type: "Ability", + name: { + en: "Fighting Instinct", + fr: "Instinct de Combat" + }, + effect: { + en: "This Pokémon attack cost Colorless less for each of your opponent's Active Pokémon V in play.", + fr: "Les attaques de ce Pokémon coûtent Incolore de moins pour chaque Pokémon-V en jeu de votre adversaire." + } + }], + + attacks: [ + { + cost: [ + "Fighting", + "Colorless", + "Colorless", + "Colorless" + ], + name: { + en: "Thunderous Kick", + fr: "Coup Fulgurant" + }, + effect: { + en: "Before doing damage, discard a Special Energy from your opponent's Active Pokémon.", + fr: "Avant d'infliger des dégâts, défaussez une Énergie spéciale du Pokémon Actif de votre adversaire.", + }, + damage: 170 + } + ], + + weaknesses: [ + { + type: "Psychic", + value: "×2" + }, + ], + + retreat: 1, + regulationMark: "E" +} + +export default card diff --git a/data/Sword & Shield/Chilling Reign/97.ts b/data/Sword & Shield/Chilling Reign/97.ts new file mode 100644 index 000000000..ef792dcfa --- /dev/null +++ b/data/Sword & Shield/Chilling Reign/97.ts @@ -0,0 +1,66 @@ +import { Card } from '../../../interfaces' +import Set from '../Chilling Reign' + +const card: Card = { + name: { + en: "Galarian Moltes V", + fr: "Sulfura de Galar V" + }, + + illustrator: "5ban Graphics", + rarity: "Ultra Rare", + category: "Pokemon", + set: Set, + hp: 220, + dexId: [146], + + types: [ + "Darkness", + ], + + stage: 'Basic', + suffix: 'V', + + abilities: [{ + type: "Ability", + name: { + en: "Direflame Wings", + fr: "Ailes Ténébraises" + }, + effect: { + en: "One during your turn, you may attach a Drakness Energy card from your discard pile to this Pokémon. You can't use more than 1 Direfkame Wings Ability each turn.", + fr: "Une fois pendant votre tour, vous pouvez attacher une carte Énergie Ténébre de votre pile de dd'efausse à ce Pokémon. Vous ne pouvez utiliser qu'un talent Ailes Ténébraises par tour." + } + }], + + attacks: [ + { + cost: [ + "Darkness", + "Darkness", + "Colorless" + ], + name: { + en: "Aura Burn", + fr: "Aura Ardente" + }, + effect: { + en: "This Poke'mon also does 30 damage to itself.", + fr: "Ce Pokémon s'inflige aussi 30 dégâts." + }, + damage: 190 + } + ], + + weaknesses: [ + { + type: "Grass", + value: "×2" + }, + ], + + retreat: 2, + regulationMark: "E" +} + +export default card