mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
59 lines
768 B
TypeScript
59 lines
768 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Temporal Forces"
|
|
|
|
const card: Card = {
|
|
dexId: [307],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Meditite",
|
|
fr: "Méditikka",
|
|
es: "Meditite",
|
|
it: "Meditite",
|
|
pt: "Meditite",
|
|
de: "Meditie"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Fighting"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Fighting"],
|
|
|
|
name: {
|
|
en: "Slap",
|
|
fr: "Gifle",
|
|
es: "Bofetón",
|
|
it: "Sberla",
|
|
pt: "Tapa",
|
|
de: "Hieb"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Kick",
|
|
fr: "Koud'Pied",
|
|
es: "Patada",
|
|
it: "Calcio",
|
|
pt: "Chute",
|
|
de: "Tritt"
|
|
},
|
|
|
|
damage: 30
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |