1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59: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

49
data-asia/S/S8b/095.ts Normal file
View File

@ -0,0 +1,49 @@
import { Card } from "../../../interfaces"
import Set from "../S8b"
const card: Card = {
set: Set,
name: {
'zh-tw': "連擊武道熊師VMAX"
},
illustrator: "PLANETA Tsuji",
category: "Pokemon",
hp: 330,
types: ["Fighting"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "疾風直撞"
},
effect: {
'zh-tw': "在這個回合若從備戰區將這隻寶可夢放置於戰鬥場則增加120點傷害。"
},
damage: "30+",
cost: ["Fighting"]
}, {
name: {
'zh-tw': "超極巨流水連擊"
},
effect: {
'zh-tw': "將這隻寶可夢身上附加的能量全部丟棄對手的2隻寶可夢各受到120點傷害。[在備戰區不計算弱點・抵抗力。]"
},
cost: ["Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card