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,94 @@
import { Card } from '../../../interfaces'
import Set from '../Promos'
const card: Card = {
name: {
en: "Kommo-o-GX",
fr: "Ékaïser-GX",
},
illustrator: "5ban Graphics",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
784,
],
hp: 240,
types: [
"Dragon",
],
evolveFrom: {
en: "Hakamo-o",
fr: "Écaïd",
},
suffix: "GX",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Adamantine Press",
fr: "Charge Adamantine",
},
effect: {
en: "During your opponent's next turn, this Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).",
fr: "Pendant le prochain tour de votre adversaire, ce Pokémon subit 30 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance).",
},
damage: 30,
},
{
cost: [
"Lightning",
"Fightning",
"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: 130,
},
{
cost: [
"Lightning",
"Fightning",
"Colorless",
"Colorless",
],
name: {
en: "Ultra Uppercut-GX",
fr: "Ultra Uppercut-GX",
},
effect: {
en: "(You can't use more than 1 GX attack in a game.)",
fr: "(Vous ne pouvez utiliser quune attaque GX par partie.)",
},
damage: 240,
},
],
weaknesses: [
{
type: "Fairy",
value: "×2"
},
],
retreat: 2,
}
export default card