1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

74 lines
2.1 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 '../Shining Fates'
const card: Card = {
set: Set,
name: {
fr: "Lokhlass V",
en: "Lapras V",
es: "Lapras V",
it: "Lapras V",
pt: "Lapras V",
de: "Lapras V"
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
hp: 210,
types: ["Water"],
attacks: [{
name: {
fr: "Body Surf",
en: "Body Surf",
es: "Surfeo Corporal",
it: "Surf Libero",
pt: "Pegar Jacaré",
de: "Bodysurfen"
},
effect: {
fr: "Attachez une carte Énergie Water de votre main à ce Pokémon. Dans ce cas, échangez-le contre lun de vos Pokémon de Banc.",
en: "Attach a Water Energy card from your hand to this Pokémon. If you do, switch it with 1 of your Benched Pokémon.",
es: "Une 1 carta de Energía Water de tu mano a este Pokémon. Si lo haces, cámbialo por 1 de tus Pokémon en Banca.",
it: "Assegna a questo Pokémon una carta Energia Water dalla tua mano. Se lo fai, scambialo con uno della tua panchina.",
pt: "Ligue 1 carta de Energia Water da sua mão a este Pokémon. Se fizer isto, troque-o por 1 dos seus Pokémon no Banco.",
de: "Lege 1 Water-Energiekarte aus deiner Hand an dieses Pokémon an. Wenn du das machst, tausche es gegen 1 Pokémon auf deiner Bank aus."
},
cost: ["Colorless"]
}, {
name: {
fr: "Boucle Océanique",
en: "Ocean Loop",
es: "Bucle Oceánico",
it: "Circuito Oceanico",
pt: "Loop Oceânico",
de: "Meereskreislauf"
},
effect: {
fr: "Ajoutez à votre main 2 Énergies Water attachées à ce Pokémon.",
en: "Put 2 Water Energy attached to this Pokémon into your hand.",
es: "Pon 2 Energías Water unidas a este Pokémon en tu mano.",
it: "Prendi due Energie Water assegnate a questo Pokémon e aggiungile alle carte che hai in mano.",
pt: "Coloque 2 cartas de Energia Water ligadas a este Pokémon na sua mão.",
de: "Nimm 2 an dieses Pokémon angelegte Water-Energien auf deine Hand."
},
damage: 210,
cost: ["Water", "Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card