1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

69 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 "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "ディンルー",
'zh-tw': "古鼎鹿",
th: "ติ่งลู่"
},
illustrator: "AKIRA EGAWA",
rarity: "Rare",
category: "Pokemon",
dexId: [1003],
hp: 140,
types: ["Fighting"],
description: {
ja: "古の 儀式で 使われた 器に 注がれた 恐怖が 土石を まとい ポケモンとなった。",
'zh-tw': "古老儀式用的容器中注入的恐懼把土石裹在自己身上, 變成了寶可夢。",
th: "ความหวาดกลัวที่โดนเทลงในภาชนะที่ใช้ในพิธีกรรมเก่าแก่ถูกห่อหุ้มด้วยดินและหิน จนกลายเป็นโปเกมอน"
},
stage: "Basic",
attacks: [{
cost: ["Fighting"],
name: {
ja: "サンドブリング",
'zh-tw': "沙之到來",
th: "เบิกทราย"
},
effect: {
ja: "自分のトラッシュから「基本エネルギー」を2枚まで選び、自分のポケモン1匹につける。",
'zh-tw': "從自己的棄牌區選擇最多2張「基本【鬥】能量」卡附於自己的1隻寶可夢身上。",
th: "เลือกการ์ด [พลังงานพื้นฐาน[ต่อสู้]] ได้สูงสุด 2 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ติดที่โปเกมอนฝ่ายเรา 1 ตัว"
}
}, {
cost: ["Fighting", "Fighting", "Fighting"],
name: {
ja: "ごうまんインパクト",
'zh-tw': "傲慢衝擊",
th: "อวดดีพุ่งชน"
},
damage: 220,
effect: {
ja: "このポケモンにダメカンが4個以上のっているなら、このワザは失敗。",
'zh-tw': "若這隻寶可夢身上放置有4個以上的傷害指示物則這個招式失敗。",
th: "ถ้าโปเกมอนนี้มีตัวนับแดเมจวางอยู่มากกว่าหรือเท่ากับ 4 ตัว ท่าต่อสู้นี้จะล้มเหลว"
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 4,
regulationMark: "G"
}
export default card