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

56 lines
889 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 "../Sc1a"
const card: Card = {
set: Set,
name: {
'zh-tw': "青銅鐘"
},
illustrator: "MAHOU",
category: "Pokemon",
hp: 130,
types: ["Metal"],
description: {
'zh-tw': "被稱為能召喚雨雲的神明。生氣時會用像鐘聲一般令人毛骨悚然的聲音來威嚇對手。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "掌擊"
},
damage: 30,
cost: ["Metal"]
}, {
name: {
'zh-tw': "陀螺球"
},
effect: {
'zh-tw': "將這隻寶可夢與備戰寶可夢互換。然後,對手將對手自己的戰鬥寶可夢與備戰寶可夢互換。"
},
damage: 70,
cost: ["Metal", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 3,
regulationMark: "D"
}
export default card