mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
89 lines
2.0 KiB
TypeScript
89 lines
2.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Legend Maker'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Lunatone",
|
||
fr: "Seleroc",
|
||
de: "Lunastein"
|
||
},
|
||
illustrator: "Hisao Nakamura",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
337,
|
||
],
|
||
hp: 60,
|
||
types: [
|
||
"Psychic",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Poke-BODY",
|
||
name: {
|
||
en: "Sol Shade",
|
||
fr: "Sol-ombre",
|
||
de: "Sonnenschatten"
|
||
},
|
||
effect: {
|
||
en: "As long as you have Solrock in play, each player's Fire Pokémon (excluding Pokémon-ex) can't use any Poké-Powers.",
|
||
fr: "Tant que votre Solaroc est en jeu, les Pokémon de chaque joueur (Pokémon-ex exclus) ne peuvent pas utiliser de Poké-Powers.",
|
||
de: "Solange du Sonnfel im Spiel hast, können die -Pokémon beider Spieler (außer Pokémon-ex) keine Poké-Power benutzen."
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Moon Guidance",
|
||
fr: "Guide lunaire",
|
||
de: "Mondführung"
|
||
},
|
||
effect: {
|
||
en: "Search your deck for a Trainer card (excluding Supporter cards), show it to your opponent, and put it into your hand. Shuffle your deck afterward.",
|
||
fr: "Choisissez dans votre deck une carte Dresseur (cartes Supporter exclues), montrez-la à votre adversaire et placez-la dans votre main. Ensuite, mélangez votre deck.",
|
||
de: "Durchsuche dein Deck nach einer Trainerkarte (keine Unterstützerkarte), zeige sie deinem Gegner und nimm sie auf die Hand. Mische dein Deck danach."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
],
|
||
name: {
|
||
en: "Psyshock",
|
||
fr: "Choc psy",
|
||
de: "Psychoschock"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
|
||
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.",
|
||
de: "Wirf 1 Münze. Bei \"Kopf\" ist das verteidigende Pokémon jetzt gelähmt."
|
||
},
|
||
damage: 10,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|