mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-03 20:39:55 +00:00
58 lines
1.7 KiB
TypeScript
58 lines
1.7 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Shining Revelry"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Buneary",
|
|
fr: "Laporeille",
|
|
es: "Buneary",
|
|
it: "Buneary",
|
|
de: "Haspiror",
|
|
'pt-br': "Buneary",
|
|
ko: "이어롤"
|
|
},
|
|
|
|
illustrator: "Kagemaru Himeno",
|
|
rarity: "One Diamond",
|
|
category: "Pokemon",
|
|
hp: 50,
|
|
types: ["Colorless"],
|
|
|
|
description: {
|
|
en: "If both of Buneary's ears are rolled up, something is wrong with its body or mind. It's a sure sign the Pokémon is in need of care.",
|
|
fr: "Quand ses deux oreilles sont repliées, c'est\nsigne qu'il ne se sent pas bien physiquement\nou mentalement et qu'il a besoin de soins.",
|
|
es: "Cuando enrolla ambas orejas, es señal de que tiene algún\ntipo de malestar físico o emocional y necesita cuidados.",
|
|
it: "Se arrotola entrambe le orecchie significa che\nè afflitto da qualche disturbo fisico o emotivo.\nÈ segno che bisogna prendersi cura di lui.",
|
|
de: "Sind seine beiden Ohren aufgerollt, deutet das\ndarauf hin, dass es ihm körperlich oder psychisch\nnicht gut geht und es Zuwendung braucht.",
|
|
'pt-br': "Se as duas orelhas de Buneary estão enroladas, algo está\nerrado com seu corpo ou mente. É um sinal claro\nde que o Pokémon precisa de cuidados.",
|
|
ko: "양쪽 귀를 말고 있을 때는\n몸이나 마음이 좋지 않다는 뜻이므로\n관리가 필요하다."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Pound",
|
|
fr: "Écras'Face",
|
|
es: "Destructor",
|
|
it: "Botta",
|
|
de: "Klaps",
|
|
'pt-br': "Pancada",
|
|
ko: "막치기"
|
|
},
|
|
|
|
damage: 20,
|
|
cost: ["Colorless"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fighting",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1
|
|
}
|
|
|
|
export default card |