1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 09:29:55 +00:00

75 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Ultra Prism'
const card: Card = {
name: {
en: "Roserade",
fr: "Roserade",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
407,
],
hp: 100,
types: [
"Grass",
],
evolveFrom: {
en: "Roselia",
fr: "Rosélia",
},
stage: "Stage1",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Inviting Poison",
fr: "Poison Tentant",
},
effect: {
en: "Switch 1 of your opponent's Benched Pokémon with their Active Pokémon. The new Active Pokémon is now Poisoned.",
fr: "Échangez lun des Pokémon de Banc de votre adversaire avec son Pokémon Actif. Le nouveau Pokémon Actif est maintenant Empoisonné.",
},
},
{
cost: [
"Grass",
"Grass",
"Colorless",
],
name: {
en: "Flower Tornado",
fr: "Floramixeur",
},
effect: {
en: "Move any number of Grass Energy from your Pokémon to your other Pokémon in any way you like.",
fr: "Déplacez autant dÉnergies Grass attachées à vos Pokémon que vous le voulez sur vos autres Pokémon, de la manière que vous voulez.",
},
damage: 100,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card