1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

91 lines
1.6 KiB
TypeScript
Raw Permalink 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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Ursaring",
fr: "Ursaring",
es: "Ursaring",
it: "Ursaring",
pt: "Ursaring",
de: "Ursaring"
},
illustrator: "Hiroki Asanuma",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
217,
],
hp: 140,
types: [
"Colorless",
],
evolveFrom: {
en: "Teddiursa",
fr: "Teddiursa",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Hammer In",
fr: "Enfoncement",
es: "Martillear",
it: "Martello",
pt: "Martelada",
de: "Einhämmern"
},
damage: 50,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Heavy Hold",
fr: "Prise Étau",
es: "Fuerte Apretón",
it: "Presa Pesante",
pt: "Imobilização Potente",
de: "Schwerer Halt"
},
effect: {
en: "The Defending Pokémon cant attack during your opponents next turn.",
fr: "Le Pokémon Défenseur ne peut pas attaquer pendant le prochain tour de votre adversaire.",
es: "El Pokémon Defensor no puede atacar durante el próximo turno de tu rival.",
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può attaccare.",
pt: "O Pokémon Defensor não poderá atacar durante a próxima vez de jogar do seu oponente.",
de: "Das Verteidigende Pokémon kann während des nächsten Zuges deines Gegners nicht angreifen."
},
damage: 120,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 3,
}
export default card