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:
75
data/XY/XY Black Star Promos/XY23.ts
Normal file
75
data/XY/XY Black Star Promos/XY23.ts
Normal file
@ -0,0 +1,75 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../XY Black Star Promos'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Shiftry",
|
||||
fr: "Tengalice",
|
||||
},
|
||||
illustrator: "Sanosuke Sakuma",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
275,
|
||||
],
|
||||
hp: 140,
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Nuzleaf",
|
||||
fr: "Pifeuil",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Grass",
|
||||
],
|
||||
name: {
|
||||
en: "Whisk Away",
|
||||
fr: "Fouet Renvoi",
|
||||
},
|
||||
effect: {
|
||||
en: "Your opponent reveals his or her hand. Choose a Pokémon you find there and put it on the bottom of your opponent's deck. If you do, this attack does 30 more damage.",
|
||||
fr: "Votre adversaire montre sa main. Choisissez un Pokémon que vous y trouvez et placez-le en dessous du deck de votre adversaire. Dans ce cas, cette attaque inflige 30 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Grass",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Spirit Dance",
|
||||
fr: "Danse Spirituelle",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip 2 coins. This attack does 30 more damage for each heads.",
|
||||
fr: "Lancez 2 pièces. Cette attaque inflige 30 dégâts supplémentaires pour chaque côté face.",
|
||||
},
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user