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:
80
data/XY/XY Black Star Promos/XY31.ts
Normal file
80
data/XY/XY Black Star Promos/XY31.ts
Normal file
@ -0,0 +1,80 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../XY Black Star Promos'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Xerneas",
|
||||
fr: "Xerneas",
|
||||
},
|
||||
illustrator: "Masakazu Fukuda",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
716,
|
||||
],
|
||||
hp: 130,
|
||||
types: [
|
||||
"Fairy",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fairy",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Aurora Gain",
|
||||
fr: "Puissance Boréale",
|
||||
},
|
||||
effect: {
|
||||
en: "During your opponent's next turn, this Pokémon has no Weakness.",
|
||||
fr: "Pendant le prochain tour de votre adversaire, ce Pokémon n'a pas de Faiblesse.",
|
||||
},
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Fairy",
|
||||
"Fairy",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Light of Life",
|
||||
fr: "Lumière de l’Existence",
|
||||
},
|
||||
effect: {
|
||||
en: "If your opponent has Yveltal (including Yveltal-EX) in play, this attack does 40 more damage.",
|
||||
fr: "Si votre adversaire a Yveltal (y compris Yveltal-EX) en jeu, cette attaque inflige 40 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 80,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Metal",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Darkness",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user