1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

101 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Fates Collide'
const card: Card = {
name: {
en: "Aerodactyl",
fr: "Ptéra",
es: "Aerodactyl",
it: "Aerodactyl",
pt: "Aerodactyl",
de: "Aerodactyl"
},
illustrator: "kawayoo",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
142,
],
hp: 120,
types: [
"Colorless",
],
stage: "RESTORED",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Bite",
fr: "Morsure",
es: "Mordisco",
it: "Morso",
pt: "Mordida",
de: "Biss"
},
damage: 30,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Jet Draft",
fr: "Souffle Supersonique",
es: "Corriente Jet",
it: "Scia Jet",
pt: "Vento de Jato",
de: "Düsendurchzug"
},
effect: {
en: "Discard a Special Energy attached to your opponent's Active Pokémon.",
fr: "Défaussez une Énergie spéciale attachée au Pokémon Actif de votre adversaire.",
es: "Descarta 1 Energía Especial unida al Pokémon Activo de tu rival.",
it: "Scarta un'Energia speciale assegnata al Pokémon attivo del tuo avversario.",
pt: "Descarte uma Energia Especial ligada ao Pokémon Ativo do seu oponente.",
de: "Lege 1 an das Aktive Pokémon deines Gegners angelegte Spezial-Energie auf den Ablagestapel deines Gegners."
},
damage: 120,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 0,
evolveFrom: {
en: "Old Amber Aerodactyl",
fr: "Vieil Ambre Ptéra",
es: "Ámbar Viejo Aerodactyl",
it: "Ambra Antica di Aerodactyl",
pt: "Âmbar Velho de Aerodactyl",
de: "Altbernstein Aerodactyl"
}
}
export default card