mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-28 13:52:13 +00:00
110 lines
1.8 KiB
TypeScript
110 lines
1.8 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: "smp-SM89",
|
||
localId: "SM89",
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Zoroark",
|
||
fr: "Zoroark",
|
||
},
|
||
|
||
hp: 120,
|
||
|
||
type: [
|
||
Type.DARKNESS,
|
||
],
|
||
|
||
dexId: 571,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/sm/smp/SM89/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/sm/smp/SM89/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/sm/smp/SM89/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/sm/smp/SM89/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Zorua",
|
||
fr: "Zorua",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 66,
|
||
name: "Misa Tsutsui"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Rip Claw",
|
||
fr: "Griffe Déchirante",
|
||
},
|
||
text: {
|
||
en: "Flip a coin. If heads, discard an Energy from your opponent's Active Pokémon.",
|
||
fr: "Lancez une pièce. Si c’est face, défaussez une Énergie du Pokémon Actif de votre adversaire.",
|
||
},
|
||
damage: 30
|
||
},{
|
||
cost: [
|
||
Type.DARKNESS,
|
||
Type.DARKNESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Doom Crush",
|
||
fr: "Écrasement Tragique",
|
||
},
|
||
text: {
|
||
en: "Discard a Darkness Energy from this Pokémon.",
|
||
fr: "Défaussez une Énergie Darkness de ce Pokémon.",
|
||
},
|
||
damage: 120
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIGHTING,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.PSYCHIC,
|
||
value: "-20"
|
||
}],
|
||
|
||
retreat: 2,
|
||
|
||
rarity: Rarity.Common,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "SM Black Star Promos",
|
||
code: "smp"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|