1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +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

60 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 '../Shining Fates'
const card: Card = {
set: Set,
name: {
fr: "Lokhlass VMAX",
en: "Lapras VMAX",
es: "Lapras VMAX",
it: "Lapras VMAX",
pt: "Lapras VMAX",
de: "Lapras VMAX"
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
hp: 320,
types: ["Water"],
evolveFrom: {
fr: "Lokhlass-V",
en: "Lapras V"
},
attacks: [{
name: {
fr: "Pompe G-Max",
en: "G-Max Pump",
es: "Gigabomba",
it: "Gigapompa",
pt: "Jato G-Max",
de: "Giga-Pumpe"
},
effect: {
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Énergie Water attachée à ce Pokémon.",
en: "This attack does 30 more damage for each Water Energy attached to this Pokémon.",
es: "Este ataque hace 30 puntos de daño más por cada Energía Water unida a este Pokémon.",
it: "Questo attacco infligge 30 danni in più per ogni Energia Water assegnata a questo Pokémon.",
pt: "Este ataque causa 30 pontos de dano a mais para cada Energia Water ligada a este Pokémon.",
de: "Diese Attacke fügt für jede an dieses Pokémon angelegte Water-Energie 30 Schadenspunkte mehr zu."
},
damage: "90+",
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 3,
regulationMark: "D",
stage: "VMAX"
}
export default card