mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
98 lines
1.6 KiB
TypeScript
98 lines
1.6 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: "hgss4-33",
|
||
localId: 33,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Electabuzz",
|
||
fr: "Elektek",
|
||
},
|
||
|
||
hp: 70,
|
||
|
||
type: [
|
||
Type.LIGHTNING,
|
||
],
|
||
|
||
dexId: 125,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/hgss/hgss4/33/low",
|
||
fr: "https://assets.tcgdex.net/fr/hgss/hgss4/33/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/hgss/hgss4/33/high",
|
||
fr: "https://assets.tcgdex.net/fr/hgss/hgss4/33/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: "TOKIYA",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Light Punch",
|
||
fr: "Poing léger",
|
||
},
|
||
damage: 10
|
||
},{
|
||
cost: [
|
||
Type.LIGHTNING,
|
||
Type.LIGHTNING,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Shock Bolt",
|
||
fr: "Choc'éclair",
|
||
},
|
||
text: {
|
||
en: "Flip a coin. If tails, discard all Lightning Energy attached to Electabuzz.",
|
||
fr: "Lancez une pièce. Si c'est pile, défaussez toutes les cartes Énergie Lightning attachées à Elektek.",
|
||
},
|
||
damage: 60
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIGHTING,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.METAL,
|
||
value: "-20"
|
||
}],
|
||
|
||
retreat: 2,
|
||
|
||
rarity: Rarity.Uncommon,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "HS—Triumphant",
|
||
code: "hgss4"
|
||
}
|
||
}
|
||
|
||
export default card
|