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

55 lines
876 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 "../SI"
const card: Card = {
set: Set,
name: {
'zh-tw': "波士可多拉"
},
illustrator: "Teeziro",
category: "Pokemon",
hp: 180,
types: ["Metal"],
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "防守壓制"
},
effect: {
'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「-30」點。"
},
damage: 100,
cost: ["Metal", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "劈地球"
},
effect: {
'zh-tw': "自己的所有寶可夢也各受到30點傷害。[在備戰區不計算弱點・抵抗力。]"
},
damage: 240,
cost: ["Metal", "Metal", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 4,
regulationMark: "E"
}
export default card