mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
56 lines
836 B
TypeScript
56 lines
836 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S7D"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "大王銅象"
|
||
},
|
||
|
||
illustrator: "KEIICHIRO ITO",
|
||
category: "Pokemon",
|
||
hp: 190,
|
||
types: ["Metal"],
|
||
|
||
description: {
|
||
'zh-tw': "群居的寶可夢。鼻子的握力十分強勁,甚至能把大石頭弄得粉碎。"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "怪力"
|
||
},
|
||
|
||
damage: 90,
|
||
cost: ["Metal", "Colorless", "Colorless"]
|
||
}, {
|
||
name: {
|
||
'zh-tw': "十萬馬力"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "這隻寶可夢也受到30點傷害。"
|
||
},
|
||
|
||
damage: 160,
|
||
cost: ["Metal", "Colorless", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Grass",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 4,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |