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

60
data-asia/S/S5a/015.ts Normal file
View File

@ -0,0 +1,60 @@
import { Card } from "../../../interfaces"
import Set from "../S5a"
const card: Card = {
set: Set,
name: {
'zh-tw': "巨牙鯊",
th: "ซาเมฮาเดอร์"
},
illustrator: "Kazuma Koda",
category: "Pokemon",
hp: 120,
types: ["Water"],
description: {
'zh-tw': "會將吞下的海水從臀部的孔中噴出,藉此來游動。對血的氣味非常敏感。",
th: "ว่ายน้ำด้วยการพ่นน้ำทะเลที่กลืนเข้าไปออกมาทางก้น มีความรู้สึกไวต่อกลิ่นเลือด"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "挑釁",
th: "ยั่วยุ"
},
effect: {
'zh-tw': "選擇1隻對手的備戰寶可夢與戰鬥寶可夢互換。",
th: "เลือกโปเกมอนบนเบนช์ฝ่ายตรงข้าม 1 ตัว แล้วสลับกับโปเกมอนบนตำแหน่งต่อสู้"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "噴射啃咬",
th: "เจ็ตไบต์"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。",
th: "ในเทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้"
},
damage: 120,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card