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

63 lines
2.1 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 "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "龍王蠍V",
th: "โดราเปียนV",
ja: "ドラピオンV"
},
illustrator: "N-DESIGN Inc.",
category: "Pokemon",
hp: 210,
types: ["Darkness"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "狂野風格",
th: "ไวลด์สไตล์",
ja: "ワイルドスタイル"
},
effect: {
'zh-tw': "這隻寶可夢使用招式所需的【無】能量,減少對手的場上「一擊」「連擊」「匯流」寶可夢的數量。",
th: "พลังงาน[ไร้สี]ที่จำเป็นสำหรับใช้ท่าต่อสู้ของโปเกมอนนี้จะลดลง ตามจำนวนโปเกมอน [จู่โจมครั้งเดียว] [จู่โจมต่อเนื่อง] [จู่โจมแบบฟิวชัน] บนกระดานฝ่ายตรงข้าม",
ja: "相手の場の「いちげき」「れんげき」「フュージョン」のポケモンの数ぶん、このポケモンがワザを使うためのエネルギーは少なくなる。"
}
}],
attacks: [{
name: {
'zh-tw': "極限之尾",
th: "ไดนามิกเทล",
ja: "ダイナミックテール"
},
effect: {
'zh-tw': "自己的1隻寶可夢也受到60點傷害。[在備戰區不計算弱點・抵抗力。]",
th: "โปเกมอนฝ่ายเรา 1 ตัว ก็จะได้รับแดเมจ 60 ด้วย {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}",
ja: "自分のポケモン1匹にも、60ダメージ。ベンチは弱点・抵抗力を計算しない。"
},
damage: 190,
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "F",
rarity: "Double rare"
}
export default card