mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +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:
66
data/Sword & Shield/Chilling Reign/97.ts
Normal file
66
data/Sword & Shield/Chilling Reign/97.ts
Normal file
@ -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
|
Reference in New Issue
Block a user