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

40 lines
589 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Alolan Sandshrew"
},
illustrator: "ryoma uratsuka",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Water"],
description: {
en: "Life on mountains covered with deep snow has granted this Pokémon a body of ice that's as hard as steel."
},
stage: "Basic",
attacks: [{
name: {
en: "Scratch"
},
damage: 20,
cost: ["Water"]
}],
weaknesses: [{
type: "Metal",
value: "+20"
}],
retreat: 1
}
export default card