1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-06 21:39:55 +00:00

40 lines
581 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Extradimensional Crisis"
const card: Card = {
set: Set,
name: {
en: "Pidgey"
},
illustrator: "Misa Tsutsui",
category: "Pokemon",
hp: 60,
types: ["Colorless"],
description: {
en: "A common sight in forests and woods. It flaps\nits wings at ground level to kick up blinding sand."
},
stage: "Basic",
attacks: [{
name: {
en: "Gust"
},
damage: 10,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1,
rarity: "One Shiny"
}
export default card