1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 6ca1ae94ed
Updated Cards to use new Rarities
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 13:58:48 +02:00

117 lines
2.4 KiB
TypeScript

import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
const card: Card = {
// ids
id: "dp7-26",
localId: 26,
// Card informations
name: {
en: "Skuntank",
fr: "Skuntank",
},
hp: 100,
type: [
Type.DARKNESS,
],
dexId: 435,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp7/26/low",
fr: "https://assets.tcgdex.net/fr/dp/dp7/26/low",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp7/26/high",
fr: "https://assets.tcgdex.net/fr/dp/dp7/26/high",
},
},
evolveFrom: {
en: "Stunky",
fr: "Moufouette",
},
tags: [
Tag.STAGE1,
],
illustrator: "Kouki Saitou",
abilities: [{
id: 1105,
type: AbilityType.POKEPOWER,
name: {
en: "Evolutionary Gas",
fr: "Gaz d'évolution",
},
text: {
en: "Once during your turn (before your attack), when you play Skuntank from your hand to evolve 1 of your Active Pokémon, you may choose 1 of the Defending Pokémon. If that Pokémon tries to attack during your opponent's next turn, that attack does nothing.",
fr: "Une seule fois lors de votre tour (avant votre attaque), lorsque vous jouez Moufflair de votre main pour faire évoluer 1 de vos Pokémon Actifs, vous pouvez choisir 1 des Pokémon Défenseurs. Si ce Pokémon essaye d'attaquer lors du prochain tour de votre adversaire, cette attaque est sans effet.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Poison Claws",
fr: "Griffes empoisonnées",
},
text: {
en: "The Defending Pokémon is now Poisoned.",
fr: "Le Pokémon Défenseur est maintenant Empoisonné.",
},
damage: 20
},{
cost: [
Type.DARKNESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Plunder",
fr: "Pillage",
},
text: {
en: "Before doing damage, discard all Trainer cards attached to the Defending Pokémon.",
fr: "Avant d'infliger des dégâts, défaussez toutes les cartes Dresseur attachées au Pokémon Défenseur.",
},
damage: 60
}],
weaknesses: [{
type: Type.FIGHTING,
value: "+20"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
retreat: 2,
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Stormfront",
code: "dp7"
}
}
export default card