1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +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

65
data-asia/SV/SV4K/036.ts Normal file
View File

@ -0,0 +1,65 @@
import { Card } from "../../../interfaces"
import Set from "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "オトスパス",
'zh-tw': "八爪武師",
th: "โอโทสพัส"
},
illustrator: "Sanosuke Sakuma",
rarity: "Uncommon",
category: "Pokemon",
dexId: [853],
hp: 120,
types: ["Fighting"],
description: {
ja: "おのれの腕を 試すべく 陸に 上がり 対戦相手を 探す。 戦い終えると 海に 帰る。",
'zh-tw': "會為了試自己的身手而登上陸地尋找對手。 戰鬥結束後就會回到海裡。",
th: "ขึ้นบนบกเพื่อหาคู่ต่อสู้พิสูจน์ฝีมือของตน เมื่อต่อสู้เสร็จก็จะกลับลงทะเล"
},
stage: "Stage1",
attacks: [{
cost: ["Fighting"],
name: {
ja: "じわじわおとす",
'zh-tw': "緩緩殞落",
th: "ค่อย ๆ ล้ม"
},
damage: 30,
effect: {
ja: "次の相手の番の終わりに、このワザを受けたポケモンはきぜつする。",
'zh-tw': "在下個對手的回合結束時,受到這個招式的寶可夢會【昏厥】。",
th: "เมื่อจบเทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้จะ[หมดสภาพ]"
}
}, {
cost: ["Fighting", "Fighting", "Colorless"],
name: {
ja: "マッハストレート",
'zh-tw': "音速直擊",
th: "มัคสเตรท"
},
damage: 120
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card