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

55 lines
1.2 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",
ja: "グレイシアVSTAR"
},
illustrator: "Gemi",
category: "Pokemon",
hp: 260,
types: ["Water"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "冰柱射擊",
ja: "つららショット"
},
effect: {
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。",
ja: "次の相手の番、このワザを受けたポケモンは、にげられない。"
},
damage: 180,
cost: ["Water", "Water", "Colorless"]
}, {
name: {
'zh-tw': "[VSTAR力量]水晶星星",
ja: "クリスタルスター"
},
effect: {
'zh-tw': "在下個對手的回合,這隻寶可夢不會受到招式的傷害與效果的影響。[對戰中己方只可使用1次【VSTAR】力量。]",
ja: "次の相手の番、このポケモンはワザのダメージや効果を受けない。対戦中、自分はVSTARパワーを1回しか使えない。"
},
damage: 220,
cost: ["Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card