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

52
data-asia/S/SC2b/058.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SC2b"
const card: Card = {
set: Set,
name: {
'zh-tw': "太陽岩"
},
illustrator: "Miki Tanaka",
category: "Pokemon",
hp: 90,
types: ["Fighting"],
description: {
'zh-tw': "當牠旋轉自己的身體時,會發出太陽般的光芒,讓敵人的眼睛暫時失明。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "抵抗遮蔽"
},
effect: {
'zh-tw': "若自己的場上有「月石」,則對手的所有寶可夢的抵抗力全部消除。"
}
}],
attacks: [{
name: {
'zh-tw': "落石"
},
damage: 30,
cost: ["Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card