1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-06 05:19:55 +00:00
Florian Bouillon cae39e561b
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>
2021-06-03 16:12:10 +02:00

67 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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: "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