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

56
data-asia/S/S8b/104.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../S8b"
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