1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-17 13:59:55 +00:00

79 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 '../Emerging Powers'
const card: Card = {
name: {
en: "Beartic",
fr: "Polagriffe",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
614,
],
hp: 130,
types: [
"Water",
],
evolveFrom: {
en: "Cubchoo",
fr: "Polarhume",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Sheer Cold",
fr: "Glaciation",
},
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: 50,
},
{
cost: [
"Water",
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Icicle Crash",
fr: "Chute Glace",
},
effect: {
en: "This attack's damage isn't affected by Resistance.",
fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 3,
}
export default card