1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 14:52:09 +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

70 lines
1.6 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: "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émons 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 opponents Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 20 dégâts à chacun des Pokémon de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)"
}
}
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 0,
regulationMark: "E"
}
export default card