1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-26 01:49:54 +00:00

74 lines
1.3 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 '../Ultra Prism'
const card: Card = {
name: {
en: "Abomasnow",
fr: "Blizzaroi",
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
460,
],
hp: 130,
types: [
"Water",
],
evolveFrom: {
en: "Snover",
fr: "Blizzi",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Blessings of the Frost",
fr: "Bénédiction du Gel",
},
effect: {
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may attach a Water Energy card from your discard pile to 1 of your Pok<6F><6B>mon.",
fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer lun de vos Pokémon pendant votre tour, vous pouvez attacher une carte Énergie Water de votre pile de défausse à lun de vos Pokémon.",
},
},
],
attacks: [
{
cost: [
"Water",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Hypno Hammer",
fr: "Marteau Hypnotique",
},
effect: {
en: "Your opponent's Active Pokémon is now Asleep.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 3,
}
export default card