1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +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

52
data-asia/S/S6H/045.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../S6H"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 呆呆王"
},
illustrator: "Naoki Saito",
category: "Pokemon",
hp: 120,
types: ["Darkness"],
description: {
'zh-tw': "會一邊吟唱詭怪的咒語,一邊混合吃進的東西和體內的毒素來製造可疑的藥。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "秘密藥"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。選擇自己的1隻寶可夢擲1次硬幣。若為正面則將那隻寶可夢恢復「90」HP。若為反面則在那隻寶可夢身上放置3個傷害指示物。"
}
}],
attacks: [{
name: {
'zh-tw': "噴汁"
},
damage: 90,
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "E"
}
export default card