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

57 lines
867 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: "NC Empire",
category: "Pokemon",
hp: 150,
types: ["Metal"],
description: {
'zh-tw': "壽命快到盡頭的時候,身體就會生鏽解體。到最後細小的碎片會復活為美錄坦。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "能量連結"
},
effect: {
'zh-tw': "從自己的棄牌區選擇1張能量卡附於這隻寶可夢身上。"
},
damage: 30,
cost: ["Metal"]
}, {
name: {
'zh-tw': "重磅衝擊"
},
damage: 130,
cost: ["Metal", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 4,
regulationMark: "D"
}
export default card