mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-02 07:32:11 +00:00
105 lines
1.7 KiB
TypeScript
105 lines
1.7 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: "bw1-76",
|
||
localId: 76,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Klinklang",
|
||
fr: "Cliticlic",
|
||
},
|
||
|
||
hp: 140,
|
||
|
||
type: [
|
||
Type.METAL,
|
||
],
|
||
|
||
dexId: 601,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/bw/bw1/76/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bw1/76/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/bw/bw1/76/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bw1/76/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Klang",
|
||
fr: "Clic",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE2,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 4,
|
||
name: "5ban Graphics"
|
||
},
|
||
|
||
abilities: [{
|
||
id: 1296,
|
||
type: AbilityType.TALENT,
|
||
name: {
|
||
en: "Shift Gear",
|
||
},
|
||
text: {
|
||
en: "As often as you would like during your turn (before your attack), you may move a Metal Energy attached to 1 of your Pokémon to another of your Pokémon.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.METAL,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Gear Grind",
|
||
fr: "Lancécrou",
|
||
},
|
||
text: {
|
||
en: "Flip 2 coins. This attack does 80 damage times the number of heads.",
|
||
fr: "Lancez 2 pièces. Cette attaque inflige 80 dégâts multipliés par le nombre de côtés face.",
|
||
},
|
||
damage: 80
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIRE,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.PSYCHIC,
|
||
value: "-20"
|
||
}],
|
||
|
||
retreat: 3,
|
||
|
||
rarity: Rarity.RareHolo,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Black & White",
|
||
code: "bw1"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|