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

44
data-asia/S/S8b/087.ts Normal file
View File

@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../S8b"
const card: Card = {
set: Set,
name: {
'zh-tw': "鬃岩狼人"
},
illustrator: "Teeziro",
category: "Pokemon",
hp: 120,
types: ["Fighting"],
description: {
'zh-tw': "不集結成群,而是單獨生活。只會聽命於能夠引出 自己力量的訓練家。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "惡棍獠牙"
},
effect: {
'zh-tw': "增加自己的棄牌區的「一擊」寶可夢的張數×10點傷害。"
},
damage: "80+",
cost: ["Fighting", "Fighting"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card