mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39: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:
91
data/Sun & Moon/SM Black Star Promos/SM125.ts
Normal file
91
data/Sun & Moon/SM Black Star Promos/SM125.ts
Normal file
@ -0,0 +1,91 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../SM Black Star Promos'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Naganadel-GX",
|
||||
fr: "Mandrillon-GX",
|
||||
},
|
||||
illustrator: "5ban Graphics",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
804,
|
||||
],
|
||||
hp: 210,
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Poipole",
|
||||
fr: "Vémini",
|
||||
},
|
||||
|
||||
suffix: "GX",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Beast Raid",
|
||||
fr: "Raid Chimérique",
|
||||
},
|
||||
effect: {
|
||||
en: "This attack does 20 damage for each of your Ultra Beasts in play.",
|
||||
fr: "Cette attaque inflige 20 dégâts pour chacune de vos Ultra-Chimères en jeu.",
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Psychic",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Jet Needle",
|
||||
fr: "Gerbe d’Aiguilles",
|
||||
},
|
||||
effect: {
|
||||
en: "This attack's damage isn't affected by Weakness or Resistance.",
|
||||
fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse ou la Résistance.",
|
||||
},
|
||||
damage: 110,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Stinger-GX",
|
||||
fr: "Aiguillon-GX",
|
||||
},
|
||||
effect: {
|
||||
en: "Both players shuffle their Prize cards into their decks. Then, each player puts the top 3 cards of their deck face down as their Prize cards. (You can't use more than 1 GX attack in a game.)",
|
||||
fr: "Les deux joueurs mélangent leurs cartes Récompense avec leurs decks. Ensuite, chaque joueur place les 3 cartes du dessus de son deck, face cachée, comme cartes Récompense. (Vous ne pouvez utiliser qu’une attaque GX par partie.)",
|
||||
},
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user