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

feat: Update asian sets (#554)

This commit is contained in:
2024-11-05 23:46:04 +01:00
committed by GitHub
parent 64bcd0524d
commit c1d83caca0
546 changed files with 26414 additions and 0 deletions

63
data-asia/SV/SV7a/033.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV7a"
const card: Card = {
set: Set,
name: {
'zh-tw': "八爪武師",
'zh-cn': "八爪武師",
ja: "オトスパス"
},
illustrator: "KEIICHIRO ITO",
category: "Pokemon",
hp: 140,
types: ["Fighting"],
description: {
'zh-tw': "全身都是肌肉。 會用觸手施展絞技, 威力無與倫比。",
'zh-cn': "全身都是肌肉。 會用觸手施展絞技, 威力無與倫比。",
ja: "全身が 筋肉の 塊。 触手を 使って 繰りだす 絞め技の 威力は 凄まじい。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "劈打",
'zh-cn': "劈打",
ja: "チョップ"
},
damage: 40,
cost: ["Fighting"]
}, {
name: {
'zh-tw': "觸手激怒",
'zh-cn': "觸手激怒",
ja: "テンタクルレイジ"
},
effect: {
'zh-tw': "若這隻寶可夢身上放置有傷害指示物則這個招式只需要1個【鬥】能量即可使用。",
'zh-cn': "若這隻寶可夢身上放置有傷害指示物則這個招式只需要1個【鬥】能量即可使用。",
ja: "このワザは、このポケモンにダメカンがのっているなら、エネルギー1個で使える。"
},
damage: 130,
cost: ["Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 3,
regulationMark: "H",
rarity: "Common",
dexId: [853]
}
export default card