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

49 lines
742 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 "../S11"
const card: Card = {
set: Set,
name: {
'zh-tw': "金屬怪"
},
illustrator: "Shin Nagasawa",
category: "Pokemon",
hp: 100,
types: ["Metal"],
description: {
'zh-tw': "由2隻鐵啞鈴以磁力結合而成。因為有2個大腦, 精神力量也強化成2倍了。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "子彈拳"
},
effect: {
'zh-tw': "擲2次硬幣增加正面出現的次數×30點傷害。"
},
damage: "30+",
cost: ["Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "F"
}
export default card