mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 06:42:10 +00:00
99 lines
1.9 KiB
TypeScript
99 lines
1.9 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Unified Minds'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Archeops",
|
||
fr: "Aéroptéryx",
|
||
es: "Archeops",
|
||
it: "Archeops",
|
||
pt: "Archeops",
|
||
de: "Aeropteryx"
|
||
},
|
||
illustrator: "Hasuno",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
567,
|
||
],
|
||
hp: 130,
|
||
types: [
|
||
"Fighting",
|
||
],
|
||
evolveFrom: {
|
||
en: "Archen",
|
||
fr: "Arkéapti",
|
||
},
|
||
stage: "Stage2",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "U-turn",
|
||
fr: "Demi-Tour",
|
||
es: "Ida y Vuelta",
|
||
it: "Retromarcia",
|
||
pt: "Fazer Retorno",
|
||
de: "Kehrtwende"
|
||
},
|
||
effect: {
|
||
en: "Switch this Pokémon with 1 of your Benched Pokémon.",
|
||
fr: "Échangez ce Pokémon avec l’un de vos Pokémon de Banc.",
|
||
es: "Cambia este Pokémon por 1 de tus Pokémon en Banca.",
|
||
it: "Scambia questo Pokémon con uno della tua panchina.",
|
||
pt: "Troque este Pokémon por 1 dos seus Pokémon no Banco.",
|
||
de: "Tausche dieses Pokémon gegen 1 Pokémon auf deiner Bank aus."
|
||
},
|
||
damage: 40,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Hyper Beam",
|
||
fr: "Ultralaser",
|
||
es: "Hiperrayo",
|
||
it: "Iper Raggio",
|
||
pt: "Hiper-raio",
|
||
de: "Hyperstrahl"
|
||
},
|
||
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 assegnata al 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: 80,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|