1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +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

93 lines
2.2 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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Honchkrow",
fr: "Corboss",
es: "Honchkrow",
it: "Honchkrow",
pt: "Honchkrow",
de: "Kramshef"
},
illustrator: "Miki Tanaka",
rarity: "Uncommon",
category: "Pokemon",
hp: 130,
types: ["Darkness"],
evolveFrom: {
en: "Murkrow",
fr: "Cornèbre"
},
abilities: [{
type: "Ability",
name: {
en: "Insomnia",
fr: "Insomnia",
es: "Insomnio",
it: "Insonnia",
pt: "Insônia",
de: "Insomnia"
},
effect: {
en: "This Pokémon cant be Asleep.",
fr: "Ce Pokémon ne peut pas être Endormi.",
es: "Este Pokémon no puede pasar a estar Dormido.",
it: "Questo Pokémon non può venire addormentato.",
pt: "Este Pokémon não pode ser Adormecido.",
de: "Dieses Pokémon kann nicht von Schlaf betroffen werden."
}
}],
attacks: [{
name: {
en: "Voltage Dive",
fr: "Plongée Voltaïque",
es: "Picado Voltaje",
it: "Picchiata Voltaica",
pt: "Mergulho Voltaico",
de: "Volttaucher"
},
effect: {
en: "If your opponents Active Pokémon has any Special Energy attached, this attack does 80 more damage.",
fr: "Si de lÉnergie spéciale est attachée au Pokémon Actif de votre adversaire, cette attaque inflige 80 dégâts supplémentaires.",
es: "Si el Pokémon Activo de tu rival tiene alguna Energía Especial unida a él, este ataque hace 80 puntos de daño más.",
it: "Se il Pokémon attivo del tuo avversario ha delle Energie speciali assegnate, questo attacco infligge 80 danni in più.",
pt: "Se o Pokémon Ativo do seu oponente tiver alguma Energia Especial ligada a ele, este ataque causará 80 pontos de dano a mais.",
de: "Wenn an das Aktive Pokémon deines Gegners mindestens 1 Spezial-Energie angelegt ist, fügt diese Attacke 80 Schadenspunkte mehr zu."
},
damage: "80+",
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card