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

68 lines
1.7 KiB
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 "../SV7"
const card: Card = {
set: Set,
name: {
'zh-tw': "美錄梅塔",
'zh-cn': "美錄梅塔",
ja: "メルメタル"
},
illustrator: "Takumi Wada",
category: "Pokemon",
hp: 160,
types: ["Metal"],
description: {
'zh-tw': "壽命快到盡頭的時候, 身體就會生鏽解體。到最後 細小的碎片會復活為美錄坦。",
'zh-cn': "壽命快到盡頭的時候, 身體就會生鏽解體。到最後 細小的碎片會復活為美錄坦。",
ja: "寿命が 尽きると 体が 錆びて 崩れる。 やがて 小さな 破片が メルタンに 復活する。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "砸碎",
'zh-cn': "砸碎",
ja: "たたきつぶす"
},
damage: 50,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "重塑斧",
'zh-cn': "重塑斧",
ja: "リモデルアックス"
},
effect: {
'zh-tw': "在造成傷害前,將這隻寶可夢身上附加的「寶可夢道具」卡丟棄。若無法丟棄,則這個招式失敗。",
'zh-cn': "在造成傷害前,將這隻寶可夢身上附加的「寶可夢道具」卡丟棄。若無法丟棄,則這個招式失敗。",
ja: "ダメージを与える前に、このポケモンについている「ポケモンのどうぐ」をトラッシュする。トラッシュできないなら、このワザは失敗。"
},
damage: 250,
cost: ["Metal", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "30"
}],
retreat: 3,
regulationMark: "H",
rarity: "Uncommon",
dexId: [809]
}
export default card