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

50 lines
792 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 "../SV3s"
const card: Card = {
set: Set,
name: {
id: "Togepi"
},
illustrator: "Natsumi Yoshida",
category: "Pokemon",
hp: 50,
types: ["Psychic"],
description: {
id: "Simbol keberuntungan. Kabarnya cangkang Togepi dipenuhi dengan kebahagiaan."
},
stage: "Basic",
attacks: [{
name: {
id: "Suara Manja"
},
effect: {
id: "Pilih 1 kartu dari Kartu Pegangan lawan tanpa melihat sisi depan, lihat sisi depan kartu tersebut, lalu kocok kembali ke Deck lawan."
},
cost: ["Colorless"]
}, {
name: {
id: "Tubrukan Menggelinding"
},
damage: 20,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card