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

58 lines
1.4 KiB
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 "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "狐大盜",
ja: "フォクスライ"
},
illustrator: "NC Empire",
category: "Pokemon",
hp: 100,
types: ["Darkness"],
description: {
'zh-tw': "會偷偷在看中的獵物身上留下標記,追蹤目標的氣味,在對方放鬆警戒時偷盜。",
ja: "狙った 獲物は こっそり マーキング。 においを 辿って 油断 したころ 盗みに 来るぞ。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "五里霧中",
ja: "けむにまく"
},
effect: {
'zh-tw': "若對手剩餘獎賞卡的張數為2張以下則生效。只要這隻寶可夢在場上對手從手牌使出支援者時自己的備戰區的所有「寶可夢【V】」不會受到其效果的影響。",
ja: "相手のサイドの残り枚数が2枚以下なら、はたらく。このポケモンがいるかぎり、自分のベンチの「ポケモンV」全員は、相手が手札からサポートを出して使ったとき、その効果を受けない。"
}
}],
attacks: [{
name: {
'zh-tw': "銳利之牙",
ja: "するどいキバ"
},
damage: 110,
cost: ["Darkness", "Darkness", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
dexId: [828]
}
export default card