1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39: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

59
data-asia/S/S9a/029.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../S9a"
const card: Card = {
set: Set,
name: {
'zh-tw': "洗翠 火爆獸VSTAR",
ja: "ヒスイ バクフーンVSTAR"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 260,
types: ["Psychic"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "陰森火焰",
ja: "ホロウフレイム"
},
effect: {
'zh-tw': "將3個傷害指示物以任意方式放置於對手的備戰寶可夢身上。",
ja: "ダメカン3個を、相手のベンチポケモンに好きなようにのせる。"
},
damage: 180,
cost: ["Psychic", "Psychic", "Colorless"]
}, {
name: {
'zh-tw': "[VSTAR力量]陽炎星星",
ja: "カゲロウスター"
},
effect: {
'zh-tw': "若對手的戰鬥寶可夢身上放置的傷害指示物為4個則將那隻寶可夢【氣絕】。[對戰中己方只可使用1次【VSTAR】力量。]",
ja: "相手のバトルポケモンにのっているダメカンが4個なら、そのポケモンをきぜつさせる。対戦中、自分はVSTARパワーを1回しか使えない。"
},
cost: ["Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 2,
regulationMark: "F"
}
export default card