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

54
data-asia/S/SCA/044.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SCA"
const card: Card = {
set: Set,
name: {
'zh-tw': "哲爾尼亞斯"
},
illustrator: "Kagemaru Himeno",
category: "Pokemon",
hp: 130,
types: ["Psychic"],
description: {
'zh-tw': "據說當頭上的角閃耀七色光芒時,就會分享永恆的生命。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "大地搜尋"
},
effect: {
'zh-tw': "從自己的棄牌區任意選擇1張卡在給對手看過後加入手牌。"
},
cost: ["Psychic"]
}, {
name: {
'zh-tw': "極光增輝"
},
effect: {
'zh-tw': "將這隻寶可夢恢復「30」HP。"
},
damage: 100,
cost: ["Psychic", "Psychic", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card