mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-30 03:29:51 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
51
data-asia/S/S11a/019.ts
Normal file
51
data-asia/S/S11a/019.ts
Normal file
@ -0,0 +1,51 @@
|
||||
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
|
Reference in New Issue
Block a user