1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

51 lines
932 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../S11"
const card: Card = {
set: Set,
name: {
'zh-tw': "龍王蠍VSTAR"
},
illustrator: "PLANETA Mochizuki",
category: "Pokemon",
hp: 270,
types: ["Darkness"],
stage: "VMAX",
abilities: [{
type: "Ability",
name: {
'zh-tw': "危害星星"
},
effect: {
'zh-tw': "在自己的回合時可使用。將對手的戰鬥寶可夢【中毒】與【麻痺】。因這個【中毒】而放置的傷害指示物的數量改為3個。[對戰中己方只可使用1次【VSTAR】力量。]"
}
}],
attacks: [{
name: {
'zh-tw': "大爆炸之臂"
},
effect: {
'zh-tw': "減少這隻寶可夢身上放置的傷害指示物的數量×10點傷害。"
},
damage: "250-",
cost: ["Darkness", "Darkness", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "F"
}
export default card