1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-10 07:51:58 +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

56
data-asia/S/S10a/030.ts Normal file
View File

@@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../S10a"
const card: Card = {
set: Set,
name: {
'zh-tw': "洗翠 索羅亞克"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 120,
types: ["Psychic"],
description: {
'zh-tw': "瘋狂舞動白髮的姿態如同死神。在足以撕裂己身的深刻仇怨驅使下, 抱定同歸於盡之心襲殺仇敵。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "破滅詛咒"
},
effect: {
'zh-tw': "在下個對手的回合結束時,將受到這個招式的寶可夢【氣絕】。"
}
}, {
name: {
'zh-tw': "喚回"
},
effect: {
'zh-tw': "從自己的棄牌區任意選擇1張卡在給對手看過後加入手牌。"
},
cost: ["Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "F"
}
export default card