mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-03 20:39:55 +00:00
60 lines
1.5 KiB
TypeScript
60 lines
1.5 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Space-Time Smackdown"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Roselia",
|
|
fr: "Rosélia",
|
|
es: "Roselia",
|
|
it: "Roselia",
|
|
de: "Roselia",
|
|
'pt-br': "Roselia",
|
|
ko: "로젤리아"
|
|
},
|
|
|
|
illustrator: "kirisAki",
|
|
rarity: "One Diamond",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Grass"],
|
|
|
|
description: {
|
|
en: "Its flowers give off a relaxing fragrance. The stronger its aroma, the healthier the Roselia is.",
|
|
fr: "Ses fleurs dégagent un parfum relaxant. Plus cet\narôme est fort, meilleure est la santé de Rosélia.",
|
|
es: "Las flores que tiene emanan un aroma relajante.\nCuanto más intenso, mejor es su estado de salud.",
|
|
it: "Dai suoi fiori si diffonde una fragranza rilassante. Più\nè intenso il suo profumo, più il Pokémon è in salute.",
|
|
de: "Seine Blüten verströmen einen entspannenden Duft.\nJe stärker dieser Duft ist, desto gesünder ist Roselia.",
|
|
'pt-br': "As suas flores exalam uma fragrância relaxante.\nQuanto mais forte for o seu aroma,\nmais saudável será Roselia.",
|
|
ko: "꽃향기를 맡으면 기분이\n편안해진다. 향이 강하면\n건강한 로젤리아라는 뜻이다."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Sting",
|
|
fr: "Dard",
|
|
es: "Aguijonazo",
|
|
it: "Puntura",
|
|
de: "Einstich",
|
|
'pt-br': "Ferroada",
|
|
ko: "따끔따끔찌르기"
|
|
},
|
|
|
|
damage: 20,
|
|
cost: ["Grass"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fire",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1,
|
|
boosters: ["dialga", "palkia"]
|
|
}
|
|
|
|
export default card
|