1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

52 lines
1.1 KiB
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 "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ピィ",
'zh-tw': "皮寶寶",
id: "Cleffa"
},
illustrator: "Mizue",
category: "Pokemon",
dexId: [173],
hp: 30,
types: ["Psychic"],
description: {
ja: "お星さまのような シルエット。 その姿から 流れ星に乗って やって来ると 信じられている。",
'zh-tw': "有著如同星星一般的輪廓。因為這樣的外型,人們相信 牠是乘著流星而來的。",
id: "Cleffa memiliki siluet seperti bintang. Karena wujudnya tersebut, Pokémon ini dipercaya datang dengan menaiki meteor."
},
stage: "Basic",
attacks: [{
name: {
ja: "にぎにぎドロー",
'zh-tw': "握握抽出",
id: "Ambil Mengepal-ngepal"
},
effect: {
ja: "自分の手札が7枚になるように、山札を引く。",
'zh-tw': "從牌庫抽卡直到自己的手牌滿7張為止。",
id: "Ambil kartu dari atas Deck hingga jumlah Kartu Pegangan sendiri menjadi 7 lembar."
}
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 0,
regulationMark: "G"
}
export default card