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

46 lines
775 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 "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ピッピ",
'zh-tw': "皮皮"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Sanosuke Sakuma",
dexId: [35],
hp: 60,
types: ["Psychic"],
description: {
ja: "満月の 晩に 集まって 仲間と ダンス。 その周囲は 異常な 磁場に 包まれる。",
'zh-tw': "在月圓之夜聚集, 和夥伴一起跳舞。 周圍被異常的磁場包圍著。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "ムーンキック",
'zh-tw': "月亮踢"
},
damage: 40
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card