mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-01 07:12:08 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
96 lines
1.4 KiB
TypeScript
96 lines
1.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Sword & Shield'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Roselia",
|
||
fr: "Rosélia",
|
||
es: "Roselia",
|
||
it: "Roselia",
|
||
pt: "Roselia",
|
||
de: "Roselia"
|
||
},
|
||
|
||
illustrator: "Naoyo Kimura",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
315,
|
||
],
|
||
|
||
hp: 70,
|
||
|
||
types: [
|
||
"Grass",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Sweet Scent",
|
||
fr: "Doux Parfum",
|
||
es: "Dulce Aroma",
|
||
it: "Profumino",
|
||
pt: "Aroma Doce",
|
||
de: "Lockduft"
|
||
},
|
||
effect: {
|
||
en: "Heal 30 damage from 1 of your Pokémon.",
|
||
fr: "Soignez 30 dégâts de l'un de vos Pokémon.",
|
||
es: "Cura 30 puntos de daño a 1 de tus Pokémon.",
|
||
it: "Cura uno dei tuoi Pokémon da 30 danni.",
|
||
pt: "Cure 30 pontos de dano de 1 dos seus Pokémon.",
|
||
de: "Heile 30 Schadenspunkte bei 1 deiner Pokémon."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Sting",
|
||
fr: "Dard",
|
||
es: "Aguijonazo",
|
||
it: "Puntura",
|
||
pt: "Ferroada",
|
||
de: "Einstich"
|
||
},
|
||
|
||
damage: 20,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
description: {
|
||
en: "Its flowers give off a relaxing fragrance. The stronger its aroma, the healthier the Roselia is."
|
||
}
|
||
}
|
||
|
||
export default card
|