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

53 lines
795 B
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 "../SC2D"
const card: Card = {
set: Set,
name: {
'zh-tw': "美納斯"
},
illustrator: "AKIRA EGAWA",
category: "Pokemon",
hp: 120,
types: ["Water"],
description: {
'zh-tw': "也被稱為是最美的寶可夢。一直以來為無數的藝術家提供了靈感。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "光明治癒"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。將自己的所有寶可夢各恢復「20」HP。"
}
}],
attacks: [{
name: {
'zh-tw': "衝浪"
},
damage: 80,
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card