mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 04:42:11 +00:00
90 lines
1.3 KiB
TypeScript
90 lines
1.3 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: "ex8-14",
|
|
localId: 14,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Shedinja",
|
|
},
|
|
|
|
hp: 50,
|
|
|
|
type: [
|
|
Type.PSYCHIC,
|
|
],
|
|
|
|
dexId: 292,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/ex/ex8/14/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/ex/ex8/14/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Nincada",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE1,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 22,
|
|
name: "Yukiko Baba"
|
|
},
|
|
|
|
abilities: [{
|
|
id: 17,
|
|
type: AbilityType.POKEBODY,
|
|
name: {
|
|
en: "Empty Shell",
|
|
},
|
|
text: {
|
|
en: "When Shedinja is Knocked Out, your opponent doesn't take any Prize cards.",
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Extra Curse",
|
|
},
|
|
text: {
|
|
en: "Put 2 damage counters on the Defending Pokémon. If the Defending Pokémon is Pokémon-ex, put 4 damage counters instead.",
|
|
},
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.RareHolo,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Deoxys",
|
|
code: "ex8"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|