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

55
data-asia/S/S5a/039.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../S5a"
const card: Card = {
set: Set,
name: {
'zh-tw': "地幔岩",
th: "กันเทิล"
},
illustrator: "otumami",
category: "Pokemon",
hp: 110,
types: ["Fighting"],
description: {
'zh-tw': "透過聲音來探測四周。要是惹牠生氣了,牠會連身體方向也不轉就朝你追來。",
th: "หยั่งรู้สภาพการณ์รอบข้างด้วยเสียง ถ้าทำให้มันโกรธ มันจะไล่กวดโดยไม่หันเปลี่ยนด้าน"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "守住",
th: "ป้องกันตัว"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則在下個對手的回合這隻寶可夢不會受到招式的傷害與效果的影響。",
th: "ทอยเหรียญ 1 ครั้ง ถ้าออกหัว ในเทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนนี้จะไม่ได้รับแดเมจและเอฟเฟกต์จากท่าต่อสู้"
},
cost: ["Fighting"]
}, {
name: {
'zh-tw': "岩石粉碎",
th: "ร็อคสแมช"
},
damage: 60,
cost: ["Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 4,
regulationMark: "E"
}
export default card