1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09: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,89 @@
import { Card } from '../../../interfaces'
import Set from '../Promos'
const card: Card = {
name: {
en: "Dragonite-GX",
fr: "Dracolosse-GX",
},
illustrator: "5ban Graphics",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
149,
],
hp: 250,
types: [
"Dragon",
],
evolveFrom: {
en: "Dragonair",
fr: "Draco",
},
suffix: "GX",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Dragon Claw",
fr: "Dracogriffe",
},
damage: 70,
},
{
cost: [
"Water",
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Giga Impact",
fr: "Giga Impact",
},
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: 200,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Dragonporter-GX",
fr: "Dracoporteur-GX",
},
effect: {
en: "Put 3 Dragon Pokémon from your discard pile onto your Bench. (You can't use more than 1 GX attack in a game.)",
fr: "Placez 3 Pokémon Dragon de votre pile de défausse sur votre Banc. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
},
],
weaknesses: [
{
type: "Fairy",
value: "×2"
},
],
retreat: 3,
}
export default card