1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

90 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Burning Shadows'
const card: Card = {
name: {
en: "Solrock",
fr: "Solaroc",
es: "Solrock",
it: "Solrock",
pt: "Solrock",
de: "Sonnfel"
},
illustrator: "Masakazu Fukuda",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
338,
],
hp: 90,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Double Draw",
fr: "Double Pioche",
es: "Roba Doble",
it: "Pescata Doppia",
pt: "Compra Dupla",
de: "Zweifachzug"
},
effect: {
en: "Draw 2 cards.",
fr: "Piochez 2 cartes.",
es: "Roba 2 cartas.",
it: "Pesca due carte.",
pt: "Compre 2 cartas.",
de: "Ziehe 2 Karten."
},
},
{
cost: [
"Fighting",
],
name: {
en: "Solar Heat",
fr: "Chaleur Solaire",
es: "Calor Solar",
it: "Calura Solare",
pt: "Calor Solar",
de: "Solarhitze"
},
effect: {
en: "If there is any Stadium card in play, this attack does 20 more damage.",
fr: "Sil y a une carte Stade en jeu, cette attaque inflige 20 dégâts supplémentaires.",
es: "Si hay alguna carta de Estadio en juego, este ataque hace 20 puntos de daño más.",
it: "Se cè in gioco una carta Stadio, questo attacco infligge 20 danni in più.",
pt: "Se houver alguma carta de Estádio em jogo, este ataque causará 20 pontos de dano a mais.",
de: "Wenn mindestens 1 Stadionkarte im Spiel ist, fügt diese Attacke 20 Schadenspunkte mehr zu."
},
damage: "20+",
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card