mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
106 lines
2.7 KiB
TypeScript
106 lines
2.7 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Celebrations'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: true,
|
||
firstEdition: false
|
||
},
|
||
|
||
name: {
|
||
en: "Solgaleo",
|
||
fr: "Solgaleo",
|
||
es: "Solgaleo",
|
||
it: "Solgaleo",
|
||
pt: "Solgaleo",
|
||
de: "Solgaleo"
|
||
},
|
||
|
||
rarity: "Holo Rare",
|
||
category: "Pokemon",
|
||
types: ["Metal"],
|
||
illustrator: "kirisAki",
|
||
hp: 170,
|
||
stage: "Stage2",
|
||
|
||
abilities: [{
|
||
type: "Ability",
|
||
|
||
name: {
|
||
en: "Rush In",
|
||
fr: "Intervention",
|
||
es: "Apremio",
|
||
it: "Capofitto",
|
||
pt: "Pressa",
|
||
de: "Hineinstürmen"
|
||
},
|
||
|
||
effect: {
|
||
en: "Once during your turn, if this Pokémon is on your Bench, you may switch it with your Active Pokémon.",
|
||
fr: "Une fois pendant votre tour, si ce Pokémon est sur votre Banc, vous pouvez l'échanger contre votre Pokémon Actif.",
|
||
es: "Una vez durante tu turno, si este Pokémon está en tu Banca, puedes cambiarlo por tu Pokémon Activo.",
|
||
it: "Una sola volta durante il tuo turno, se questo Pokémon è nella tua panchina, puoi scambiarlo con il tuo Pokémon attivo.",
|
||
pt: "Uma vez durante sua vez de jogar (antes de atacar), se este Pokémon estiver em seu Banco, você poderá trocá-lo com seu Pokémon Ativo.",
|
||
de: "Einmal während deines Zuges, wenn sich dieses Pokémon auf deiner Bank befindet, kannst du es gegen dein Aktives Pokémon austauschen."
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Solar Geyser",
|
||
fr: "Geyser Solaire",
|
||
es: "Géiser Solar",
|
||
it: "Geyser Solare",
|
||
pt: "Gêiser Solar",
|
||
de: "Solargeysir"
|
||
},
|
||
|
||
effect: {
|
||
en: "Attach up to 2 basic Energy cards from your discard pile to 1 of your Benched Pokémon.",
|
||
fr: "Attachez jusqu'à 2 cartes Énergie de base de votre pile de défausse à l'un de vos Pokémon de Banc.",
|
||
es: "Une hasta 2 cartas de Energía Básica de tu pila de descartes a 1 de tus Pokémon en Banca.",
|
||
it: "Assegna a uno dei tuoi Pokémon in panchina fino a due carte Energia base dalla tua pila degli scarti.",
|
||
pt: "Ligue até 2 cartas de Energia básica da sua pilha de descarte a 1 dos seus Pokémon no Banco.",
|
||
de: "Lege bis zu 2 Basis-Energiekarten aus deinem Ablagestapel an 1 Pokémon auf deiner Bank an."
|
||
},
|
||
|
||
damage: 100,
|
||
cost: ["Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Grass",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 2,
|
||
|
||
evolveFrom: {
|
||
en: "Cosmoem",
|
||
fr: "Cosmovum",
|
||
es: "Cosmoem",
|
||
it: "Cosmoem",
|
||
pt: "Cosmoem",
|
||
de: "Cosmovum"
|
||
},
|
||
|
||
regulationMark: "E",
|
||
|
||
description: {
|
||
en: "In writings from the distant past, it's called by the name \"the beast that devours the sun.\""
|
||
},
|
||
|
||
dexId: [791]
|
||
}
|
||
|
||
export default card
|