1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +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

86 lines
1.3 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: "ex3-11",
localId: 11,
// Card informations
name: {
en: "Shedinja",
},
hp: 30,
type: [
Type.GRASS,
],
dexId: 292,
image: {
low: {
en: "https://assets.tcgdex.net/en/ex/ex3/11/low",
},
high: {
en: "https://assets.tcgdex.net/en/ex/ex3/11/high",
},
},
evolveFrom: {
en: "Nincada",
},
tags: [
Tag.STAGE1,
],
illustrator: "Kagemaru Himeno",
abilities: [{
id: 249,
type: AbilityType.POKEBODY,
name: {
en: "Wonder Guard",
},
text: {
en: "Prevent all effects of attacks, including damage, done to Shedinja by your opponent's Evolved Pokémon and Pokémon-ex.",
}
}],
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Damage Curse",
},
text: {
en: "Put 1 damage counter, plus 1 more damage counter for each damage counter on Shedinja, on the Defending Pokémon.",
},
}],
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Dragon",
code: "ex3"
}
}
export default card