1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

115
cards/sm/smp/SM172.ts Normal file
View File

@ -0,0 +1,115 @@
import Card from '../../../interfaces/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "smp-SM172",
localId: "SM172",
// Card informations
name: {
en: "Vaporeon-GX",
fr: "Aquali-GX",
},
hp: 210,
type: [
Type.WATER,
],
dexId: 134,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/smp/SM172/low.png",
fr: "https://assets.tcgdex.net/fr/sm/smp/SM172/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/smp/SM172/high.png",
fr: "https://assets.tcgdex.net/fr/sm/smp/SM172/high.png",
},
},
evolveFrom: {
en: "Eevee",
fr: "Évoli",
},
tags: [
Tag.GX,
],
illustrator: {
id: 194,
name: "PLANETA Otani"
},
abilities: [{
id: 1401,
type: AbilityType.TALENT,
name: {
en: "Hydrating Drops",
fr: "Gouttes Hydratantes",
},
text: {
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: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Hydro Pump",
fr: "Hydrocanon",
},
text: {
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: [
Type.WATER
],
name: {
en: "Cure Shower GX",
fr: "Pluie Curative-GX",
},
text: {
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: Type.GRASS,
value: "×2"
}],
retreat: 2,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "SM Black Star Promos",
code: "smp"
}
}
export default card