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

44
data-asia/S/S7R/035.ts Normal file
View File

@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../S7R"
const card: Card = {
set: Set,
name: {
'zh-tw': "穿山王"
},
illustrator: "Kyoko Umemoto",
category: "Pokemon",
hp: 120,
types: ["Fighting"],
description: {
'zh-tw': "擅長用厚實的爪子來爬樹。也有許多穿山王會直接把樹上當成睡覺的地方。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "挖出攻擊"
},
effect: {
'zh-tw': "從自己的棄牌區任意選擇1張卡在給對手看過後加入手牌。"
},
damage: 60,
cost: ["Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card