1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +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 '../Forbidden Light'
const card: Card = {
name: {
en: "Lycanroc",
fr: "Lougaroc",
es: "Lycanroc",
it: "Lycanroc",
pt: "Lycanroc",
de: "Wolwerock"
},
illustrator: "Megumi Mizutani",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
745,
],
hp: 120,
types: [
"Fighting",
],
evolveFrom: {
en: "Rockruff",
fr: "Rocabot",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Dangerous Rogue",
fr: "Dangereux Truand",
es: "Pícaro Peligroso",
it: "Pericolo Ferale",
pt: "Trapaceiro Perigoso",
de: "Gaunergefahr"
},
effect: {
en: "This attack does 20 more damage for each of your opponents Benched Pokémon.",
fr: "Cette attaque inflige 20 dégâts supplémentaires pour chaque Pokémon de Banc de votre adversaire.",
es: "Este ataque hace 20 puntos de daño más por cada Pokémon en Banca de tu rival.",
it: "Questo attacco infligge 20 danni in più per ogni Pokémon nella panchina del tuo avversario.",
pt: "Este ataque causa 20 pontos de dano a mais para cada Pokémon no Banco do seu oponente.",
de: "Diese Attacke fügt 20 Schadenspunkte mehr mal der Anzahl der Pokémon auf der Bank deines Gegners zu."
},
damage: "20+",
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Accelerock",
fr: "Vif Roc",
es: "Roca Veloz",
it: "Rocciarapida",
pt: "Rocha Veloz",
de: "Turbofelsen"
},
damage: 100,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
}
export default card