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

96 lines
2.3 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: "Lycanroc",
fr: "Lougaroc",
es: "Lycanroc",
it: "Lycanroc",
pt: "Lycanroc",
de: "Wolwerock"
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
745,
],
hp: 110,
types: [
"Fighting",
],
evolveFrom: {
en: "Rockruff",
fr: "Rocabot",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Dangerous Claws",
fr: "Griffes Redoutables",
es: "Zarpas Peligrosas",
it: "Artigli Pericolosi",
pt: "Garras Temerárias",
de: "Bedrohliche Klauen"
},
effect: {
en: "If your opponents Active Pokémon is a Basic Pokémon, this attack does 30 more damage.",
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon de base, cette attaque inflige 30 dégâts supplémentaires.",
es: "Si el Pokémon Activo de tu rival es un Pokémon Básico, este ataque hace 30 puntos de daño más.",
it: "Se il Pokémon attivo del tuo avversario è un Pokémon Base, questo attacco infligge 30 danni in più.",
pt: "Se o Pokémon Ativo do seu oponente for um Pokémon Básico, este ataque causará 30 pontos de dano a mais.",
de: "Wenn das Aktive Pokémon deines Gegners ein Basis-Pokémon ist, fügt diese Attacke 30 Schadenspunkte mehr zu."
},
damage: "30+",
},
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Corner",
fr: "Coinçage",
es: "Arrinconar",
it: "Trappola",
pt: "Quina",
de: "Bedrängen"
},
effect: {
en: "The Defending Pokémon cant retreat during your opponents next turn.",
fr: "Le Pokémon Défenseur ne peut pas battre en retraite pendant le prochain tour de votre adversaire.",
es: "El Pokémon Defensor no puede retirarse durante el próximo turno de tu rival.",
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può ritirarsi.",
pt: "O Pokémon Defensor não poderá recuar durante a próxima vez de jogar do seu oponente.",
de: "Das Verteidigende Pokémon kann sich während des nächsten Zuges deines Gegners nicht zurückziehen."
},
damage: 90,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
}
export default card