1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 15:12:10 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

101 lines
2.9 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Rebel Clash'
const card: Card = {
name: {
en: "Galarian Cursola",
fr: "Corayôme de Galar",
es: "Cursola de Galar",
it: "Cursola di Galar",
pt: "Cursola de Galar",
de: "Galar-Gorgasonn"
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
evolveFrom: {
en: "Galarian Corsola",
fr: "Corayon de Galar"
},
abilities: [
{
type: "Ability",
name: {
en: "Perish Body",
fr: "Corps Condamné",
es: "Cuerpo Mortal",
it: "Ultimotocco",
pt: "Corpo Perecido",
de: "Unheilskörper"
},
effect: {
en: "If this Pokémon is in the Active Spot and is Knocked Out by damage from an opponents attack, flip a coin. If heads, the Attacking Pokémon is Knocked Out.",
fr: "Si ce Pokémon est sur le Poste Actif et est mis K.O. par les dégâts dune attaque de votre adversaire, lancez une pièce. Si cest face, le Pokémon Attaquant est mis K.O.",
es: "Si este Pokémon está en el Puesto Activo y queda Fuera de Combate por el daño de un ataque de tu rival, lanza 1 moneda. Si sale cara, el Pokémon Atacante queda Fuera de Combate.",
it: "Se questo Pokémon è in posizione attiva e viene messo KO dai danni inflitti da un attacco dellavversario, lancia una moneta. Se esce testa, il Pokémon attaccante viene messo KO.",
pt: "Se este Pokémon estiver no Campo Ativo e for Nocauteado pelo dano de um ataque do seu oponente, jogue 1 moeda. Se sair cara, o Pokémon Atacante será Nocauteado.",
de: "Wenn dieses Pokémon in der Aktiven Position ist und durch Schaden einer Attacke deines Gegners kampfunfähig wird, wirf 1 Münze. Bei Kopf ist das Angreifende Pokémon kampfunfähig."
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Corner",
fr: "Coinçage",
es: "Arrinconar",
it: "Trappola",
pt: "Quina",
de: "Bedrängen"
},
effect: {
en: "During your opponents next turn, the Defending Pokémon cant retreat.",
fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas battre en retraite.",
es: "Durante el próximo turno de tu rival, el Pokémon Defensor no puede retirarse.",
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può ritirarsi.",
pt: "Durante o próximo turno do seu oponente, o Pokémon Defensor não poderá recuar.",
de: "Während des nächsten Zuges deines Gegners kann sich das Verteidigende Pokémon nicht zurückziehen."
},
damage: 60,
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
retreat: 2,
hp: 100,
types: ["Psychic"],
regulationMark: "D",
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card