mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
52 lines
907 B
TypeScript
52 lines
907 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S10a"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "皮可西"
|
||
},
|
||
|
||
illustrator: "Sekio",
|
||
category: "Pokemon",
|
||
hp: 100,
|
||
types: ["Psychic"],
|
||
|
||
description: {
|
||
'zh-tw': "妖精的一種。極少出現在人類面前。一感覺到有人 就會立刻逃走。"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
abilities: [{
|
||
type: "Ability",
|
||
|
||
name: {
|
||
'zh-tw': "妖精守護"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "只要這隻寶可夢在場上,自己的所有寶可夢受到對手的【龍】寶可夢招式的傷害「-30」點。無論有多少隻擁有這個特性的寶可夢,這個效果也不會重複。"
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "月亮衝擊"
|
||
},
|
||
|
||
damage: 90,
|
||
cost: ["Psychic", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Metal",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "F"
|
||
}
|
||
|
||
export default card |