mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 20:02:15 +00:00
86 lines
1.2 KiB
TypeScript
86 lines
1.2 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: "ecard3-37",
|
||
localId: 37,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Kabuto",
|
||
},
|
||
|
||
hp: 50,
|
||
|
||
type: [
|
||
Type.FIGHTING,
|
||
],
|
||
|
||
dexId: 140,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/ecard/ecard3/37/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/ecard/ecard3/37/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: "Yukiko Baba",
|
||
|
||
abilities: [{
|
||
id: 970,
|
||
type: AbilityType.POKEBODY,
|
||
name: {
|
||
en: "Thick Shell",
|
||
},
|
||
text: {
|
||
en: "All damage done by attacks to Kabuto from Evolved Pokémon is reduced by 10 (after applying Weakness and Resistance).",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.FIGHTING,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Scratch",
|
||
},
|
||
damage: 30
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.GRASS,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
|
||
|
||
rarity: Rarity.UNCOMMON,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Skyridge",
|
||
code: "ecard3"
|
||
}
|
||
}
|
||
|
||
export default card
|