1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 10:52:10 +00:00

60 lines
1012 B
TypeScript
Raw Permalink 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 "../SC2D"
const card: Card = {
set: Set,
name: {
'zh-tw': "麒麟奇"
},
illustrator: "sowsow",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
description: {
'zh-tw': "雖然尾巴上的腦袋小到無法思考,但因為不睡覺也沒關係,所以會24小時持續監視周圍的狀況。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "精神力量"
},
effect: {
'zh-tw': "將2個傷害指示物以任意方式放置於對手的寶可夢身上。"
},
cost: ["Psychic"]
}, {
name: {
'zh-tw': "擺尾指令"
},
effect: {
'zh-tw': "若希望令對手將對手自己的手牌全部放回牌庫並重洗。這個情況下對手從牌庫抽出4張卡。"
},
damage: 30,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card