1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00
FalconChipp 2a2b6463ff
Added evolveFrom tag to all Genetic Apex cards (#642)
Co-authored-by: Avior <github@avior.me>
2025-01-30 23:03:12 +01:00

47 lines
686 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Pidgeot"
},
illustrator: "Anesaki Dynamic",
category: "Pokemon",
hp: 130,
types: ["Colorless"],
stage: "Stage2",
evolveFrom: {
en: "Pidgeotto"
},
abilities: [{
type: "Ability",
name: {
en: "Drive Off"
},
effect: {
en: "Once during your turn, you may switch out your opponent's Active Pokémon to the Bench. (Your opponent choses the new Active Pokémon.)"
}
}],
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
en: "Wing Attack"
},
damage: "70"
}],
retreat: 1,
rarity: "One Star"
}
export default card