1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 11:09: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

56
data-asia/S/SC1b/098.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SC1b"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 堵攔熊"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 160,
types: ["Darkness"],
description: {
'zh-tw': "能夠發出驚人的音量。牠在大叫的同時威嚇對手的樣子被稱為「攔堵」。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "暴躁嚎叫"
},
effect: {
'zh-tw': "在自己的回合當從手牌使出這張卡並完成進化時可使用1次。在對手的1隻寶可夢身上放置3個傷害指示物。"
}
}],
attacks: [{
name: {
'zh-tw': "攔堵"
},
effect: {
'zh-tw': "在下個對手的回合,這隻寶可夢不會受到【基礎】寶可夢招式的傷害。"
},
damage: 90,
cost: ["Darkness", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card