1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +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

110
cards/sm/sm115/42.ts Normal file
View File

@ -0,0 +1,110 @@
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: "sm115-42",
localId: 42,
// Card informations
name: {
en: "Wigglytuff-GX",
fr: "Grodoudou-GX",
},
hp: 210,
type: [
Type.FAIRY,
],
dexId: 40,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm115/42/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm115/42/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm115/42/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm115/42/high.png",
},
},
evolveFrom: {
en: "Jigglypuff",
fr: "Rondoudou",
},
tags: [
Tag.GX,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.FAIRY,
Type.FAIRY,
Type.COLORLESS
],
name: {
en: "Rolling Rush",
fr: "Ruée-Boulée",
},
text: {
en: "Flip a coin until you get tails. This attack does 30 more damage for each heads.",
fr: "Lancez une pièce jusquà ce que vous obteniez un côté pile. Cette attaque inflige 30 dégâts supplémentaires pour chaque côté face.",
},
damage: 100
},{
cost: [
Type.FAIRY,
Type.FAIRY,
Type.COLORLESS
],
name: {
en: "Lovely Star-GX",
fr: "Belle Étoile-GX",
},
text: {
en: "Heal all damage from this Pokémon. (You can't use more than 1 GX attack in a game.)",
fr: "Soignez tous les dégâts de ce Pokémon. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
damage: 130
}],
weaknesses: [{
type: Type.METAL,
value: "×2"
}],
resistances: [{
type: Type.DARKNESS,
value: "-20"
}],
retreat: 2,
rarity: Rarity.RareHoloGX,
category: Category.POKEMON,
set: {
name: "Hidden Fates",
code: "sm115"
}
}
export default card