1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 09:29:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,73 @@
import { Card } from '../../../interfaces'
import Set from '../Forbidden Light'
const card: Card = {
name: {
en: "Abomasnow",
fr: "Blizzaroi",
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
460,
],
hp: 130,
types: [
"Grass",
],
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 Grass Energy card from your discard pile to 1 of your Poké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 Grass de votre pile de défausse à lun de vos Pokémon.",
},
},
],
attacks: [
{
cost: [
"Grass",
"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: "Fire",
value: "×2"
},
],
retreat: 3,
}
export default card