1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

50 lines
797 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 "../SV6s"
const card: Card = {
set: Set,
name: {
id: "Clefable"
},
illustrator: "satoma",
category: "Pokemon",
hp: 120,
types: ["Psychic"],
description: {
id: "Pendengarannya bagus. Ia dapat membedakan dengan baik bunyi jarum yang jatuh pada tempat berjarak 1 km jauhnya."
},
stage: "Stage1",
attacks: [{
name: {
id: "Goyang Jari"
},
effect: {
id: "Pilih 1 serangan yang dimiliki Pokémon Bertarung lawan, lalu gunakan sebagai serangan ini."
},
cost: ["Colorless", "Colorless"]
}, {
name: {
id: "Magical Shot"
},
damage: 100,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card