1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
TCGdex [Bot] c10020a9a9
editor: change Twilight Masquerade variants (#516)
Co-authored-by: Avior <git@avior.me>
2024-07-03 22:16:16 +02:00

68 lines
2.0 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Twilight Masquerade"
const card: Card = {
dexId: [770],
set: Set,
name: {
en: "Palossand",
fr: "Trépassable",
es: "Palossand",
it: "Palossand",
pt: "Palossand",
de: "Colossand"
},
rarity: "Common",
category: "Pokemon",
hp: 150,
types: ["Psychic"],
stage: "Stage1",
attacks: [{
cost: ["Psychic", "Colorless", "Colorless"],
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: 60
}, {
cost: ["Psychic", "Colorless", "Colorless", "Colorless"],
name: {
en: "Spooky Sand",
fr: "Sable Effrayant",
es: "Arena Embrujada",
it: "Sabbia Inquietante",
pt: "Areia Assustadora",
de: "Spuksand"
},
damage: 150
}],
retreat: 4,
regulationMark: "H",
variants: {
holo: false
}
}
export default card