1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

56 lines
853 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
dexId: [769],
set: Set,
name: {
en: "Sandygast",
fr: "Bacabouh",
es: "Sandygast",
it: "Sandygast",
pt: "Sandygast",
de: "Sankabuh"
},
rarity: "Common",
category: "Pokemon",
hp: 80,
types: ["Psychic"],
stage: "Basic",
retreat: 3,
regulationMark: "E",
illustrator: "KIYOTAKA OSHIYAMA",
description: {
en: "If you build sand mounds when you're playing, destroy them before you go home, or they may get possessed and become Sandygast."
},
attacks: [{
cost: ["Psychic"],
name: {
en: "Vibration"
},
damage: 10
}, {
cost: ["Psychic", "Psychic"],
name: {
en: "Spooky Shot"
},
damage: 30
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card