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

46 lines
778 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 "../S10a"
const card: Card = {
set: Set,
name: {
'zh-tw': "洗翠 黏美龍VSTAR"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 270,
types: ["Dragon"],
stage: "VMAX",
abilities: [{
type: "Ability",
name: {
'zh-tw': "潤濕星星"
},
effect: {
'zh-tw': "在自己的回合時可使用。將這隻寶可夢的HP全部恢復。[對戰中己方只可使用1次【VSTAR】力量。]"
}
}],
attacks: [{
name: {
'zh-tw': "鐵之回轉"
},
effect: {
'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「-80」點。"
},
damage: 200,
cost: ["Water", "Metal", "Colorless"]
}],
retreat: 3,
regulationMark: "F"
}
export default card