1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +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,91 @@
import { Card } from '../../../interfaces'
import Set from '../SM Black Star Promos'
const card: Card = {
name: {
en: "Dawn Wings Necrozma-GX",
fr: "Necrozma Ailes de lAurore-GX",
},
illustrator: "5ban Graphics",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
800,
],
hp: 180,
types: [
"Psychic",
],
suffix: "GX",
abilities: [
{
type: "Ability",
name: {
en: "Invasion",
fr: "Invasion",
},
effect: {
en: "Once during your turn (before your attack), if this Pokémon is on your Bench, you may switch it with your Active Pokémon.",
fr: "Une seule fois pendant votre tour (avant votre attaque), si ce Pokémon est sur votre Banc, vous pouvez léchanger avec votre Pokémon Actif.",
},
},
],
attacks: [
{
cost: [
"Psychic",
"Psychic",
"Psychic",
],
name: {
en: "Dark Flash",
fr: "Flash Sombre",
},
effect: {
en: "This attack's damage isn't affected by Resistance.",
fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance.",
},
damage: 120,
},
{
cost: [
"Psychic",
"Psychic",
"Psychic",
],
name: {
en: "Moon's Eclipse-GX",
fr: "Éclipse Lunaire-GX",
},
effect: {
en: "You can use this attack only if you have more Prize cards remaining than your opponent. Prevent all effects of attacks, including damage, done to this Pokémon during your opponent's next turn. (You can't use more than 1 GX attack in a game.)",
fr: "Vous pouvez utiliser cette attaque seulement sil vous reste plus de cartes Récompense que votre adversaire. Évitez tous les effets dattaques, y compris les dégâts, infligés à ce Pokémon pendant le prochain tour de votre adversaire. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
damage: 180,
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
retreat: 2,
}
export default card