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

51 lines
784 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 "../S11a"
const card: Card = {
set: Set,
name: {
'zh-tw': "波爾凱尼恩"
},
illustrator: "Shiburingaru",
category: "Pokemon",
hp: 130,
types: ["Fire"],
description: {
'zh-tw': "從背上的手臂噴出體內的水蒸氣。有著將整座山轟飛的威力。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "頭突"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "水炮灼燒"
},
effect: {
'zh-tw': "若這隻寶可夢身上附有【水】能量則增加80點傷害。"
},
damage: "80+",
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "F"
}
export default card