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

61 lines
967 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 "../SCA"
const card: Card = {
set: Set,
name: {
'zh-tw': "巨金怪"
},
illustrator: "kawayoo",
category: "Pokemon",
hp: 170,
types: ["Metal"],
description: {
'zh-tw': "用4隻爪子和龐大的身體牢牢地按住獵物後,用腹部的牙齒嚼食。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "飄浮磁場"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上,自己的所有寶可夢【撤退】所需的能量全部消除。"
}
}],
attacks: [{
name: {
'zh-tw': "足震"
},
effect: {
'zh-tw': "在下個對手的回合,受到這個招式的進化寶可夢無法使用招式。"
},
damage: 100,
cost: ["Metal", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 3,
regulationMark: "D"
}
export default card