mirror of
https://github.com/IvarK/AntimatterDimensionsSourceCode.git
synced 2024-11-22 20:22:51 +00:00
add pelle effects modal
This commit is contained in:
parent
c1ccf93b93
commit
f0ed1a8e6a
@ -56,6 +56,7 @@ import GlyphSetSaveDeleteModal from "@/components/modals/GlyphSetSaveDeleteModal
|
|||||||
import RealityGlyphCreationModal from "@/components/modals/RealityGlyphCreationModal";
|
import RealityGlyphCreationModal from "@/components/modals/RealityGlyphCreationModal";
|
||||||
import EnslavedHintsModal from "@/components/modals/EnslavedHintsModal";
|
import EnslavedHintsModal from "@/components/modals/EnslavedHintsModal";
|
||||||
import SingularityMilestonesModal from "@/components/modals/SingularityMilestonesModal";
|
import SingularityMilestonesModal from "@/components/modals/SingularityMilestonesModal";
|
||||||
|
import PelleEffectsModal from "@/components/modals/PelleEffectsModal";
|
||||||
|
|
||||||
|
|
||||||
export class Modal {
|
export class Modal {
|
||||||
@ -167,6 +168,7 @@ Modal.automatorScriptTemplate = new Modal(AutomatorScriptTemplate);
|
|||||||
Modal.shop = new Modal(StdStoreModal);
|
Modal.shop = new Modal(StdStoreModal);
|
||||||
Modal.studyString = new Modal(StudyStringModal);
|
Modal.studyString = new Modal(StudyStringModal);
|
||||||
Modal.singularityMilestones = new Modal(SingularityMilestonesModal);
|
Modal.singularityMilestones = new Modal(SingularityMilestonesModal);
|
||||||
|
Modal.pelleEffects = new Modal(PelleEffectsModal);
|
||||||
Modal.sacrifice = new Modal(SacrificeModal);
|
Modal.sacrifice = new Modal(SacrificeModal);
|
||||||
Modal.breakInfinity = new Modal(BreakInfinityModal);
|
Modal.breakInfinity = new Modal(BreakInfinityModal);
|
||||||
Modal.celestialQuote = new class extends Modal {
|
Modal.celestialQuote = new class extends Modal {
|
||||||
|
@ -16,7 +16,6 @@ export default {
|
|||||||
"All infinity multipliers and infinity generation are disabled",
|
"All infinity multipliers and infinity generation are disabled",
|
||||||
"All eternity multipliers and eternity generation are disabled",
|
"All eternity multipliers and eternity generation are disabled",
|
||||||
"Black Hole is disabled",
|
"Black Hole is disabled",
|
||||||
"Charged Infinity Upgrades are disabled",
|
|
||||||
"All \"Start with X currency\" rewards are disabled",
|
"All \"Start with X currency\" rewards are disabled",
|
||||||
"All pre-doomed Dilated Time multipliers are disabled except the 2x buyable",
|
"All pre-doomed Dilated Time multipliers are disabled except the 2x buyable",
|
||||||
"All Tachyon Particle multipliers are disabled",
|
"All Tachyon Particle multipliers are disabled",
|
||||||
@ -34,6 +33,7 @@ export default {
|
|||||||
"Tickspeed Autobuyer is disabled until reacquired",
|
"Tickspeed Autobuyer is disabled until reacquired",
|
||||||
"Time Theorem Autobuyer is disabled",
|
"Time Theorem Autobuyer is disabled",
|
||||||
"All Effarig effects are disabled",
|
"All Effarig effects are disabled",
|
||||||
|
"Charged Infinity Upgrades are disabled",
|
||||||
"Continumm is disabled",
|
"Continumm is disabled",
|
||||||
"Singularity rewards are disabled",
|
"Singularity rewards are disabled",
|
||||||
"Glyph Alchemy effects are disabled",
|
"Glyph Alchemy effects are disabled",
|
||||||
@ -78,13 +78,21 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="c-modal-message l-modal-content--centered">
|
<div class="l-modal-content--centered">
|
||||||
<ModalCloseButton
|
<ModalCloseButton
|
||||||
v-if="modal.closeButton"
|
v-if="modal.closeButton"
|
||||||
class="c-modal__close-btn--tiny"
|
class="c-modal__close-btn--tiny"
|
||||||
@click="emitClose"
|
@click="emitClose"
|
||||||
/>
|
/>
|
||||||
<h1>List of disabled effects in Doomed</h1>
|
<h1>List of disabled effects in Doomed</h1>
|
||||||
|
<div class="pelle-effects-container">
|
||||||
|
<p
|
||||||
|
v-for="(nerf, idx) in nerfs"
|
||||||
|
:key="idx"
|
||||||
|
>
|
||||||
|
{{ nerf }}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
<PrimaryButton
|
<PrimaryButton
|
||||||
class="o-primary-btn--width-medium c-modal-message__okay-btn c-modal__confirm-btn"
|
class="o-primary-btn--width-medium c-modal-message__okay-btn c-modal__confirm-btn"
|
||||||
@click="handleClick"
|
@click="handleClick"
|
||||||
@ -93,3 +101,14 @@ export default {
|
|||||||
</PrimaryButton>
|
</PrimaryButton>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.pelle-effects-container {
|
||||||
|
height: 40rem;
|
||||||
|
overflow-y: scroll;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
</style>
|
@ -1,13 +1,21 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="l-pelle-celestial-tab">
|
<div class="l-pelle-celestial-tab">
|
||||||
<div v-if="isDoomed">
|
<div v-if="isDoomed">
|
||||||
<button
|
<div class="button-container">
|
||||||
v-if="strikes.length"
|
<button
|
||||||
class="o-pelle-button"
|
v-if="strikes.length"
|
||||||
@click="toggleCompact"
|
class="o-pelle-button"
|
||||||
>
|
@click="toggleCompact"
|
||||||
{{ compact ? "Show all Strikes and Rifts" : "Condense Strikes and Rifts" }}
|
>
|
||||||
</button>
|
{{ compact ? "Show all Strikes and Rifts" : "Condense Strikes and Rifts" }}
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
class="o-pelle-button"
|
||||||
|
@click="showModal"
|
||||||
|
>
|
||||||
|
Show effects in Doomed Reality
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
<div class="c-pelle-upgrade-container">
|
<div class="c-pelle-upgrade-container">
|
||||||
<PelleStrike
|
<PelleStrike
|
||||||
v-for="strike in strikes"
|
v-for="strike in strikes"
|
||||||
@ -108,6 +116,9 @@ export default {
|
|||||||
Autobuyer.bigCrunch.mode = AUTO_CRUNCH_MODE.AMOUNT;
|
Autobuyer.bigCrunch.mode = AUTO_CRUNCH_MODE.AMOUNT;
|
||||||
disChargeAll();
|
disChargeAll();
|
||||||
},
|
},
|
||||||
|
showModal() {
|
||||||
|
Modal.pelleEffects.show();
|
||||||
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
rebuyables: () => PelleRebuyableUpgrade.all,
|
rebuyables: () => PelleRebuyableUpgrade.all,
|
||||||
@ -134,6 +145,7 @@ export default {
|
|||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
font-family: Typewriter;
|
font-family: Typewriter;
|
||||||
|
margin: 0 1rem;
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition-duration: 0.12s;
|
transition-duration: 0.12s;
|
||||||
|
Loading…
Reference in New Issue
Block a user