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

50 lines
703 B
TypeScript
Raw Permalink 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 "../Sc1a"
const card: Card = {
set: Set,
name: {
'zh-tw': "皮皮"
},
illustrator: "sowsow",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
description: {
'zh-tw': "據說如果在滿月的夜晚看見皮皮們聚在一起跳舞,就能得到幸福。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "閃耀指"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "魔法射擊"
},
damage: 10,
cost: ["Psychic"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card