mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
107 lines
1.9 KiB
TypeScript
107 lines
1.9 KiB
TypeScript
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: "hgss3-37",
|
||
localId: 37,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Skuntank",
|
||
fr: "Moufflair",
|
||
},
|
||
|
||
hp: 80,
|
||
|
||
type: [
|
||
Type.DARKNESS,
|
||
],
|
||
|
||
dexId: 435,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/hgss/hgss3/37/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/hgss/hgss3/37/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/hgss/hgss3/37/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/hgss/hgss3/37/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Stunky",
|
||
fr: "Moufouette",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 23,
|
||
name: "Naoyo Kimura"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.DARKNESS
|
||
],
|
||
name: {
|
||
en: "Stun Gas",
|
||
fr: "Gaz étourdissant",
|
||
},
|
||
text: {
|
||
en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned. If tails, the Defending Pokémon is now Paralyzed.",
|
||
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Empoisonné. Si c'est pile, le Pokémon Défenseur est maintenant Paralysé.",
|
||
},
|
||
},{
|
||
cost: [
|
||
Type.DARKNESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Fury Swipes",
|
||
fr: "Combo-griffe",
|
||
},
|
||
text: {
|
||
en: "Flip 3 coins. This attack does 30 damage times the number of heads.",
|
||
fr: "Lancez 3 pièces. Cette attaque inflige 30 dégâts multipliés par le nombre de côtés face.",
|
||
},
|
||
damage: 30
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIGHTING,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.PSYCHIC,
|
||
value: "-20"
|
||
}],
|
||
|
||
retreat: 1,
|
||
|
||
rarity: Rarity.Uncommon,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "HS—Undaunted",
|
||
code: "hgss3"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|