1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +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

76
data/XY/Steam Siege/15.ts Normal file
View File

@ -0,0 +1,76 @@
import { Card } from '../../../interfaces'
import Set from '../Steam Siege'
const card: Card = {
name: {
en: "Volcarona",
fr: "Pyrax",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
637,
],
hp: 110,
types: [
"Fire",
"Grass",
],
evolveFrom: {
en: "Larvesta",
fr: "Pyronille",
},
stage: "Stage1",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Shimmering Scales",
fr: "Écailles Scintillantes",
},
effect: {
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Confused. If tails, your opponent's Active Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si cest face, le Pokémon Actif de votre adversaire est maintenant Confus. Si cest pile, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
},
damage: 20,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Power Hurricane",
fr: "Ouragan Puissant",
},
effect: {
en: "Discard all Energy attached to this Pokémon.",
fr: "Défaussez toutes les Énergies attachées à ce Pokémon.",
},
damage: 120,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card