1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +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,86 @@
import { Card } from '../../../interfaces'
import Set from '../SM Black Star Promos'
const card: Card = {
name: {
en: "Vaporeon-GX",
fr: "Aquali-GX",
},
illustrator: "PLANETA Otani",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
134,
],
hp: 210,
types: [
"Water",
],
evolveFrom: {
en: "Eevee",
fr: "Évoli",
},
suffix: "GX",
abilities: [
{
type: "Ability",
name: {
en: "Hydrating Drops",
fr: "Gouttes Hydratantes",
},
effect: {
en: "Once during your turn (before your attack), you may heal 30 damage from your Active Water Pokémon.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez soigner 30 dégâts à votre Pokémon Actif Water.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Hydro Pump",
fr: "Hydrocanon",
},
effect: {
en: "This attack does 30 more damage times the amount of Water Energy attached to this Pokémon.",
fr: "Cette attaque inflige 30 dégâts supplémentaires multipliés par le nombre dÉnergies Water attachées à ce Pokémon.",
},
damage: 40,
},
{
cost: [
"Water",
],
name: {
en: "Cure Shower GX",
fr: "Pluie Curative-GX",
},
effect: {
en: "Heal all damage from all of your Water Pokémon. (You can't use more than 1 GX attack in a game.)",
fr: "Soignez tous les dégâts de vos Pokémon Water. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
}
export default card