1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 15:42:11 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

101 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: "pl2-67",
localId: 67,
// Card informations
name: {
en: "Kecleon",
fr: "Kecleon Niv. 34",
},
hp: 70,
type: [
Type.COLORLESS,
],
dexId: 352,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl2/67/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl2/67/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl2/67/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl2/67/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 2,
name: "Midori Harada"
},
abilities: [{
id: 739,
type: AbilityType.POKEBODY,
name: {
en: "Colorful Body",
fr: "Corps coloré",
},
text: {
en: "Kecleon's type is Grass Fire Water Lightning Psychic Fighting Darkness Metal Colorless.",
fr: "Kecleon est de type GrassFireWaterLightningPsychicFightingDarknessMetalColorless.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Triple Smash",
fr: "Triple éclate",
},
text: {
en: "Flip 3 coins. This attack does 10 damage plus 20 more damage for each heads.",
fr: "Lancez 3 pièces. Cette attaque inflige 10 dégâts plus 20 dégâts supplémentaires pour chaque face.",
},
damage: 10
}],
weaknesses: [{
type: Type.FIGHTING,
value: "+20"
}],
retreat: 1,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Rising Rivals",
code: "pl2"
}
}
export default card