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

40 lines
625 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Extradimensional Crisis"
const card: Card = {
set: Set,
name: {
en: "Sandygast"
},
illustrator: "Yuka Morii",
rarity: "One Diamond",
category: "Pokemon",
hp: 80,
types: ["Fighting"],
description: {
en: "If it loses its shovel, it will stick something\nelse—like a branch—in its head to make\ndo until it finds another shovel."
},
stage: "Basic",
attacks: [{
name: {
en: "Sandy Shot"
},
damage: 30,
cost: ["Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "+20"
}],
retreat: 2
}
export default card