1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +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
2.0 KiB
TypeScript
Raw Permalink 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 '../Team Up'
const card: Card = {
name: {
en: "Lapras",
fr: "Lokhlass",
es: "Lapras",
it: "Lapras",
pt: "Lapras",
de: "Lapras"
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
131,
],
hp: 130,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Confuse Ray",
fr: "Onde Folie",
es: "Rayo Confuso",
it: "Stordiraggio",
pt: "Raio da Confusão",
de: "Konfustrahl"
},
effect: {
en: "Your opponents Active Pokémon is now Confused.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
es: "El Pokémon Activo de tu rival pasa a estar Confundido.",
it: "Il Pokémon attivo del tuo avversario viene confuso.",
pt: "O Pokémon Ativo do seu oponente agora está Confuso.",
de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt."
},
},
{
cost: [
"Colorless",
],
name: {
en: "Hydro Pump",
fr: "Hydrocanon",
es: "Hidrobomba",
it: "Idropompa",
pt: "Jato dÁgua",
de: "Hydropumpe"
},
effect: {
en: "This attack does 30 more damage times the amount of Water Energy attached to this Pokémon.",
fr: "Cette attaque inflige 30 dégâts supplémentaires multipliés par le nombre dÉnergies Water attachées à ce 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 vezes a quantidade de Energia Water ligada a este Pokémon.",
de: "Diese Attacke fügt 30 Schadenspunkte mehr mal der Anzahl der an dieses Pokémon angelegten Water-Energien zu."
},
damage: "10+",
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 3,
}
export default card