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

51 lines
977 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 "../S10D"
const card: Card = {
set: Set,
name: {
'zh-tw': "洗翠 裙兒小姐VSTAR"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 260,
types: ["Grass"],
stage: "VMAX",
abilities: [{
type: "Ability",
name: {
'zh-tw': "星星芬香"
},
effect: {
'zh-tw': "在自己的回合時可使用。從自己的牌庫選擇【草】寶可夢卡與【草】能量卡合計最多5張在給對手看過後加入手牌。並且重洗牌庫。[對戰中己方只可使用1次【VSTAR】力量。]"
}
}],
attacks: [{
name: {
'zh-tw': "燕式旋轉"
},
effect: {
'zh-tw': "若希望選擇1個這隻寶可夢身上附加的能量放回手牌。這個情況下增加100點傷害。"
},
damage: "130+",
cost: ["Grass", "Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "F"
}
export default card