1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 07:39:53 +00:00
Florian Bouillon 741c19791e
Fixed cards rarities and added cards description and stage (#62)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:11:33 +00:00

85 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 '../Sword & Shield'
const card: Card = {
name: {
en: "Rhyhorn",
fr: "Rhinocorne",
es: "Rhyhorn",
it: "Rhyhorn",
pt: "Rhyhorn",
de: "Rihorn"
},
illustrator: "Sekio",
rarity: "Common",
category: "Pokemon",
set: Set,
hp: 100,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Horn Attack",
fr: "KoudKorne",
es: "Cornada",
it: "Incornata",
pt: "Ataque de Chifre",
de: "Hornattacke"
},
damage: 10,
},
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Hammer In",
fr: "Enfoncement",
es: "Martillear",
it: "Martello",
pt: "Martelada",
de: "Einhämmern"
},
damage: 30,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
description: {
en: "It can remember only one thing at a time. Once it starts rushing, it forgets why it started."
}
}
export default card