1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +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

50
data-asia/S/S10P/016.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../S10P"
const card: Card = {
set: Set,
name: {
'zh-tw': "可達鴨"
},
illustrator: "GOSSAN",
category: "Pokemon",
hp: 60,
types: ["Water"],
description: {
'zh-tw': "常年為頭痛所苦。疼痛增強之時, 蘊藏於體內之力將失控爆發。 故吾人正在摸索舒緩頭痛之法。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "發呆"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則將這隻寶可夢恢復「10」HP。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "衝撞"
},
damage: 20,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "F"
}
export default card