mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
66 lines
1.5 KiB
TypeScript
66 lines
1.5 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Obsidian Flames"
|
|
|
|
const card: Card = {
|
|
dexId: [338],
|
|
set: Set,
|
|
|
|
name: {
|
|
fr: "Solaroc",
|
|
en: "Solrock",
|
|
es: "Solrock",
|
|
it: "Solrock",
|
|
pt: "Solrock",
|
|
de: "Sonnfel"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 90,
|
|
types: ["Psychic"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
fr: "Appel à la Famille",
|
|
en: "Call for Family",
|
|
es: "Llamar a la Familia",
|
|
it: "Cerca Famiglia",
|
|
pt: "Chamar a Família",
|
|
de: "Familienruf"
|
|
},
|
|
|
|
effect: {
|
|
fr: "Cherchez dans votre deck jusqu'à 2 Pokémon de base, puis placez-les sur votre Banc. Mélangez ensuite votre deck.",
|
|
en: "Search your deck for up to 2 Basic Pokémon and put them onto your Bench. Then, shuffle your deck.",
|
|
es: "Busca en tu baraja hasta 2 Pokémon Básicos y ponlos en tu Banca. Después, baraja las cartas de tu baraja.",
|
|
it: "Cerca nel tuo mazzo fino a due Pokémon Base e mettili nella tua panchina. Poi rimischia le carte del tuo mazzo.",
|
|
pt: "Procure por até 2 Pokémon Básicos no seu baralho e coloque-os no seu Banco. Em seguida, embaralhe o seu baralho.",
|
|
de: "Durchsuche dein Deck nach bis zu 2 Basis-Pokémon und lege sie auf deine Bank. Mische anschließend dein Deck."
|
|
}
|
|
}, {
|
|
cost: ["Psychic", "Colorless"],
|
|
|
|
name: {
|
|
fr: "Lance-Soleil",
|
|
en: "Solar Beam",
|
|
es: "Rayo Solar",
|
|
it: "Solarraggio",
|
|
pt: "Raio Solar",
|
|
de: "Solarstrahl"
|
|
},
|
|
|
|
damage: 50
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |