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

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,86 @@
import { Card } from '../../../interfaces'
import Set from '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Volcarona-GX",
fr: "Pyrax-GX",
},
illustrator: "PLANETA Tsuji",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
637,
],
hp: 210,
types: [
"Fire",
],
evolveFrom: {
en: "Larvesta",
fr: "Pyronille",
},
stage: "Stage1",
suffix: "GX",
abilities: [
{
type: "Ability",
name: {
en: "Flaming Shot",
fr: "Tir Enflammé",
},
effect: {
en: "Once during your turn (before your attack), you may discard a {R} Energy card from your hand. If you do, put 2 damage counters on 1 of your opponent's Pokémon.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez défausser une carte Énergie Fire de votre main. Dans ce cas, placez 2 marqueurs de dégâts sur lun des Pokémon de votre adversaire.",
},
},
],
attacks: [
{
cost: [
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Backfire",
fr: "Retour de Feu",
},
effect: {
en: "Put 2 {R} Energy attached to this Pokémon into your hand.",
fr: "Placez 2 Énergies Fire attachées à ce Pokémon dans votre main.",
},
damage: 160,
},
{
cost: [
"Fire",
],
name: {
en: "Massive Heat Wave GX",
fr: "Vague de Chaleur Massive-GX",
},
effect: {
en: "Discard an Energy from each of your opponent's Pokémon. (You can't use more than 1 GX attack in a game.)",
fr: "Défaussez une Énergie de chacun des Pokémon de votre adversaire. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 3,
}
export default card