mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
54 lines
823 B
TypeScript
54 lines
823 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SI"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "引夢貘人"
|
||
},
|
||
|
||
illustrator: "Miki Tanaka",
|
||
category: "Pokemon",
|
||
hp: 110,
|
||
types: ["Psychic"],
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "催眠術"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。"
|
||
},
|
||
|
||
cost: ["Psychic"]
|
||
}, {
|
||
name: {
|
||
'zh-tw': "喚醒巴掌"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "若對手的戰鬥寶可夢處於特殊狀態,則增加90點傷害。然後,將對手的戰鬥寶可夢的特殊狀態全部恢復。"
|
||
},
|
||
|
||
damage: "30+",
|
||
cost: ["Psychic"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Darkness",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |