1
0
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:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

51
data-asia/S/S11a/019.ts Normal file
View 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