1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 18:39:54 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

88 lines
1.7 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 '../HeartGold SoulSilver'
const card: Card = {
name: {
en: "Lapras",
fr: "Lokhlass",
de: "Lapras"
},
illustrator: "Suwama Chiaki",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
131,
],
hp: 90,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Ice Beam",
fr: "Laser glace",
de: "Eisstrahl"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si cest face, le Pokémon Défenseur est maintenant Paralysé.",
de: "Wirf eine Münze. Bei \"Kopf\" ist das Verteidigende Pokémon jetzt gelähmt."
},
damage: 20,
},
{
cost: [
"Water",
"Water",
],
name: {
en: "Ice Blade",
fr: "Lame de glace",
de: "Eisklinge"
},
effect: {
en: "Choose 1 of your opponents Pokémon. This attack does 30 damage to that Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Choisissez lun des Pokémon de votre adversaire. Cette attaque inflige 30 dégâts à ce Pokémon. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon du Banc.)",
de: "Wähle 1 Pokémon deines Gegners. Dieser Angriff fügt dem gewählten Pokémon 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 2,
description: {
en: "They have gentle hearts. Because they rarely fight, many have been caught. Their number has dwindled."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card