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

75 lines
1.1 KiB
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 '../Flashfire'
const card: Card = {
name: {
en: "Roserade",
fr: "Roserade",
},
illustrator: "Masakazu Fukuda",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
407,
],
hp: 90,
types: [
"Grass",
],
evolveFrom: {
en: "Roselia",
fr: "Rosélia",
},
stage: "Stage1",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Whiplash",
fr: "Fouet Furieux",
},
effect: {
en: "Flip a coin until you get tails. For each heads, discard an Energy attached to your opponent's Active Pokémon.",
fr: "Lancez une pièce jusqu'à ce que vous obteniez un côté pile. Pour chaque côté face, défaussez une Énergie attachée au Pokémon Actif de votre adversaire.",
},
},
{
cost: [
"Grass",
"Grass",
"Grass",
],
name: {
en: "Mega Drain",
fr: "Méga-Sangsue",
},
effect: {
en: "Heal 20 damage from this Pokémon.",
fr: "Soignez 20 dégâts à ce Pokémon.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card