1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

74 lines
1.4 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 '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
name: {
en: "Lycanroc V",
fr: "Lougaroc V",
es: "Lycanroc V",
it: "Lycanroc V",
pt: "Lycanroc V",
de: "Wolwerock V"
},
rarity: "Ultra Rare",
category: "Pokemon",
hp: 200,
types: ["Fighting"],
stage: "Basic",
illustrator: "PLANETA Tsuji",
suffix: "V",
attacks: [{
name: {
en: "Rock Throw",
fr: "Jet-Pierres",
es: "Lanzarrocas",
it: "Sassata",
pt: "Rock Throw",
de: "Steinwurf"
},
damage: 40,
cost: ["Fighting"]
}, {
name: {
en: "Crashing Fangs",
fr: "Crocs Percutants",
es: "Colmillos Demoledores",
it: "Schiantazanne",
pt: "Crashing Fangs",
de: "Reißende Zähne"
},
effect: {
en: "During your next turn, this Pokémon cant attack.",
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
es: "Durante tu próximo turno, este Pokémon no puede atacar.",
it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.",
pt: "During your next turn, this Pokémon cant attack.",
de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen."
},
damage: 200,
cost: ["Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1
}
export default card