1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 10:59:54 +00:00
Khaleeq Ahmad a597759d9d
fix: Pocket card data fixes (#659)
Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
2025-02-19 21:52:42 +01:00

45 lines
662 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Mythical Island"
const card: Card = {
set: Set,
name: {
en: "Pidgeotto"
},
illustrator: "Taiga Kayama",
category: "Pokemon",
hp: 90,
types: ["Colorless"],
evolveFrom: {
en: "Pidgey"
},
description: {
en: "The claws on its feet are well developed. It can carry prey such as an Exeggcute to its nest over 60 miles away."
},
stage: "Stage1",
attacks: [{
name: {
en: "Wing Attack"
},
damage: 50,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1,
rarity: "One Diamond"
}
export default card