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

55 lines
1.3 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 "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "坦克臭鼬V",
ja: "スカタンクV"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 210,
types: ["Darkness"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "追打炸彈",
ja: "おいうちボム"
},
effect: {
'zh-tw': "對手的1隻備戰寶可夢受到30點傷害。在上個對手的回合若那隻寶可夢從戰鬥場撤退則這個招式的傷害改為「120」點。[在備戰區不計算弱點・抵抗力。]",
ja: "相手のベンチポケモン1匹に、30ダメージ。前の相手の番に、そのポケモンがバトル場からにげていたなら、このワザのダメージは「120」になる。ベンチは弱点・抵抗力を計算しない。"
},
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "絕境猛毒",
ja: "ぜっきょうポイズン"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】與【混亂】。",
ja: "相手のバトルポケモンをどくとこんらんにする。"
},
damage: 90,
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card