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

96 lines
1.5 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: "dp2-61",
localId: 61,
// Card informations
name: {
en: "Sandslash",
},
hp: 90,
type: [
Type.FIGHTING,
],
dexId: 28,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp2/61/low",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp2/61/high",
},
},
evolveFrom: {
en: "Sandshrew",
},
tags: [
Tag.STAGE1,
],
illustrator: "Atsuko Nishida",
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Spike Armor",
},
text: {
en: "During your opponent's next turn, if Sandslash is damaged by an opponent's attack (even if Sandslash is Knocked Out), put 4 damage counters on the Attacking Pokémon.",
},
},{
cost: [
Type.FIGHTING,
Type.FIGHTING,
Type.COLORLESS
],
name: {
en: "Poison Spike",
},
text: {
en: "If the Defending Pokémon already has any damage counters on it, that Pokémon is now Poisoned.",
},
damage: 60
}],
weaknesses: [{
type: Type.WATER,
value: "+20"
}],
resistances: [{
type: Type.LIGHTNING,
value: "-20"
}],
rarity: Rarity.UNCOMMON,
category: Category.POKEMON,
set: {
name: "Mysterious Treasures",
code: "dp2"
}
}
export default card