1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-15 21:19:55 +00:00

86 lines
1.5 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 '../XY'
const card: Card = {
name: {
en: "Solrock",
fr: "Solaroc",
es: "Solrock",
it: "Solrock",
pt: "Solrock",
de: "Sonnfel"
},
illustrator: "kawayoo",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
338,
],
hp: 90,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Cosmic Spin",
fr: "Pirouette Cosmique",
es: "Giro Cósmico",
it: "Cosmogiro",
pt: "Giro Cósmico",
de: "Kosmischer Dreher"
},
effect: {
en: "If Lunatone is on your Bench, this attack does 30 more damage.",
fr: "Si Séléroc est sur votre Banc, cette attaque inflige 30 dégâts supplémentaires.",
es: "Si Lunatone está en tu Banca, este ataque hace 30 puntos de daño más.",
it: "Se Lunatone è nella tua panchina, questo attacco infligge 30 danni in più.",
pt: "Se Lunatone estiver em seu Banco, esse ataque causará 30 de danos adicionais.",
de: "Wenn sich Lunastein auf deiner Bank befindet, fügt dieser Angriff 30 weitere Schadenspunkte zu."
},
damage: "10+",
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Solar Beam",
fr: "Lance-Soleil",
es: "Rayo Solar",
it: "Solarraggio",
pt: "Raio Solar",
de: "Solarstrahl"
},
damage: 60,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
}
export default card