1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-04 20:59:55 +00:00

40 lines
615 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Mareanie"
},
illustrator: "Saya Tsuruta",
rarity: "One Diamond",
category: "Pokemon",
hp: 70,
types: ["Darkness"],
description: {
en: "This Pokémon wanders the seaside looking for food. It often gets electric shocks from broken Pincurchin spines that it tries to eat."
},
stage: "Basic",
attacks: [{
name: {
en: "Pierce"
},
damage: 20,
cost: ["Darkness"]
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 2
}
export default card