1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

55
data-asia/S/S12/106.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "坦克臭鼬V",
ja: "スカタンクV"
},
illustrator: "Jiro Sasumo",
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