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

53 lines
904 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 "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "皮皮",
ja: "ピッピ"
},
illustrator: "Yukiko Baba",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
description: {
'zh-tw': "據說如果在滿月的夜晚看見皮皮們聚在一起跳舞, 就能得到幸福。",
ja: "満月の夜 ピッピが 集まって ダンスを 踊るようすを 見ると しあわせに なれると 言われている。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "拍擊",
ja: "はたく"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "魔法射擊",
ja: "マジカルショット"
},
damage: 30,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [35]
}
export default card