1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-16 13:39:54 +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

85 lines
1.6 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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Solrock",
fr: "Solaroc",
es: "Solrock",
it: "Solrock",
pt: "Solrock",
de: "Sonnfel"
},
illustrator: "Miki Tanaka",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
hp: 90,
types: [
"Fighting",
],
abilities: [
{
type: "Ability",
name: {
en: "Resistance Shade",
fr: "Résistance Ombragée",
es: "Sombra Resistencia",
it: "Oscura Resistenza",
pt: "Sombra da Resistência",
de: "Resistenzschatten"
},
effect: {
en: "If you have Lunatone in play, your opponents Pokémon in play have no Resistance.",
fr: "Si vous avez Séléroc en jeu, les Pokémon en jeu de votre adversaire nont pas de Résistance.",
es: "Si tienes a Lunatone en juego, los Pokémon en juego de tu rival no tienen Resistencia.",
it: "Se hai Lunatone in gioco, i Pokémon in gioco del tuo avversario non hanno resistenza.",
pt: "Se você tiver Lunatone em jogo, os Pokémon em jogo do seu oponente não terão Resistência.",
de: "Wenn du Lunastein im Spiel hast, haben die Pokémon deines Gegners im Spiel keine Resistenz."
},
},
],
attacks: [
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Rock Throw",
fr: "Jet-Pierres",
es: "Lanzarrocas",
it: "Sassata",
pt: "Lançamento de Rocha",
de: "Steinwurf"
},
damage: 30,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card