1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 17:57:51 +00:00

82 lines
1.5 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Majestic Dawn'
const card: Card = {
name: {
en: "Aerodactyl",
fr: "Ptera",
de: "Aerodactyl"
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
142,
],
hp: 80,
types: [
"Colorless",
],
evolveFrom: {
en: "Old Amber",
fr: "Vieil Ambre",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Primal Claw",
fr: "Griffe primitive",
de: "Urzeitklaue"
},
effect: {
en: "After your opponent's Pokémon uses a Poké-Power, put 2 damage counters on that Pokémon.",
fr: "Une fois que le Pokémon de votre adversaire a utilisé un Poké-Power, placez 2 marqueurs de dégât sur ce Pokémon.",
de: "Nachdem ein Pokémon deines Gegners eine Poké-Power benutzt hat, lege 2 Schadensmarken auf dieses Pokémon."
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Supersonic",
fr: "Ultrason",
de: "Superschall"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Confus.",
de: "Wirf 1 Münze. Bei 'Kopf' ist das Verteidigende Pokémon jetzt verwirrt."
},
damage: 30,
},
],
weaknesses: [
{
type: "Lightning",
value: "+20"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 1,
}
export default card