1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-18 22:39:54 +00:00

67 lines
1.1 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 '../Celestial Storm'
const card: Card = {
name: {
en: "Solrock",
fr: "Solaroc",
},
illustrator: "Kyoko Umemoto",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
338,
],
hp: 90,
types: [
"Psychic",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Sunbeam",
fr: "Rayon de Soleil",
},
effect: {
en: "The maximum HP of each of your Lunatone in play is 130.",
fr: "Les PV maximum de chacun de vos Séléroc en jeu sont de 130.",
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Scorching Light",
fr: "Lumière Aveuglante",
},
effect: {
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed. If tails, your opponent's Active Pokémon is now Burned.",
fr: "Lancez une pièce. Si cest face, le Pokémon Actif de votre adversaire est maintenant Paralysé. Si cest pile, le Pokémon Actif de votre adversaire est maintenant Brûlé.",
},
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card