1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

79 lines
2.0 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 '../Chilling Reign'
const card: Card = {
set: Set,
name: {
en: "Abomasnow",
fr: "Blizzaroi",
es: "Abomasnow",
it: "Abomasnow",
pt: "Abomasnow",
de: "Rexblisar"
},
illustrator: "Akira Komayama",
rarity: "Rare",
category: "Pokemon",
hp: 140,
types: ["Grass"],
evolveFrom: {
en: "Snover",
fr: "Blizzi"
},
abilities: [{
type: "Ability",
name: {
en: "Toughness Boost",
fr: "Boost dEndurance",
es: "Impulso Vigorizante",
it: "Carica di Tenacia",
pt: "Impulso da Determinação",
de: "Stärkeschub"
},
effect: {
en: "Your Single Strike Pokémon in play, except any Abomasnow, get +50 HP. You cant apply more than 1 Toughness Boost Ability at a time.",
fr: "Vos Pokémon Poing Final en jeu, à lexception de Blizzaroi, reçoivent +50 PV. Vous ne pouvez utiliser quun talent Boost dEndurance à la fois.",
es: "Tus Pokémon Golpe Brusco en juego, excepto los Abomasnow, obtienen 50 PS más. No puedes aplicar más de 1 habilidad Impulso Vigorizante a la vez.",
it: "I tuoi Pokémon Colpo Singolo in gioco, a eccezione di qualsiasi Abomasnow, hanno 50 PS in più. Non puoi applicare più di unabilità Carica di Tenacia alla volta.",
pt: "Seus Pokémon Golpe Decisivo em jogo, exceto por quaisquer Abomasnow, recebem 50 PS a mais. Você não pode usar mais de 1 Habilidade Impulso da Determinação por vez.",
de: "Deine Fokussierter-Angriff-Pokémon im Spiel, außer Rexblisar, erhalten +50 KP. Du kannst immer nur jeweils 1 Fähigkeit Stärkeschub einsetzen."
}
}],
attacks: [{
name: {
en: "Mega Punch",
fr: "Ultimapoing",
es: "Megapuño",
it: "Megapugno",
pt: "Megassoco",
de: "Megahieb"
},
damage: 90,
cost: ["Grass", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card