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

56 lines
867 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 "../SC1b"
const card: Card = {
set: Set,
name: {
'zh-tw': "羅絲雷朵"
},
illustrator: "chibi",
category: "Pokemon",
hp: 120,
types: ["Grass"],
description: {
'zh-tw': "會用馥郁芬芳的花香迷惑敵人,並用荊棘上的鞭子猛力抽打對方。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "麻痺毒"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】。擲1次硬幣若為正面則再將其【麻痺】。"
},
damage: 30,
cost: ["Grass"]
}, {
name: {
'zh-tw': "超級吸取"
},
effect: {
'zh-tw': "將這隻寶可夢恢復「30」HP。"
},
damage: 90,
cost: ["Grass", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card