mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
92 lines
1.5 KiB
TypeScript
92 lines
1.5 KiB
TypeScript
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
|
||
}
|
||
|
||
export default card
|