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

52 lines
908 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 "../S7D"
const card: Card = {
set: Set,
name: {
'zh-tw': "狐大盜"
},
illustrator: "Kyoko Umemoto",
category: "Pokemon",
hp: 100,
types: ["Darkness"],
description: {
'zh-tw': "靠著輕盈的身體和銳利的爪子到處去偷食物和蛋。逐電犬是牠的天敵。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "漏接之手"
},
effect: {
'zh-tw': "在自己的回合當從手牌使出這張卡並完成進化時可使用1次。雙方玩家各將自己的手牌全部翻回反面並重洗放回牌庫下方。然後各從牌庫抽出4張卡。"
}
}],
attacks: [{
name: {
'zh-tw': "尾擊"
},
damage: 60,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card