1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-22 08:09:54 +00:00
Florian Bouillon d4be6fa84f
fix: Add Diamond & Pearl French translations (#179)
* fix: Add the two first sets

Signed-off-by: Avior <github@avior.me>

* fix: Add DP, DP Black Star and Mysterious Treasures

Signed-off-by: Avior <github@avior.me>
2021-11-22 18:11:03 +00:00

81 lines
1.2 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Diamond & Pearl'
const card: Card = {
name: {
en: "Medicham",
fr: "Charmina",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
308,
],
hp: 90,
types: [
"Fighting",
],
evolveFrom: {
en: "Meditite",
fr: "Meditikka",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Force Palm",
fr: "Forte-Paume",
},
effect: {
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: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Spinning Kick",
fr: "Coup tournant",
},
effect: {
en: "Medicham does 20 damage to itself.",
fr: "Charmina s'inflige 20 dégâts.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Psychic",
value: "+20"
},
],
retreat: 2,
description: {
fr: "Il a développé son sixième sens grâce au yoga. Ses mouvements sont gracieux."
}
}
export default card