1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 07:32:11 +00:00

64 lines
701 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",
},
illustrator: "Hisao Nakamura",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
307,
],
hp: 50,
types: [
"Fightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Fightning",
],
name: {
en: "Kick",
},
damage: 10,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Pure Power",
},
effect: {
en: "Put 2 damage counters on your opponent's Pokémon in any way you like.",
},
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card