1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

60 lines
1.0 KiB
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 "../S10a"
const card: Card = {
set: Set,
name: {
'zh-tw': "耿鬼"
},
illustrator: "Narumi Sato",
category: "Pokemon",
hp: 120,
types: ["Psychic"],
description: {
'zh-tw': "滿月的夜晚,如果影子自己動起來並露出笑容, 那肯定是耿鬼搞的鬼。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "奈落後門"
},
effect: {
'zh-tw': "若這張卡在棄牌區則在自己的回合時可使用1次。將這張卡放置於備戰區。然後在這隻寶可夢身上放置3個傷害指示物。"
}
}],
attacks: [{
name: {
'zh-tw': "尖嘯陣"
},
effect: {
'zh-tw': "將與對手的備戰寶可夢的數量×2個的相同數量的傷害指示物放置於對手的戰鬥寶可夢身上。"
},
cost: ["Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "F"
}
export default card