mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
88 lines
1.2 KiB
TypeScript
88 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: "ex10-57",
|
||
localId: 57,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Gligar",
|
||
},
|
||
|
||
hp: 50,
|
||
|
||
type: [
|
||
Type.FIGHTING,
|
||
],
|
||
|
||
dexId: 207,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/ex/ex10/57/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/ex/ex10/57/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: "Mitsuhiro Arita",
|
||
|
||
abilities: [{
|
||
id: 132,
|
||
type: AbilityType.POKEBODY,
|
||
name: {
|
||
en: "Free Flight",
|
||
},
|
||
text: {
|
||
en: "If Gligar has no Energy attached to it, Gligar's Retreat Cost is 0.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.LIGHTNING
|
||
],
|
||
name: {
|
||
en: "Toxic Grip",
|
||
},
|
||
text: {
|
||
en: "The Defending Pokémon is now Poisoned.",
|
||
},
|
||
damage: 10
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.LIGHTNING,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
|
||
|
||
rarity: Rarity.COMMON,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Unseen Forces",
|
||
code: "ex10"
|
||
}
|
||
}
|
||
|
||
export default card
|