mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-21 07:39:54 +00:00
31 lines
450 B
TypeScript
31 lines
450 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: "Four Diamond",
|
|
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."
|
|
}
|
|
}]
|
|
}
|
|
|
|
export default card |