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,71 @@
import { Card } from '../../../interfaces'
import Set from '../SM Black Star Promos'
const card: Card = {
name: {
en: "Ultra Necrozma-GX",
fr: "Ultra-Necrozma-GX",
},
illustrator: "PLANETA Otani",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
800,
],
hp: 190,
types: [
"Dragon",
],
stage: "Basic",
suffix: "GX",
attacks: [
{
cost: [
"Psychic",
"Metal",
],
name: {
en: "Photon Geyser",
fr: "Photo-Geyser",
},
effect: {
en: "Discard all basic Psychic Energy from this Pokémon. This attack does 80 more damage for each card you discarded in this way.",
fr: "Défaussez toute lÉnergie Psychic de base de ce Pokémon. Cette attaque inflige 80 dégâts supplémentaires pour chaque carte défaussée de cette façon.",
},
damage: 20,
},
{
cost: [
"Psychic",
"Metal",
],
name: {
en: "Sky-Scorching Light GX",
fr: "Lumière Apocalyptique-GX",
},
effect: {
en: "You can use this attack only if the total of both players' remaining Prize cards is 6 or less. Put 6 damage counters on each of your opponent's Pokémon. (You can't use more than 1 GX attack in a game.)",
fr: "Vous ne pouvez utiliser cette attaque que sil reste un total de 6 cartes Récompense ou moins aux deux joueurs. Placez 6 marqueurs de dégâts sur chacun des Pokémon de votre adversaire. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
},
],
weaknesses: [
{
type: "Fairy",
value: "×2"
},
],
retreat: 2,
}
export default card