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

56 lines
920 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 "../S6a"
const card: Card = {
set: Set,
name: {
'zh-tw': "美納斯"
},
illustrator: "sui",
category: "Pokemon",
hp: 120,
types: ["Water"],
description: {
'zh-tw': "據說目睹了美納斯美麗身姿的人,心中一切的憤恨都能得到撫慰。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "水滴守護"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上,對手從手牌使出支援者時,這張卡的持有人與其手牌不會受到其效果的影響。"
}
}],
attacks: [{
name: {
'zh-tw': "雙重粉碎"
},
effect: {
'zh-tw': "擲2次硬幣造成正面出現的次數×70點傷害。"
},
damage: "70×",
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card