1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

98 lines
2.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 '../Rebel Clash'
const card: Card = {
dexId: [631],
name: {
en: "Heatmor",
fr: "Aflamanoir",
es: "Heatmor",
it: "Heatmor",
pt: "Heatmor",
de: "Furnifraß"
},
illustrator: "Satoshi Shirai",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Lick",
fr: "Léchouille",
es: "Lengüetazo",
it: "Leccata",
pt: "Lambida",
de: "Schlecker"
},
effect: {
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado.",
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato.",
pt: "Jogue 1 moeda. Se sair cara, o Pokémon Ativo do seu oponente ficará Paralisado.",
de: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt paralysiert."
},
damage: 20,
},
{
cost: [
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Flamethrower",
fr: "Lance-Flammes",
es: "Lanzallamas",
it: "Lanciafiamme",
pt: "Lança-chamas",
de: "Flammenwurf"
},
effect: {
en: "Discard an Energy from this Pokémon.",
fr: "Défaussez une Énergie de ce Pokémon.",
es: "Descarta 1 Energía de este Pokémon.",
it: "Scarta un'Energia da questo Pokémon.",
pt: "Descarte 1 Energia deste Pokémon.",
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel."
},
damage: 120,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 2,
hp: 120,
types: ["Fire"],
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Basic",
description: {
en: "There's a hole in its tail that allows it to draw in the air it needs to keep its fire burning. If the hole gets blocked, this Pokémon will fall ill."
}
}
export default card