1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-20 23:29:55 +00:00
Florian Bouillon dc52152f23
Added informations (#25)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 22:20:17 +02:00

65 lines
1.1 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"
},
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"
},
effect: {
en: "This Pokémon cant be Asleep.",
fr: "Ce Pokémon ne peut pas être Endormi."
}
}],
attacks: [{
name: {
en: "Voltage Dive",
fr: "Plongée Voltaïque"
},
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."
},
damage: "80+",
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2
}
export default card