1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 17:57:51 +00:00
2025-02-07 00:51:20 +01:00

41 lines
540 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Promos-A"
const card: Card = {
set: Set,
name: {
en: "Lapras ex"
},
illustrator: "PLANETA CG Works",
rarity: "None",
category: "Pokemon",
types: ["Water"],
stage: "Basic",
attacks: [{
name: {
en: "Bubble Drain"
},
cost: ["Water", "Water", "Colorless"],
damage: 80,
effect: {
en: "Heal 20 damage from this Pokémon."
}
}],
hp: 140,
suffix: "EX",
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 3
}
export default card