mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Added Lost Origin datas (#360)
This commit is contained in:
70
data/Sword & Shield/Lost Origin/092.ts
Normal file
70
data/Sword & Shield/Lost Origin/092.ts
Normal file
@ -0,0 +1,70 @@
|
||||
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
|
Reference in New Issue
Block a user