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

50
data-asia/S/S8b/107.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../S8b"
const card: Card = {
set: Set,
name: {
'zh-tw': "花岩怪"
},
illustrator: "Shibuzoh.",
category: "Pokemon",
hp: 70,
types: ["Darkness"],
description: {
'zh-tw': "因為500年前作惡多端,導致身體被綁縛在楔石的裂縫裡。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "亡者呐喊"
},
effect: {
'zh-tw': "將與對手棄牌區的寶可夢卡張數相同數量的傷害指示物,以任意方式放置在對手的寶可夢身上。然後,將對手棄牌區的寶可夢卡全部放回對手的牌庫並重洗。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "鬼火"
},
damage: 20,
cost: ["Darkness"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card