1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-05 05:09:53 +00:00

40 lines
601 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Shellos"
},
illustrator: "Teeziro",
rarity: "One Diamond",
category: "Pokemon",
hp: 70,
types: ["Water"],
description: {
en: "It used to have a shell on its back long ago.<br />This species is closely related to Pokémon<br />like Shellder."
},
stage: "Basic",
attacks: [{
name: {
en: "Mud-Slap"
},
damage: 30,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 2
}
export default card