1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

72 lines
1012 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Crystal Guardians'
const card: Card = {
name: {
en: "Meditite",
fr: "Meditikka",
de: "Meditie"
},
illustrator: "Hisao Nakamura",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
307,
],
hp: 50,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Kick",
fr: "Koud'pied",
de: "Tritt"
},
damage: 10,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Pure Power",
fr: "Pouvoir pur",
de: "Mentalkraft"
},
effect: {
en: "Put 2 damage counters on your opponent's Pokémon in any way you like.",
fr: "Placez 2 marqueurs de dégât sur les Pokémon de votre adversaire de la façon que vous voulez.",
de: "Lege 2 Schadensmarken in beliebiger Verteilung auf die gegnerischen Pokémon."
},
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card