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

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,73 @@
import { Card } from '../../../interfaces'
import Set from '../Primal Clash'
const card: Card = {
name: {
en: "Medicham",
fr: "Charmina",
},
illustrator: "Akira Komayama",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
308,
],
hp: 100,
types: [
"Fightning",
],
evolveFrom: {
en: "Meditite",
fr: "Méditikka",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fightning",
],
name: {
en: "Pure Power",
fr: "Force Pure",
},
effect: {
en: "Put 4 damage counters on your opponent's Pokémon in any way you like.",
fr: "Placez 4 marqueurs de dégâts sur les Pokémon de votre adversaire, de la manière que vous voulez.",
},
},
{
cost: [
"Fightning",
"Colorless",
],
name: {
en: "Windmill Kick",
fr: "Coup d'Pied Éolien",
},
effect: {
en: "Your opponent's Active Pokémon is now Confused.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card