mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 01:19:18 +00:00
Added Celebrations (#86)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
@ -12,12 +12,86 @@ const card: Card = {
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Solgaleo"
|
||||
en: "Solgaleo",
|
||||
fr: "Solgaleo",
|
||||
es: "Solgaleo",
|
||||
it: "Solgaleo",
|
||||
pt: "Solgaleo",
|
||||
de: "Solgaleo"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
types: ["Metal"]
|
||||
types: ["Metal"],
|
||||
illustrator: "kirisAki",
|
||||
hp: 170,
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Rush In",
|
||||
fr: "Intervention",
|
||||
es: "Apremio",
|
||||
it: "Assalto",
|
||||
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 seule fois pendant votre tour (avant votre attaque), si ce Pokémon est sur votre Banc, vous pouvez échanger ce Pokémon avec votre Pokémon Actif.",
|
||||
es: "Una vez durante tu turno (antes de tu ataque), si este Pokémon está en tu Banca, puedes cambiar a este Pokémon por tu Pokémon Activo.",
|
||||
it: "Una sola volta durante il tuo turno, prima di attaccare, 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 (vor deinem Angriff) kannst du, wenn sich dieses Pokémon auf deiner Bank befindet, dieses Pokémon 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"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user