1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 01:49:19 +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,88 @@
import { Card } from '../../../interfaces'
import Set from '../Lost Thunder'
const card: Card = {
name: {
en: "Zeraora-GX",
fr: "Zeraora-GX",
},
illustrator: "PLANETA Otani",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
807,
],
hp: 190,
types: [
"Lightning",
],
suffix: "GX",
abilities: [
{
type: "Ability",
name: {
en: "Thunderclap Zone",
fr: "Zone Vif Éclair",
},
effect: {
en: "Each of your Pokémon that has any Lightning Energy attached to it has no Retreat Cost.",
fr: "Aucun de vos Pokémon auxquels de lÉnergie Lightning est attachée na de Coût de Retraite.",
},
},
],
attacks: [
{
cost: [
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Plasma Fists",
fr: "Plasma Punch",
},
effect: {
en: "This Pokémon can't attack during your next turn.",
fr: "Ce Pokémon ne peut pas attaquer pendant votre prochain tour.",
},
damage: 160,
},
{
cost: [
"Lightning",
],
name: {
en: "Full Voltage-GX",
fr: "Pleine Tension-GX",
},
effect: {
en: "Attach 5 basic Energy cards from your discard pile to your Pokémon in any way you like. (You can't use more than 1 GX attack in a game.)",
fr: "Attachez 5 cartes Énergie de base de votre pile de défausse à vos Pokémon, de la manière que vous voulez. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 2,
}
export default card