1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

54 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ジオヅム",
'zh-tw': "鹽石壘",
id: "Naclstack"
},
illustrator: "otumami",
category: "Pokemon",
dexId: [933],
hp: 100,
types: ["Fighting"],
description: {
ja: "塩を 噴き出して 獲物に 浴びせ 塩漬けにしてしまう。 体内の 水分を 奪ってしまうのだ。",
'zh-tw': "會將鹽噴向獵物,將其做成醃漬物。獵物體內的水分 會在醃漬過程中被奪走。",
id: "Naclstack menyemburkan garam dan menggaramkan mangsanya. Garam tersebut membuat lawan menderita dengan cara merenggut cairan dalam tubuhnya."
},
stage: "Stage1",
attacks: [{
cost: ["Fighting", "Fighting"],
name: {
ja: "しおキャノン",
'zh-tw': "鹽加農炮",
id: "Meriam Garam"
},
damage: "60×",
effect: {
ja: "コインを3回投げ、オモテの数×60ダメージ。",
'zh-tw': "擲3次硬幣造成正面出現的次數×60點傷害。",
id: "Lempar koin 3 kali. Serangan ini memberikan kerusakan sejumlah 60 untuk tiap lemparan dengan hasil sisi depan."
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card