1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon cf25058e55
Updated
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-21 23:48:05 +01:00

104 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: "dp1-32",
localId: 32,
// Card informations
name: {
en: "Medicham",
fr: "Charmina",
},
hp: 90,
type: [
Type.FIGHTING,
],
dexId: 308,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp1/32/low",
fr: "https://assets.tcgdex.net/fr/dp/dp1/32/low",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp1/32/high",
fr: "https://assets.tcgdex.net/fr/dp/dp1/32/high",
},
},
evolveFrom: {
en: "Meditite",
fr: "Meditikka",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 10,
name: "Kouki Saitou"
},
attacks: [{
cost: [
Type.FIGHTING
],
name: {
en: "Force Palm",
fr: "Forte-Paume",
},
text: {
en: "Count the number of damage counters on Medicham. Put that many damage counters on 1 of your opponent's Pokémon.",
fr: "Comptabilisez le nombre de marqueurs de dégât sur Charmina. Placez autant de marqueurs de dégât sur 1 des Pokémon de votre adversaire.",
},
},{
cost: [
Type.FIGHTING,
Type.FIGHTING,
Type.COLORLESS
],
name: {
en: "Spinning Kick",
fr: "Coup tournant",
},
text: {
en: "Medicham does 20 damage to itself.",
fr: "Charmina s'inflige 20 dégâts.",
},
damage: 80
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "+20"
}],
retreat: 2,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Diamond & Pearl",
code: "dp1"
}
}
export default card