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

71 lines
2.4 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': "雷吉奇卡斯VSTAR",
th: "เรจิกิกัสVSTAR",
ja: "レジギガスVSTAR"
},
illustrator: "PLANETA Mochizuki",
category: "Pokemon",
hp: 300,
types: ["Colorless"],
stage: "VMAX",
abilities: [{
type: "Ability",
name: {
'zh-tw': "星星守護者",
th: "สตาร์การ์เดียน"
},
effect: {
'zh-tw': "若對手剩餘獎賞卡的張數為1張則在自己的回合時可使用。選擇對手的1隻備戰寶可夢將那隻寶可夢與附加的卡全部丟棄。[對戰中己方只可使用1次【VSTAR】力量。]",
th: "ถ้าจำนวนการ์ดรางวัลที่เหลือของฝ่ายตรงข้ามเป็น 1 ใบ ใช้ได้ในเทิร์นฝ่ายเรา เลือกโปเกมอนบนเบนช์ฝ่ายตรงข้าม 1 ตัว ทิ้งโปเกมอนนั้นและการ์ดทั้งหมดที่ติดอยู่ที่ตำแหน่งทิ้งการ์ด {ในระหว่างการแบตเทิล ฝ่ายเราใช้พลัง【VSTAR】ได้ 1 ครั้งเท่านั้น}"
}
}],
attacks: [{
name: {
'zh-tw': "終極衝擊",
th: "กีก้าอิมแพค",
ja: "ギガインパクト"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。",
th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้",
ja: "次の自分の番、このポケモンはワザが使えない。"
},
damage: 230,
cost: ["Colorless", "Colorless", "Colorless"]
}, {
name: {
ja: "特性"
}
}, {
name: {
ja: "スターガーディアン"
},
effect: {
ja: "相手のサイドの残り枚数が1枚なら、自分の番に使える。相手のベンチポケモンを1匹選び、そのポケモンと、ついているすべてのカードを、トラッシュする。対戦中、自分はVSTARパワーを1回しか使えない。"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 4,
regulationMark: "F"
}
export default card