1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

51 lines
784 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 "../SC2D"
const card: Card = {
set: Set,
name: {
'zh-tw': "皮皮"
},
illustrator: "HYOGONOSUKE",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
description: {
'zh-tw': "據說如果在滿月的夜晚看見皮皮們聚在一起跳舞,就能得到幸福。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "拍擊"
},
damage: 10,
cost: ["Psychic"]
}, {
name: {
'zh-tw': "小揮指"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則選擇對手的戰鬥寶可夢持有的1個招式作為這個招式使用。"
},
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card