1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00

82 lines
1.2 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 '../Dragons Exalted'
const card: Card = {
name: {
en: "Honchkrow",
fr: "Corboss",
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
430,
],
hp: 110,
types: [
"Darkness",
],
evolveFrom: {
en: "Murkrow",
fr: "Cornèbre",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Whirlwind",
fr: "Cyclone",
},
effect: {
en: "You may have your opponent switch the Defending Pokémon with 1 of his or her Benched Pokémon.",
fr: "Vous pouvez demander à votre adversaire d'échanger le Pokémon Défenseur avec 1 de ses Pokémon de Banc.",
},
damage: 30,
},
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Diving Swipe",
fr: "Rafle Plongeante",
},
effect: {
en: "Discard a random card from your opponent's hand.",
fr: "Défaussez au hasard une carte de la main de votre adversaire.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
retreat: 2,
}
export default card