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

61 lines
957 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 "../S4a"
const card: Card = {
set: Set,
name: {
'zh-tw': "大王銅象"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 190,
types: ["Metal"],
description: {
'zh-tw': "綠色的皮膚非常耐水。在很久以前從其他地區過來,之後便一直與人類一起工作。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "抗菌皮膚"
},
effect: {
'zh-tw': "這隻寶可夢不會陷入特殊狀態。"
}
}],
attacks: [{
name: {
'zh-tw': "復仇踩踏"
},
effect: {
'zh-tw': "若自己的備戰寶可夢身上放置有傷害指示物則增加120點傷害。"
},
damage: "120+",
cost: ["Metal", "Metal", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 4,
regulationMark: "D"
}
export default card