1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 18:39:54 +00:00

40 lines
575 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Shellder"
},
illustrator: "Midori Harada",
rarity: "One Diamond",
category: "Pokemon",
hp: 70,
types: ["Water"],
description: {
en: "It is encased in a shell that is harder than diamond. Inside, however, it is surprisingly tender."
},
stage: "Basic",
attacks: [{
name: {
en: "Tackle"
},
damage: 10,
cost: ["Water"]
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1
}
export default card