mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
70 lines
1.3 KiB
TypeScript
70 lines
1.3 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Lost Origin"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Aerodactyl V",
|
|
fr: "Ptéra V",
|
|
es: "Aerodactyl V",
|
|
it: "Aerodactyl V",
|
|
pt: "Aerodactyl V",
|
|
de: "Aerodactyl V"
|
|
},
|
|
|
|
rarity: "Ultra Rare",
|
|
category: "Pokemon",
|
|
hp: 210,
|
|
types: ["Fighting"],
|
|
stage: "Basic",
|
|
suffix: "V",
|
|
|
|
attacks: [{
|
|
cost: ["Fighting", "Colorless"],
|
|
|
|
name: {
|
|
en: "Bite",
|
|
fr: "Morsure",
|
|
es: "Mordisco",
|
|
it: "Morso",
|
|
pt: "Mordida",
|
|
de: "Biss"
|
|
},
|
|
|
|
damage: 40
|
|
}, {
|
|
cost: ["Fighting", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Rock Crush",
|
|
fr: "Écrasement Rocheux",
|
|
es: "Aplastamiento Rocoso",
|
|
it: "Tritaroccia",
|
|
pt: "Pedra Esmagadora",
|
|
de: "Felsenmalmer"
|
|
},
|
|
|
|
effect: {
|
|
en: "Discard an Energy from your opponent's Active Pokémon.",
|
|
fr: "Défaussez une Énergie du Pokémon Actif de votre adversaire.",
|
|
es: "Descarta 1 Energía del Pokémon Activo de tu rival.",
|
|
it: "Scarta un'Energia dal Pokémon attivo del tuo avversario.",
|
|
pt: "Descarte 1 Energia do Pokémon Ativo do seu oponente.",
|
|
de: "Lege 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
|
|
},
|
|
|
|
damage: 120
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "F",
|
|
|
|
variants: {
|
|
"normal": false,
|
|
"reverse": false,
|
|
"holo": true
|
|
}
|
|
}
|
|
|
|
export default card |