1
0
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:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

70
data-asia/SV/SV2D/043.ts Normal file
View 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