1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00
Florian Bouillon ec1b6a06b0
Add regulation mark (#17)
* Added to interface

* Added Regulation mark to all current cards

* Ready for merge
2021-05-28 11:21:10 +02:00

66 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,
regulationMark: "E"
}
export default card