1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

62 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: "Nacli"
},
illustrator: "Yuu Nishida",
category: "Pokemon",
dexId: [932],
hp: 70,
types: ["Fighting"],
description: {
ja: "地底の 岩塩層で 生まれた。 貴重な 塩を 分けてくれるため 昔は とくに 大事にされた。",
'zh-tw': "出生在地底的岩鹽層。會願意分享貴重的鹽巴, 因此在過去更是受到重視。",
id: "Nacli terlahir di kubah garam di dasar tanah. Karena ia membagikan garam yang begitu berharga, Pokémon ini dijaga dengan baik pada zaman dahulu."
},
stage: "Basic",
attacks: [{
cost: ["Fighting"],
name: {
ja: "しおぬり",
'zh-tw': "抹鹽",
id: "Oles Garam"
},
effect: {
ja: "自分のポケモン1匹のHPを「20」回復する。",
'zh-tw': "將自己的1隻寶可夢恢復「20」HP。",
id: "Pulihkan HP 1 Pokémon sendiri sejumlah 20."
}
}, {
cost: ["Fighting", "Fighting"],
name: {
ja: "たいあたり",
'zh-tw': "撞擊",
id: "Serudukan"
},
damage: 30
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card