1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49: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/SV/SV4K/039.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "ジオヅム",
'zh-tw': "鹽石壘",
th: "จีโอซึมู"
},
illustrator: "KEIICHIRO ITO",
rarity: "Common",
category: "Pokemon",
dexId: [933],
hp: 100,
types: ["Fighting"],
description: {
ja: "塩を 噴き出して 獲物に 浴びせ 塩漬けにしてしまう。 体内の 水分を 奪ってしまうのだ。",
'zh-tw': "會將鹽噴向獵物,將其做成醃漬物。獵物體內的水分 會在醃漬過程中被奪走。",
th: "พ่นเกลือใส่เหยื่อเพื่อหมักอีกฝ่ายด้วยเกลือ ช่วงชิงน้ำภายในร่างกายของอีกฝ่ายไป"
},
stage: "Stage1",
attacks: [{
cost: ["Fighting", "Fighting"],
name: {
ja: "がんせきタックル",
'zh-tw': "巨岩衝撞",
th: "ร็อกแท็กเกิล"
},
damage: 80,
effect: {
ja: "このポケモンにも30ダメージ。",
'zh-tw': "這隻寶可夢也受到30點傷害。",
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 30 ด้วย"
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card