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,90 @@
import { Card } from '../../../interfaces'
import Set from '../Forbidden Light'
const card: Card = {
name: {
en: "Palkia-GX",
fr: "Palkia-GX",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
484,
],
hp: 180,
types: [
"Water",
],
suffix: "GX",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Spatial Control",
fr: "Contrôle Spatial",
},
effect: {
en: "Move any number of Energy from your Benched Pokémon to this Pokémon.",
fr: "Déplacez autant dÉnergies que vous voulez de vos Pokémon de Banc vers ce Pokémon.",
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Hydro Pressure",
fr: "Pression Hydroélectrique",
},
effect: {
en: "This attack does 20 more damage times the amount of Water Energy attached to this Pokémon.",
fr: "Cette attaque inflige 20 dégâts supplémentaires multipliés par le nombre dÉnergies Water attachées à ce Pokémon.",
},
damage: 60,
},
{
cost: [
"Water",
"Water",
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Zero Vanish-GX",
fr: "Zéro Disparaissant-GX",
},
effect: {
en: "Shuffle all Energy from each of your opponent's Pokémon into their deck. (You can't use more than 1 GX attack in a game.)",
fr: "Mélangez lÉnergie de chacun des Pokémon de votre adversaire avec son deck. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
damage: 150,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card