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:
68
data-asia/SV/SV2P/056.ts
Normal file
68
data-asia/SV/SV2P/056.ts
Normal file
@ -0,0 +1,68 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV2P"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ノコッチ",
|
||||
'zh-tw': "土龍弟弟",
|
||||
th: "โนก็อจจิ",
|
||||
id: "Dunsparce"
|
||||
},
|
||||
|
||||
illustrator: "Nagomi Nijo",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
dexId: [206],
|
||||
hp: 70,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
ja: "暗い場所に 迷路を 作る。 だれかに みられると 尻尾で 地面を 掘って 逃げようとする。",
|
||||
'zh-tw': "會在陰暗處做出迷宮。只要被誰看見就會 用尾巴挖掘地面逃走。",
|
||||
th: "สร้างทางวงกตในที่มืด พอมีคนเจอก็จะใช้หางขุดมุดดินหนี",
|
||||
id: "Dunsparce membuat labirin di tempat gelap. Jika ada yang melihatnya, Pokémon ini akan melarikan diri dengan menggali lubang menggunakan ekornya."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "ともだちをさがす",
|
||||
'zh-tw': "尋找朋友",
|
||||
th: "หาพรรคพวก",
|
||||
id: "Mencari Teman"
|
||||
},
|
||||
|
||||
effect: {
|
||||
ja: "自分の山札からポケモンを1枚選び、相手に見せて、手札に加える。そして山札を切る。",
|
||||
'zh-tw': "從自己的牌庫選擇1張寶可夢卡,在給對手看過後加入手牌。並且重洗牌庫。",
|
||||
th: "เลือกการ์ดโปเกมอน 1 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด",
|
||||
id: "Pilih 1 lembar Pokémon dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck."
|
||||
}
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "かみつく",
|
||||
'zh-tw': "咬住",
|
||||
th: "กัดติด",
|
||||
id: "Menggigit"
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user