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

60 lines
946 B
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 "../Sc1a"
const card: Card = {
set: Set,
name: {
'zh-tw': "大王銅象"
},
illustrator: "Hitoshi Ariga",
category: "Pokemon",
hp: 190,
types: ["Metal"],
description: {
'zh-tw': "綠色的皮膚非常耐水。在很久以前從其他地區過來,之後便一直與人類一起工作。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "挖掘吸取"
},
effect: {
'zh-tw': "將這隻寶可夢恢復「30」HP。"
},
damage: 60,
cost: ["Metal", "Metal"]
}, {
name: {
'zh-tw': "剛腕之鼻"
},
effect: {
'zh-tw': "若這隻寶可夢身上放置有8個以上的傷害指示物則這個招式失敗。"
},
damage: 220,
cost: ["Metal", "Metal", "Metal"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 4,
regulationMark: "D"
}
export default card