1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

77 lines
1.1 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 '../Ultra Prism'
const card: Card = {
name: {
en: "Honchkrow",
fr: "Corboss",
},
illustrator: "Hitoshi Ariga",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
430,
],
hp: 110,
types: [
"Darkness",
],
evolveFrom: {
en: "Murkrow",
fr: "Cornèbre",
},
stage: "Stage1",
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Rip and Run",
fr: "Échapée Belle",
},
effect: {
en: "Discard a random card from your opponent's hand. Switch this Pokémon with 1 of your Benched Pokémon.",
fr: "Défaussez au hasard une carte de la main de votre adversaire. Échangez ce Pokémon avec lun de vos Pokémon de Banc.",
},
},
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Speed Dive",
fr: "Plongée Rapide",
},
damage: 90,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 1,
}
export default card