1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 15:12:10 +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
1017 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Secret Wonders'
const card: Card = {
name: {
en: "Pidgeotto",
fr: "Roucoups",
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
17,
],
hp: 70,
types: [
"Colorless",
],
evolveFrom: {
en: "Pidgey",
fr: "Roucool",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Wing Attack",
fr: "Cru-aile",
},
damage: 20,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Quick Attack",
fr: "Vive-attaque",
},
effect: {
en: "Flip a coin. If heads, this attack does 30 damage plus 30 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts plus 30 dégâts supplémentaires.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Lightning",
value: "+20"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
}
export default card