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

55
data-asia/S/SC1D/012.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SC1D"
const card: Card = {
set: Set,
name: {
'zh-tw': "轟擂金剛猩"
},
illustrator: "Shin Nagasawa",
category: "Pokemon",
hp: 190,
types: ["Grass"],
description: {
'zh-tw': "能夠透過打鼓來控制特別的樹樁中的力量,操縱樹根進行戰鬥。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "奏響"
},
effect: {
'zh-tw': "對手的所有備戰寶可夢也各受到10點傷害。[在備戰區不計算弱點・抵抗力。]"
},
damage: 90,
cost: ["Grass", "Grass", "Colorless"]
}, {
name: {
'zh-tw': "轟鑼攻擊"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「轟鑼攻擊」。"
},
damage: 180,
cost: ["Grass", "Grass", "Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 4,
regulationMark: "D"
}
export default card