1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +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/S10b/031.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../S10b"
const card: Card = {
set: Set,
name: {
'zh-tw': "超夢VSTAR"
},
illustrator: "PLANETA Mochizuki",
category: "Pokemon",
hp: 280,
types: ["Psychic"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "精神光芒"
},
effect: {
'zh-tw': "將自己的場上寶可夢身上附加的最多3張【超】能量卡丟棄造成其張數×90點傷害。"
},
damage: "90×",
cost: ["Psychic", "Colorless"]
}, {
name: {
'zh-tw': "[VSTAR力量]星星襲擊"
},
effect: {
'zh-tw': "對手的所有「寶可夢【V】」各受到120點傷害。這個招式的傷害不計算弱點・抵抗力。[對戰中己方只可使用1次【VSTAR】力量。]"
},
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "F"
}
export default card