mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
55
data-asia/SV/SV4M/035.ts
Normal file
55
data-asia/SV/SV4M/035.ts
Normal file
@ -0,0 +1,55 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV4M"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "カヌチャン",
|
||||
'zh-tw': "小鍛匠",
|
||||
th: "คานุจัง"
|
||||
},
|
||||
|
||||
illustrator: "Oswaldo KATO",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
dexId: [957],
|
||||
hp: 70,
|
||||
types: ["Psychic"],
|
||||
|
||||
description: {
|
||||
ja: "鉄くずを 叩いて ハンマーを 作る。 納得がいく ものが できるまで 何度も 作り直す。",
|
||||
'zh-tw': "敲打鐵屑來製作錘子。直到做出自己滿意的作品前,會一次又一次地重做。",
|
||||
th: "นำเศษเหล็กไปตีเป็นค้อน จะสร้างขึ้นใหม่เรื่อย ๆ จนกว่าจะได้ผลลัพธ์ที่พอใจ"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
ja: "そこぢから",
|
||||
'zh-tw': "潛力",
|
||||
th: "พลังแฝง"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
|
||||
effect: {
|
||||
ja: "次の自分の番、このポケモンはワザが使えない。",
|
||||
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。",
|
||||
th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user