import { Card } from '../../../interfaces' import Set from '../Dark Explorers' const card: Card = { name: { en: "Aerodactyl", }, illustrator: "Naoyo Kimura", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 142, ], hp: 90, types: [ "Fighting", ], stage: "RESTORED", abilities: [ { type: "Ability", name: { en: "Ancient Scream", }, effect: { en: "Your Pokémon's attacks do 10 more damage to the Active Pokémon (before applying Weakness and Resistance).", }, }, ], attacks: [ { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Wing Attack", }, damage: 40, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card