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

50 lines
780 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 "../SJ"
const card: Card = {
set: Set,
name: {
'zh-tw': "狐大盜"
},
illustrator: "Akira Komayama",
category: "Pokemon",
hp: 100,
types: ["Darkness"],
description: {
'zh-tw': "會偷偷在看中的獵物身上留下標記,追蹤目標的氣味, 在對方放鬆警戒時偷盜。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "詭計"
},
effect: {
'zh-tw': "從自己的牌庫任意選擇最多2張卡加入手牌。並且重洗牌庫。"
},
cost: ["Darkness"]
}, {
name: {
'zh-tw': "銳利之牙"
},
damage: 70,
cost: ["Darkness", "Darkness"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card