1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

58 lines
1001 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 "../SV6a"
const card: Card = {
set: Set,
name: {
'zh-tw': "大王銅象"
},
illustrator: "kawayoo",
category: "Pokemon",
hp: 200,
types: ["Metal"],
description: {
'zh-tw': "自尊心強,脾氣刁鑽。 皮膚的綠色越是鮮豔, 就越受到同伴的尊敬。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "[特性]爆大身軀"
},
effect: {
'zh-tw': "只要這隻寶可夢在戰鬥場上,對手無法從手牌使出競技場卡。"
}
}, {
name: {
'zh-tw': "鼻之金勾臂"
},
effect: {
'zh-tw': "若希望增加100點傷害。這個情況下在下個自己的回合這隻寶可夢無法使用招式。"
},
damage: "130+",
cost: ["Metal", "Metal", "Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 4,
regulationMark: "H",
rarity: "Rare"
}
export default card