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:
70
data-asia/SV/SV2D/043.ts
Normal file
70
data-asia/SV/SV2D/043.ts
Normal file
@ -0,0 +1,70 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV2D"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ケケンカニ",
|
||||
'zh-tw': "好勝毛蟹",
|
||||
th: "เคเค็นคานิ",
|
||||
id: "Crabominable"
|
||||
},
|
||||
|
||||
illustrator: "Misa Tsutsui",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
dexId: [740],
|
||||
hp: 160,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
ja: "もげた ハサミは とても 美味しい。 わざわざ 山に グルトンを 連れて 探しにくる トレーナーも いるぞ。",
|
||||
'zh-tw': "脫落的鉗子十分美味。還有些訓練家會特地 帶著愛吃豚到山裡找牠。",
|
||||
th: "ก้ามที่หลุดออกมาอร่อยมาก ถึงขนาดมีเทรนเนอร์พากูร์ตงไปตามหาในป่า",
|
||||
id: "Capit Crabominable yang patah sangat lezat. Bahkan sampai ada pelatih yang membawa Lechonk ke gunung untuk mencari Pokémon ini."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "がちんこ",
|
||||
'zh-tw': "正面對決",
|
||||
th: "ตั้งใจสู้",
|
||||
id: "Menentang"
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}, {
|
||||
cost: ["Fighting", "Fighting", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "ナックルインパクト",
|
||||
'zh-tw': "關節衝擊",
|
||||
th: "นัคเคิลอิมแพ็ค",
|
||||
id: "Knuckle Impact"
|
||||
},
|
||||
|
||||
damage: 170,
|
||||
|
||||
effect: {
|
||||
ja: "次の自分の番、このポケモンはワザが使えない。",
|
||||
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。",
|
||||
th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้",
|
||||
id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Psychic",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 4,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user