1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-03 04:19:54 +00:00

40 lines
573 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Roselia"
},
illustrator: "kirisAki",
rarity: "One Diamond",
category: "Pokemon",
hp: 70,
types: ["Grass"],
description: {
en: "Its flowers give off a relaxing fragrance.<br />The stronger its aroma, the healthier<br />the Roselia is."
},
stage: "Basic",
attacks: [{
name: {
en: "Sting"
},
damage: 20,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 1
}
export default card