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

54 lines
900 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 "../S4"
const card: Card = {
set: Set,
name: {
'zh-tw': "勾魂眼"
},
illustrator: "KEIICHIRO ITO",
category: "Pokemon",
hp: 70,
types: ["Darkness"],
description: {
'zh-tw': "寶石的眼睛發出詭異光芒時,就會攝取人的魂魄。是令人恐懼的寶可夢。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "偷盜"
},
effect: {
'zh-tw': "從自己的牌庫抽出1張卡。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "無理取鬧"
},
effect: {
'zh-tw': "選擇對手的戰鬥寶可夢持有的1個招式。在下個對手的回合受到這個招式的寶可夢無法使用被選擇的招式。"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card