1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-03 16:12:10 +00:00

75 lines
1004 B
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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Ursaring",
fr: "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",
},
damage: 50,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Heavy Hold",
fr: "Prise Étau",
},
effect: {
en: "The Defending Pokémon can't attack during your opponent's next turn.",
fr: "Le Pokémon Défenseur ne peut pas attaquer pendant le prochain tour de votre adversaire.",
},
damage: 120,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
retreat: 3,
}
export default card