mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
46 lines
634 B
TypeScript
46 lines
634 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SC2b"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "銅象"
|
||
},
|
||
|
||
illustrator: "Akira Komayama",
|
||
category: "Pokemon",
|
||
hp: 100,
|
||
types: ["Metal"],
|
||
|
||
description: {
|
||
'zh-tw': "能輕鬆舉起重達5噸的貨物的大力士寶可夢。會用鼻子挖地。"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "怪力"
|
||
},
|
||
|
||
damage: 60,
|
||
cost: ["Metal", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Grass",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 3,
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|