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

43 lines
833 B
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 "../S8"
const card: Card = {
set: Set,
name: {
'zh-tw': "寶石海星"
},
illustrator: "Uta",
category: "Pokemon",
hp: 90,
types: ["Water"],
description: {
'zh-tw': "會轉動像幾何圖形般的身體在水中游動。似乎一直在發射神秘的電波。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "連彈星星"
},
effect: {
'zh-tw': "將這隻寶可夢身上附加的任意數量的【水】能量卡丟棄以其張數選擇對手的寶可夢1隻可選擇2次以上。然後對所選的所有寶可夢不計算弱點・抵抗力造成其選擇次數×30點傷害。"
},
cost: ["Water"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card