1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-15 22:29:51 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Eevee Grove/094.ts

44 lines
701 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Eevee Grove"
const card: Card = {
set: Set,
name: {
en: "Lapras"
},
illustrator: "Nelnal",
rarity: "One Shiny",
category: "Pokemon",
hp: 100,
types: ["Water"],
description: {
en: "A smart and kindhearted Pokémon,\nit glides across the surface of the sea while\nits beautiful song echoes around it."
},
stage: "Basic",
attacks: [{
name: {
en: "Hydro Pump"
},
damage: 20,
cost: ["Water"],
effect: {
en: "If this Pokémon has at least 3 extra {W} Energy attached, this attack does 70 more damage."
}
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 2
}
export default card