1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

68 lines
1.2 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Great Encounters'
const card: Card = {
name: {
en: "Solrock",
fr: "Solaroc",
},
illustrator: "Ken Sugimori",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
338,
],
hp: 70,
types: [
"Fighting",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Sunlight",
fr: "Rayon solaire",
},
effect: {
en: "If you have Lunatone in play, damage done to your opponent's Pokémon by your Psychic or Fighting Pokémon isn't affected by Resistance.",
fr: "Si vous avez Seleroc en jeu, les dégâts infligés aux Pokémon de votre adversaire par vos Pokémon Psychic ou Fighting ne sont pas affectés par la Résistance.",
},
},
],
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Sol Charge",
fr: "Recharge solaire",
},
effect: {
en: "Search your discard pile for a basic Energy card and attach it to 1 of your Benched Pokémon.",
fr: "Choisissez dans votre pile de défausse une carte Énergie de base et attachez-la à 1 de vos Pokémon de Banc.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Grass",
value: "+20"
},
],
retreat: 1,
}
export default card