1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-08 18:27:51 +00:00

82 lines
1.1 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Majestic Dawn'
const card: Card = {
name: {
en: "Fearow",
fr: "Rapasdepic",
de: "Ibitak"
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
22,
],
hp: 80,
types: [
"Colorless",
],
evolveFrom: {
en: "Spearow",
fr: "Piafabec",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Fury Attack",
fr: "Furie",
de: "Furienschlag"
},
effect: {
en: "Flip 3 coins. This attack does 20 damage times the number of heads.",
fr: "Lancez 3 pièces. Cette attaque inflige 20 dégâts multipliés par le nombre de faces.",
de: "Wirf 3 Münzen. Dieser Angriff fügt 20 Schadenspunkte mal der Anzahl \"Kopf\" zu."
},
damage: "20x",
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Drill Peck",
fr: "Bec vrille",
de: "Bohrschnabel"
},
damage: 60,
},
],
weaknesses: [
{
type: "Lightning",
value: "+20"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
}
export default card