mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-29 10:59:54 +00:00
45 lines
662 B
TypeScript
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
|