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

79 lines
1.4 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 '../Guardians Rising'
const card: Card = {
name: {
en: "Honchkrow",
fr: "Corboss",
},
illustrator: "Hideki Ishikawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
430,
],
hp: 110,
types: [
"Darkness",
],
evolveFrom: {
en: "Murkrow",
fr: "Cornèbre",
},
stage: "Stage1",
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Feint Attack",
fr: "Feinte",
},
effect: {
en: "This attack does 30 damage to 1 of your opponent's Pokémon. This damage isn't affected by Weakness, Resistance, or any other effects on that Pokémon.",
fr: "Cette attaque inflige 30 dégâts à lun des Pokémon de votre adversaire. Ces dégâts ne sont pas affectés par la Faiblesse, la Résistance ou tout autre effet en action sur ce Pokémon.",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Raven's Claw",
fr: "Serre de Corbeau",
},
effect: {
en: "This attack does 10 more damage for each damage counter on all of your opponent's Pokémon.",
fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts placé sur les Pokémon de votre adversaire.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 1,
}
export default card