mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-04 08:32:10 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
69 lines
1.1 KiB
TypeScript
69 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Medicham",
|
||
fr: "Charmina"
|
||
},
|
||
|
||
illustrator: "Suwama Chiaki",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
evolveFrom: {
|
||
en: "Meditite",
|
||
fr: "Méditikka"
|
||
},
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
],
|
||
name: {
|
||
en: "Yoga Kick",
|
||
fr: "Yoga Kick"
|
||
},
|
||
effect: {
|
||
en: "This attack’s damage isn’t affected by Weakness or Resistance.",
|
||
fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse ou la Résistance."
|
||
},
|
||
damage: 40,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Psychic",
|
||
fr: "Psyko"
|
||
},
|
||
effect: {
|
||
en: "This attack does 20 more damage for each Energy attached to your opponent’s Active Pokémon.",
|
||
fr: "Cette attaque inflige 20 dégâts supplémentaires pour chaque Énergie attachée au Pokémon Actif de votre adversaire."
|
||
},
|
||
damage: "60+",
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
hp: 110,
|
||
types: ["Fighting"],
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|