mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
54 lines
900 B
TypeScript
54 lines
900 B
TypeScript
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 |