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

61
data-asia/S/SC1a/042.ts Normal file
View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../Sc1a"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 魔靈珊瑚"
},
illustrator: "Kagemaru Himeno",
category: "Pokemon",
hp: 100,
types: ["Psychic"],
description: {
'zh-tw': "靈力增強之後從殼裡被解放出來。用靈體保護著內核中的靈魂。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "滅亡之軀"
},
effect: {
'zh-tw': "當這隻寶可夢在戰鬥場上受到對手的寶可夢招式的傷害而【氣絕】時己方擲1次硬幣。若為正面則將使用招式的寶可夢【氣絕】。"
}
}],
attacks: [{
name: {
'zh-tw': "窮追不捨"
},
effect: {
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。"
},
damage: 60,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "D"
}
export default card