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

66
data-asia/S/SLD/008.ts Normal file
View File

@ -0,0 +1,66 @@
import { Card } from "../../../interfaces"
import Set from "../SLD"
const card: Card = {
set: Set,
name: {
'zh-tw': "達克萊伊VSTAR",
ja: "ダークライVSTAR"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 270,
types: ["Darkness"],
stage: "VMAX",
abilities: [{
type: "Ability",
name: {
'zh-tw': "星星深淵"
},
effect: {
'zh-tw': "在自己的回合時可使用。從自己的棄牌區選擇最多2張物品卡在給對手看過後加入手牌。[對戰中己方只可使用1次【VSTAR】力量。]"
}
}],
attacks: [{
name: {
'zh-tw': "惡之波動",
ja: "あくのはどう"
},
effect: {
'zh-tw': "增加自己的場上寶可夢身上附加的【惡】能量的數量×30點傷害。",
ja: "自分の場のポケモンについているエネルギーの数×30ダメージ追加。"
},
damage: "30",
cost: ["Colorless", "Colorless"]
}, {
name: {
ja: "特性"
}
}, {
name: {
ja: "スターアビス"
},
effect: {
ja: "自分の番に使える。自分のトラッシュからグッズを2枚まで選び、相手に見せて、手札に加える。対戦中、自分はVSTARパワーを1回しか使えない。"
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card