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

Chilling Reign Pre Release (#9)

* Added current set informations

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>

* Fixed incorrect set ID

* Updated Chilling Reign current cards

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Updated informations for Chilling Reign

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added new Entries

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-06-03 16:12:10 +02:00
committed by GitHub
parent 46220745ce
commit cae39e561b
14 changed files with 850 additions and 0 deletions

View File

@ -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