mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
108 lines
1.8 KiB
TypeScript
108 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: "sm3-52",
|
||
localId: 52,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Dusclops",
|
||
fr: "Téraclope",
|
||
},
|
||
|
||
hp: 90,
|
||
|
||
type: [
|
||
Type.PSYCHIC,
|
||
],
|
||
|
||
dexId: 356,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm3/52/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm3/52/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm3/52/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm3/52/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Duskull",
|
||
fr: "Skelénox",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 102,
|
||
name: "SATOSHI NAKAI"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.PSYCHIC
|
||
],
|
||
name: {
|
||
en: "Night Roam",
|
||
fr: "Errance Nocturne",
|
||
},
|
||
text: {
|
||
en: "Put 1 damage counter on each Pokémon (both yours and your opponent's).",
|
||
fr: "Placez 1 marqueur de dégâts sur chaque Pokémon (les vôtres et ceux de votre adversaire).",
|
||
},
|
||
},{
|
||
cost: [
|
||
Type.PSYCHIC,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Ambush",
|
||
fr: "Embuscade",
|
||
},
|
||
text: {
|
||
en: "Flip a coin. If heads, this attack does 30 more damage.",
|
||
fr: "Lancez une pièce. Si c’est face, cette attaque inflige 30 dégâts supplémentaires.",
|
||
},
|
||
damage: 30
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.DARKNESS,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.FIGHTING,
|
||
value: "-20"
|
||
}],
|
||
|
||
retreat: 3,
|
||
|
||
rarity: Rarity.Uncommon,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Burning Shadows",
|
||
code: "sm3"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|