1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 10:59:54 +00:00

79 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Unified Minds'
const card: Card = {
name: {
en: "Abomasnow",
fr: "Blizzaroi",
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
460,
],
hp: 140,
types: [
"Water",
],
evolveFrom: {
en: "Snover",
fr: "Blizzi",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Quick Freeze",
fr: "Gel Rapide",
},
effect: {
en: "If your opponent's Active Pokémon has any Water Energy attached to it, it is now Paralyzed.",
fr: "Si de lÉnergie Water est attachée au Pokémon Actif de votre adversaire, ce Pokémon est maintenant Paralysé.",
},
damage: 70,
},
{
cost: [
"Water",
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Wild Tackle",
fr: "Tacle Brutal",
},
effect: {
en: "This Pokémon does 20 damage to itself.",
fr: "Ce Pokémon sinflige 20 dégâts.",
},
damage: 140,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 4,
}
export default card