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

63 lines
1.9 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 "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ホイーガ",
'zh-tw': "車輪毬",
th: "วีกา"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Krgc",
dexId: [544],
hp: 100,
types: ["Darkness"],
description: {
ja: "高速で 回転し 相手に 突撃。 最高時速は およそ 100キロに 達する。",
'zh-tw': "會高速旋轉去突擊對手。 牠的最高時速可以達到 大約100公里。",
th: "หมุนตัวด้วยความเร็วสูงเข้าจู่โจมคู่ต่อสู้ ความเร็วสูงสุดอยู่ที่ประมาณ 100 กิโลเมตรต่อชั่วโมง"
},
stage: "Stage1",
attacks: [{
cost: ["Darkness"],
name: {
ja: "ポイズンサークル",
'zh-tw': "毒陣",
th: "พอยซันเซอร์เคิล"
},
effect: {
ja: "相手のバトルポケモンをどくにする。次の相手の番、このワザを受けたポケモンは、にげられない。",
'zh-tw': "將對手的戰鬥寶可夢【中毒】。在下個對手的回合,受到這個招式的寶可夢無法撤退。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[พิษ] เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะหนีไม่ได้"
}
}, {
cost: ["Darkness", "Colorless", "Colorless"],
name: {
ja: "かいてんアタック",
'zh-tw': "迴轉攻擊",
th: "โจมตีหมุนวน"
},
damage: 60
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card