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

58 lines
1020 B
TypeScript
Raw 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 "../SC2b"
const card: Card = {
set: Set,
name: {
'zh-tw': "波士可多拉"
},
illustrator: "Hasuno",
category: "Pokemon",
hp: 160,
types: ["Metal"],
description: {
'zh-tw': "如果因土石流或山林火災導致山變得荒蕪,牠就會不斷運來土壤,種上樹苗,把自己的地盤打掃得漂漂亮亮。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "結實"
},
effect: {
'zh-tw': "這隻寶可夢的HP是全滿的狀態下這隻寶可夢受到招式的傷害而【氣絕】時這隻寶可夢不會【氣絕】而是以剩餘HP為「10」的狀態留在場上。"
}
}],
attacks: [{
name: {
'zh-tw': "億萬噸重壓"
},
damage: 160,
cost: ["Metal", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 3,
regulationMark: "D"
}
export default card