1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-26 01:49:54 +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

101 lines
1.7 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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Ursaring",
fr: "Ursaring",
es: "Ursaring",
it: "Ursaring",
pt: "Ursaring",
de: "Ursaring"
},
illustrator: "Uta",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
hp: 140,
types: [
"Colorless",
],
evolveFrom: {
en: "Teddiursa",
fr: "Teddiursa"
},
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Hammer Arm",
fr: "Marto-Poing",
es: "Machada",
it: "Martelpugno",
pt: "Braço de Martelo",
de: "Hammerarm"
},
effect: {
en: "Discard the top card of your opponents deck.",
fr: "Défaussez la carte du dessus du deck de votre adversaire.",
es: "Descarta la primera carta de la baraja de tu rival.",
it: "Scarta la prima carta del mazzo del tuo avversario.",
pt: "Descarte a carta de cima do baralho do seu oponente.",
de: "Lege die oberste Karte des Decks deines Gegners auf seinen Ablagestapel."
},
damage: 70,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Claw Slash",
fr: "TranchGriffe",
es: "Cuchillada Garra",
it: "Lacerartiglio",
pt: "Golpe de Garra",
de: "Klauenschlitzer"
},
damage: 120,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 3,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Stage1",
description: {
en: "Although it has a large body, it is quite skilled at climbing trees. It eats and sleeps in the treetops."
}
}
export default card