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

70
data-asia/SV/SV2a/075.ts Normal file
View File

@ -0,0 +1,70 @@
import { Card } from "../../../interfaces"
import Set from "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "ゴローン",
'zh-tw': "隆隆石",
th: "โกโลน",
id: "Graveler"
},
illustrator: "Uta",
rarity: "Uncommon",
category: "Pokemon",
dexId: [75],
hp: 110,
types: ["Fighting"],
description: {
ja: "崖を 転がり 移動する。 間違えて 川に 落ちると 最期の あがきで 大爆発。",
'zh-tw': "藉著從山崖上滾落來移動。 如果不小心掉進河裡, 就會在最後掙扎時來個大爆炸。",
th: "เคลื่อนที่โดยกลิ้งไปตามผา พอพลาดตกลงแม่น้ำแล้ว ก็จะดิ้นรนจนหยดสุดท้ายแล้วระเบิดตัว",
id: "Graveler bergerak dengan cara menggelindingkan diri di tebing. Jika salah gerak dan jatuh ke sungai, Pokémon ini meledak sebagai usaha terakhirnya."
},
stage: "Stage1",
attacks: [{
cost: ["Fighting"],
name: {
ja: "れんぞくいわなげ",
'zh-tw': "連續投石",
th: "ปาหินต่อเนื่อง",
id: "Lempar Batu Beruntun"
},
damage: "40×",
effect: {
ja: "ウラが出るまでコインを投げ、オモテの数×40ダメージ。",
'zh-tw': "擲硬幣直到出現反面造成正面出現的次數×40點傷害。",
th: "ทอยเหรียญจนกว่าจะออกก้อย แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x40",
id: "Lempar koin hingga hasilnya sisi belakang. Serangan ini memberikan kerusakan sejumlah 40 untuk tiap lemparan dengan hasil sisi depan."
}
}, {
cost: ["Fighting", "Colorless", "Colorless"],
name: {
ja: "ヘビーインパクト",
'zh-tw': "重磅衝擊",
th: "เฮวี่อิมแพ็คท์",
id: "Heavy Impact"
},
damage: 60
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card