1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

70 lines
2.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV2P"
const card: Card = {
set: Set,
name: {
ja: "ノココッチ",
'zh-tw': "土龍節節",
th: "โนโกก็อจจิ",
id: "Dudunsparce"
},
illustrator: "Mina Nakai",
rarity: "Uncommon",
category: "Pokemon",
dexId: [982],
hp: 140,
types: ["Colorless"],
description: {
ja: "硬い 尻尾で 地中 深くの 岩盤を くり抜き 巣を 作る。 巣穴は 長さ10キロに およぶ。",
'zh-tw': "會用堅硬的尾巴挖穿地下深處的岩盤來築巢。 巢穴可以長達10公里。",
th: "ขุดพื้นหินที่อยู่ลึกลงไปในดินด้วยหางสุดแข็งแล้วทำรัง โพรงมีความยาวกว่า 10 กิโลเมตร",
id: "Dudunsparce membuat sarangnya dengan melubangi batuan dasar ke dalam menggunakan ekor kerasnya. Panjang sarangnya mencapai 10 kilometer."
},
stage: "Stage1",
attacks: [{
cost: ["Colorless"],
name: {
ja: "どろかけ",
'zh-tw': "擲泥",
th: "สาดโคลน",
id: "Semprotan Lumpur"
},
damage: 30
}, {
cost: ["Colorless", "Colorless", "Colorless", "Colorless"],
name: {
ja: "ほりにげフラッシュ",
'zh-tw': "挖逃閃光",
th: "ขุดหนีสายฟ้าแลบ",
id: "Kilat Gali Kabur"
},
damage: 100,
effect: {
ja: "相手のバトルポケモンをマヒにする。このポケモンと、ついているすべてのカードを、自分の山札にもどして切る。",
'zh-tw': "將對手的戰鬥寶可夢【麻痺】。將這隻寶可夢與附加的卡,全部放回自己的牌庫並重洗。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ชา] นำโปเกมอนนี้ และการ์ดทั้งหมดที่ติดอยู่ ใส่กลับไปในสำรับการ์ดฝ่ายเราแล้วสับ",
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Lumpuh. Kocok kembali Pokémon ini dan semua kartu yang dikenakannya ke Deck sendiri."
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card