1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

98 lines
1.8 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Champion\'s Path'
const card: Card = {
name: {
en: "Lycanroc",
fr: "Lougaroc",
es: "Lycanroc",
it: "Lycanroc",
pt: "Lycanroc",
de: "Wolwerock"
},
illustrator: "Ryuta Fuse",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 120,
types: [
"Fighting",
],
evolveFrom: {
en: "Rockruff",
fr: "Rocabot"
},
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Rock Throw",
fr: "Jet-Pierres",
es: "Lanzarrocas",
it: "Sassata",
pt: "Lançamento de Rocha",
de: "Steinwurf"
},
damage: 30,
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Slashing Strike",
fr: "Coup Déchirant",
es: "Golpe Cuchillazo",
it: "Lacerattacco",
pt: "Ataque Cortante",
de: "Schlitzender Schlag"
},
effect: {
en: "During your next turn, this Pokémon can't use Slashing Strike.",
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Coup Déchirant.",
es: "Durante tu próximo turno, este Pokémon no puede usar Golpe Cuchillazo.",
it: "Durante il tuo prossimo turno, questo Pokémon non può usare Lacerattacco.",
pt: "Durante o seu próximo turno, este Pokémon não poderá usar Ataque Cortante.",
de: "Während deines nächsten Zuges kann dieses Pokémon Schlitzender Schlag nicht einsetzen."
},
damage: 150,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
regulationMark: "D",
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
},
stage: "Stage1",
description: {
en: "The rocks in its mane are sharper than a knife. Fragments that break off are treasured as good luck charms."
}
}
export default card