1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49: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

View File

@ -0,0 +1,95 @@
import { Card } from '../../../interfaces'
import Set from '../Forbidden Light'
const card: Card = {
name: {
en: "Dialga-GX",
fr: "Dialga-GX",
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
483,
],
hp: 180,
types: [
"Metal",
],
suffix: "GX",
attacks: [
{
cost: [
"Metal",
],
name: {
en: "Overclock",
fr: "Overclocker",
},
effect: {
en: "Draw cards until you have 6 cards in your hand.",
fr: "Piochez des cartes jusquà ce que vous ayez 6 cartes en main.",
},
},
{
cost: [
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Shred",
fr: "Déchiquetage",
},
effect: {
en: "This attack's damage isn't affected by any effects on your opponent's Active Pokémon.",
fr: "Les dégâts de cette attaque ne sont affectés par aucun effet en action sur le Pokémon Actif de votre adversaire.",
},
damage: 80,
},
{
cost: [
"Metal",
"Metal",
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Timeless-GX",
fr: "Intemporel-GX",
},
effect: {
en: "Take another turn after this one. (Skip the between-turns step.) (You can't use more than 1 GX attack in a game.)",
fr: "Jouez de nouveau après ce tour. (Sautez létape entre les tours.) (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
damage: 150,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 3,
}
export default card