1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 10:52:10 +00:00

86 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Triumphant'
const card: Card = {
name: {
en: "Solrock",
fr: "Solaroc",
de: "Sonnfel"
},
illustrator: "Kouki Saitou",
rarity: "Rare Holo",
category: "Pokemon",
set: Set,
dexId: [
338,
],
hp: 70,
types: [
"Fighting",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Heal Block",
fr: "Anti-Soin",
de: "Heilblockade"
},
effect: {
en: "If you have Lunatone in play, damage counters cant be removed from any Pokémon (both yours and your opponents). (Damage counters can still be moved.)",
fr: "Si vous disposez de Seleroc en jeu, aucun marqueur de dégât ne peut être retiré aux Pokémon (les vôtres et ceux de votre adversaire). (Vous pouvez néanmoins déplacer les marqueurs de dégât.)",
de: "Wenn du Lunastein im Spiel hast, können keine Schadensmarken von Pokémon entfernt werden (deinen und denen deines Gegners). (Schadensmarken können jedoch weiterhin verschoben werden.)"
},
},
],
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Sun Flash",
fr: "Éblouissement solaire",
de: "Sonnenblitz"
},
effect: {
en: "If the Defending Pokémon tries to attack during your opponents next turn, your opponent flips a coin. If tails, that attack does nothing.",
fr: "Si le Pokémon Défenseur essaie dattaquer pendant le prochain tour de votre adversaire, ce dernier lance une pièce. Si cest pile, cette attaque ne fait rien.",
de: "Falls das Verteidigende Pokémon während des nächsten Zuges deines Gegners angreift, wirft dein Gegner 1 Münze. Bei \"Zahl\" hat dieser Angriff keine Auswirkungen."
},
damage: 20,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
description: {
en: "When it rotates itself, it gives off light similar to the sun, thus blinding its foes."
},
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card