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

58 lines
2.3 KiB
TypeScript
Raw Permalink 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 "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "雷吉鐸拉戈",
th: "เรจิดราโก",
ja: "レジドラゴ"
},
illustrator: "DOM",
category: "Pokemon",
hp: 130,
types: ["Dragon"],
description: {
'zh-tw': "有學者認為牠的手臂是古代龍寶可夢頭部的形狀。 但這個學說尚未被證實。",
th: "มีบางทฤษฎีกล่าวว่ารูปร่างของแขนนั้นคือส่วนหัวของโปเกมอนมังกรในดึกดำบรรพ์ แต่ก็ยังไม่ได้รับการยืนยัน",
ja: "腕の 形は 古代の ドラゴン ポケモンの 頭という 学説も あるが 証明されていない。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "龍之秘寶",
th: "สมบัติลับของมังกร",
ja: "りゅうのひほう"
},
effect: {
'zh-tw': "若這隻寶可夢在戰鬥場上則在自己的回合時可使用1次。從牌庫抽卡直到自己的手牌滿4張為止。在這個回合若已經使出了其他的「龍之秘寶」則這個特性無法使用。",
th: "ถ้าโปเกมอนนี้อยู่บนตำแหน่งต่อสู้ ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา จั่วการ์ดจากสำรับการ์ด จนได้การ์ดบนมือฝ่ายเราเป็น 4 ใบ เทิร์นนี้ ถ้าใช้ [สมบัติลับของมังกร] ใบอื่นไปแล้ว จะใช้ความสามารถนี้ไม่ได้",
ja: "このポケモンがバトル場にいるなら、自分の番に1回使える。自分の手札が4枚になるように、山札を引く。この番、すでに別の「りゅうのひほう」を使っていたなら、この特性は使えない。"
}
}],
attacks: [{
name: {
'zh-tw': "巨大之牙",
th: "เขี้ยวมหึมา",
ja: "きょだいなキバ"
},
damage: 160,
cost: ["Grass", "Fire", "Colorless"]
}],
retreat: 3,
regulationMark: "F",
dexId: [895]
}
export default card