1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +00:00

Make Each Promos Series Names unique to be clearly identifiable (#15)

* Changed folder and the automatics imports changes

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>

* Fixed SM promos missing the correct set

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-04-29 12:04:12 +02:00
committed by GitHub
parent f73c11d5ef
commit f4af0d04be
571 changed files with 580 additions and 580 deletions

View File

@ -0,0 +1,94 @@
import { Card } from '../../../interfaces'
import Set from '../SM Black Star 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