mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
90 lines
1.4 KiB
TypeScript
90 lines
1.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Forbidden Light'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Amaura",
|
||
fr: "Amagara",
|
||
es: "Amaura",
|
||
it: "Amaura",
|
||
pt: "Amaura",
|
||
de: "Amarino"
|
||
},
|
||
illustrator: "Atsuko Nishida",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
698,
|
||
],
|
||
hp: 90,
|
||
types: [
|
||
"Water",
|
||
],
|
||
evolveFrom: {
|
||
en: "Unidentified Fossil",
|
||
fr: "Fossile Inconnu",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Water",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Powder Snow",
|
||
fr: "Poudreuse",
|
||
es: "Nieve Polvo",
|
||
it: "Polneve",
|
||
pt: "Neve em Pó",
|
||
de: "Pulverschnee"
|
||
},
|
||
effect: {
|
||
en: "Your opponent’s Active Pokémon is now Asleep.",
|
||
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
|
||
es: "El Pokémon Activo de tu rival pasa a estar Dormido.",
|
||
it: "Il Pokémon attivo del tuo avversario viene addormentato.",
|
||
pt: "O Pokémon Ativo do seu oponente agora está Adormecido.",
|
||
de: "Das Aktive Pokémon deines Gegners schläft jetzt."
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Water",
|
||
"Water",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Aurora Beam",
|
||
fr: "Onde Boréale",
|
||
es: "Rayo Aurora",
|
||
it: "Raggiaurora",
|
||
pt: "Raio Aurora",
|
||
de: "Aurorastrahl"
|
||
},
|
||
|
||
damage: 60,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Metal",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 3,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|