mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
68 lines
1.9 KiB
TypeScript
68 lines
1.9 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Twilight Masquerade"
|
|
|
|
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: 90,
|
|
types: ["Psychic"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Psychic"],
|
|
|
|
name: {
|
|
en: "Sand Attack",
|
|
fr: "Jet de Sable",
|
|
es: "Ataque Arena",
|
|
it: "Turbosabbia",
|
|
pt: "Ataque de Areia",
|
|
de: "Sandwirbel"
|
|
},
|
|
|
|
effect: {
|
|
en: "During your opponent's next turn, if the Defending Pokémon tries to use an attack, your opponent flips a coin. If tails, that attack doesn't happen.",
|
|
fr: "Pendant le prochain tour de votre adversaire, si le Pokémon Défenseur essaie d'utiliser une attaque, votre adversaire lance une pièce. Si c'est pile, l'attaque n'est pas lancée.",
|
|
es: "Durante el próximo turno de tu rival, si el Pokémon Defensor intenta usar un ataque, tu rival lanza 1 moneda. Si sale cruz, ese ataque no se lleva a cabo.",
|
|
it: "Durante il prossimo turno del tuo avversario, se il Pokémon difensore prova a usare un attacco, il tuo avversario lancia una moneta. Se esce croce, quell'attacco non ha luogo.",
|
|
pt: "Durante o próximo turno do seu oponente, se o Pokémon Defensor tentar usar um ataque, seu oponente jogará uma moeda. Se sair coroa, aquele ataque não acontecerá.",
|
|
de: "Wenn das Verteidigende Pokémon während des nächsten Zuges deines Gegners versucht, eine Attacke einzusetzen, wirft dein Gegner 1 Münze. Bei Zahl wird jene Attacke nicht ausgeführt."
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Psychic", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Spooky Shot",
|
|
fr: "Tir Effrayant",
|
|
es: "Disparo Embrujado",
|
|
it: "Colpomistero",
|
|
pt: "Tiro Assustador",
|
|
de: "Spukschuss"
|
|
},
|
|
|
|
damage: 30
|
|
}],
|
|
|
|
retreat: 3,
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |