mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
57 lines
900 B
TypeScript
57 lines
900 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SCB"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "青銅鐘"
|
||
},
|
||
|
||
illustrator: "Hasuno",
|
||
category: "Pokemon",
|
||
hp: 110,
|
||
types: ["Metal"],
|
||
|
||
description: {
|
||
'zh-tw': "牠身上的紋路讓許多學者認為牠原本並不存在於伽勒爾。"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
abilities: [{
|
||
type: "Ability",
|
||
|
||
name: {
|
||
'zh-tw': "金屬轉移"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "在自己的回合時,可不限次數使用。選擇1個自己的場上寶可夢身上附加的【鋼】能量,改附於自己的其他寶可夢身上。"
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "意念頭錘"
|
||
},
|
||
|
||
damage: 70,
|
||
cost: ["Metal", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Grass",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 3,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |