1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

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: "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.png",
},
high: {
en: "https://assets.tcgdex.net/en/ex/ex3/11/high.png",
},
},
evolveFrom: {
en: "Nincada",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 0,
name: "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.RareHolo,
category: Category.POKEMON,
set: {
name: "Dragon",
code: "ex3"
}
}
export default card