mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
67 lines
1.8 KiB
TypeScript
67 lines
1.8 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Lost Origin"
|
|
|
|
const card: Card = {
|
|
dexId: [308],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Medicham",
|
|
fr: "Charmina",
|
|
es: "Medicham",
|
|
it: "Medicham",
|
|
pt: "Medicham",
|
|
de: "Meditalis"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 110,
|
|
types: ["Fighting"],
|
|
|
|
evolveFrom: {
|
|
en: "Meditite",
|
|
fr: "Méditikka",
|
|
es: "Meditite",
|
|
it: "Meditite",
|
|
pt: "Meditite",
|
|
de: "Meditie"
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Fighting"],
|
|
|
|
name: {
|
|
en: "Battle Step",
|
|
fr: "Foulée de Combat",
|
|
es: "Paso de Combate",
|
|
it: "Passolotta",
|
|
pt: "Passo de Batalha",
|
|
de: "Kampfschritt"
|
|
},
|
|
|
|
effect: {
|
|
en: "Search your deck for up to 2 Fighting Energy cards and attach them to your Benched Pokémon in any way you like. Then, shuffle your deck.",
|
|
fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie Fighting, puis attachez-les à vos Pokémon de Banc comme il vous plaît. Mélangez ensuite votre deck.",
|
|
es: "Busca en tu baraja hasta 2 cartas de Energía Fighting y únelas a tus Pokémon en Banca de la manera que desees. Después, baraja las cartas de tu baraja.",
|
|
it: "Cerca nel tuo mazzo fino a due carte Energia Fighting e assegnale ai tuoi Pokémon in panchina nel modo che preferisci. Poi rimischia le carte del tuo mazzo.",
|
|
pt: "Procure por até 2 cartas de Energia Fighting no seu baralho e ligue-as aos seus Pokémon no Banco como desejar. Em seguida, embaralhe o seu baralho.",
|
|
de: "Durchsuche dein Deck nach bis zu 2 Fighting-Energiekarten und lege sie beliebig an die Pokémon auf deiner Bank an. Mische anschließend dein Deck."
|
|
},
|
|
|
|
damage: 50
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "F",
|
|
|
|
variants: {
|
|
"normal": true,
|
|
"reverse": true,
|
|
"holo": false
|
|
}
|
|
}
|
|
|
|
export default card |