mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
46 lines
775 B
TypeScript
46 lines
775 B
TypeScript
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 |