mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
62
data-asia/SV/SV4a/283.ts
Normal file
62
data-asia/SV/SV4a/283.ts
Normal file
@ -0,0 +1,62 @@
|
||||
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
|
Reference in New Issue
Block a user