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

71 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': "洗翠 索羅亞克VSTAR",
th: "ฮิซุย โซโรอาร์คVSTAR",
ja: "ヒスイ ゾロアークVSTAR"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 270,
types: ["Colorless"],
stage: "VMAX",
abilities: [{
type: "Ability",
name: {
'zh-tw': "幻影星星",
th: "แฟนธอมสตาร์"
},
effect: {
'zh-tw': "在自己的回合時可使用。將自己的手牌全部丟棄從牌庫抽出7張卡。[對戰中己方只可使用1次【VSTAR】力量。]",
th: "ใช้ได้ในเทิร์นฝ่ายเรา ทิ้งการ์ดบนมือฝ่ายเราทั้งหมดที่ตำแหน่งทิ้งการ์ด แล้วจั่วการ์ด 7 ใบจากสำรับการ์ด {ในระหว่างการแบตเทิล ฝ่ายเราใช้พลัง【VSTAR】ได้ 1 ครั้งเท่านั้น}"
}
}],
attacks: [{
name: {
'zh-tw': "牢記詛咒",
th: "จารึกคำสาป",
ja: "のろいをきざむ"
},
effect: {
'zh-tw': "造成自己的場上身上放置有傷害指示物的寶可夢的數量×50點傷害。",
th: "แดเมจจะเท่ากับจำนวนโปเกมอนบนกระดานฝ่ายเราที่มีตัวนับแดเมจวางอยู่ x50",
ja: "自分の場のダメカンがのっているポケモンの数×50ダメージ。"
},
damage: "50×",
cost: ["Colorless", "Colorless"]
}, {
name: {
ja: "特性"
}
}, {
name: {
ja: "ファントムスター"
},
effect: {
ja: "自分の番に使える。自分の手札をすべてトラッシュし、山札を7枚引く。対戦中、自分はVSTARパワーを1回しか使えない。"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card