1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +00:00

Added informations (#25)

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-05-26 22:20:17 +02:00
committed by GitHub
parent 5dab7afa10
commit dc52152f23
166 changed files with 7775 additions and 0 deletions

View File

@ -0,0 +1,65 @@
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