import { Card } from '../../../interfaces' import Set from '../Holon Phantoms' const card: Card = { name: { en: "Aerodactyl δ", }, illustrator: "Mitsuhiro Arita", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 142, ], hp: 70, types: [ "Fire", ], evolveFrom: { en: "Mysterious Fossil", }, stage: "Stage1", abilities: [ { type: "Poke-POWER", name: { en: "Primal Light", }, effect: { en: "Once during your turn (before your attack), you may search your deck for a basic Energy card, show it to your opponent, and put it into your hand. Shuffle your deck afterward. This power can't be used if Aerodactyl is affected by a Special Condition.", }, }, ], attacks: [ { cost: [ "Fire", "Colorless", ], name: { en: "Granite Head", }, effect: { en: "During your opponent's next turn, any damage done to Aerodactyl by attacks is reduced by 10 (after applying Weakness and Resistance).", }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card