1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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/SC1D/100.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SC1D"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 蛇紋熊"
},
illustrator: "kirisAki",
category: "Pokemon",
hp: 70,
types: ["Darkness"],
description: {
'zh-tw': "一直在奔跑,永遠靜不下來。如果發現了其他的寶可夢,就會故意撞上去挑起事端。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "煩躁頭擊"
},
effect: {
'zh-tw': "在自己的回合當從手牌將這張卡放置於備戰區時可使用1次。在對手的1隻寶可夢身上放置1個傷害指示物。"
}
}],
attacks: [{
name: {
'zh-tw': "偷襲"
},
effect: {
'zh-tw': "擲1次硬幣若為反面則這個招式失敗。"
},
damage: 30,
cost: ["Darkness", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card