1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-01 03:59:54 +00:00

40 lines
628 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Alolan Grimer"
},
illustrator: "Akira Komayama",
rarity: "One Diamond",
category: "Pokemon",
hp: 70,
types: ["Darkness"],
description: {
en: "There are a hundred or so of them living in Alola's waste-disposal site. They're all hard workers who eat a lot of trash."
},
stage: "Basic",
attacks: [{
name: {
en: "Sludge Toss"
},
damage: 30,
cost: ["Darkness", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 2
}
export default card