mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
52 lines
860 B
TypeScript
52 lines
860 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../Sc1a"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "皮可西"
|
||
},
|
||
|
||
illustrator: "miki kudo",
|
||
category: "Pokemon",
|
||
hp: 110,
|
||
types: ["Psychic"],
|
||
|
||
description: {
|
||
'zh-tw': "妖精的一種。極少出現在人類面前。一感覺到有人就會立刻逃走。"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
abilities: [{
|
||
type: "Ability",
|
||
|
||
name: {
|
||
'zh-tw': "調皮"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "在自己的回合,當從手牌使出這張卡並完成進化時,可使用1次。選擇1個對手的戰鬥寶可夢身上附加的能量,放回對手的牌庫上方。"
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "月亮踢"
|
||
},
|
||
|
||
damage: 60,
|
||
cost: ["Psychic", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Metal",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card |