1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-26 05:49:18 +00:00

Initial Database

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-19 16:19:09 +01:00
commit be94e712b8
12302 changed files with 1142705 additions and 0 deletions

104
cards/bw/bw1/76.ts Normal file
View File

@ -0,0 +1,104 @@
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