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/SC1a/069.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../Sc1a"
const card: Card = {
set: Set,
name: {
'zh-tw': "超甲狂犀"
},
illustrator: "Satoshi Shirai",
category: "Pokemon",
hp: 190,
types: ["Fighting"],
description: {
'zh-tw': "會在手掌的洞裡塞進岩石和石丸子發射出去,每隻手裡可以裝填3個。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "巨岩墜落"
},
effect: {
'zh-tw': "這個招式的傷害不計算抵抗力。"
},
damage: 90,
cost: ["Fighting", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "岩盤震動"
},
effect: {
'zh-tw': "雙方的所有身上放置有傷害指示物的備戰寶可夢也各受到60點傷害。[在備戰區不計算弱點・抵抗力。]"
},
damage: 120,
cost: ["Fighting", "Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 4,
regulationMark: "D"
}
export default card