mirror of
https://github.com/IvarK/AntimatterDimensionsSourceCode.git
synced 2025-02-16 23:50:17 +00:00
Address PR feedback (spec/holiday-bugfixes)
This commit is contained in:
parent
c1acb9ac9e
commit
82697fa8e2
@ -51,10 +51,10 @@ export const Effarig = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
get glyphEffectAmount() {
|
get glyphEffectAmount() {
|
||||||
const genEffectBitmask = Glyphs.activeList
|
const genEffectBitmask = Glyphs.activeWithoutCompanion
|
||||||
.filter(g => generatedTypes.includes(g.type))
|
.filter(g => generatedTypes.includes(g.type))
|
||||||
.reduce((prev, curr) => prev | curr.effects, 0);
|
.reduce((prev, curr) => prev | curr.effects, 0);
|
||||||
const nongenEffectBitmask = Glyphs.activeList
|
const nongenEffectBitmask = Glyphs.activeWithoutCompanion
|
||||||
.filter(g => !generatedTypes.includes(g.type))
|
.filter(g => !generatedTypes.includes(g.type))
|
||||||
.reduce((prev, curr) => prev | curr.effects, 0);
|
.reduce((prev, curr) => prev | curr.effects, 0);
|
||||||
return countValuesFromBitmask(genEffectBitmask) + countValuesFromBitmask(nongenEffectBitmask);
|
return countValuesFromBitmask(genEffectBitmask) + countValuesFromBitmask(nongenEffectBitmask);
|
||||||
|
@ -172,9 +172,6 @@ export default {
|
|||||||
Cost: {{ format(unlockCost) }} IP
|
Cost: {{ format(unlockCost) }} IP
|
||||||
</PrimaryButton>
|
</PrimaryButton>
|
||||||
<template v-else>
|
<template v-else>
|
||||||
<div v-if="isInEC8">
|
|
||||||
You have {{ quantifyInt("purchase", ec8Purchases) }} left.
|
|
||||||
</div>
|
|
||||||
<div v-if="isDoomed">
|
<div v-if="isDoomed">
|
||||||
Your Replicanti cap has been removed due to the second {{ scrambledText }} milestone.
|
Your Replicanti cap has been removed due to the second {{ scrambledText }} milestone.
|
||||||
</div>
|
</div>
|
||||||
@ -192,6 +189,9 @@ export default {
|
|||||||
<span v-html="boostText" />
|
<span v-html="boostText" />
|
||||||
</p>
|
</p>
|
||||||
<br>
|
<br>
|
||||||
|
<div v-if="isInEC8">
|
||||||
|
You have {{ quantifyInt("purchase", ec8Purchases) }} left within Eternity Challenge 8.
|
||||||
|
</div>
|
||||||
<div class="l-replicanti-upgrade-row">
|
<div class="l-replicanti-upgrade-row">
|
||||||
<ReplicantiUpgradeButton :setup="replicantiChanceSetup" />
|
<ReplicantiUpgradeButton :setup="replicantiChanceSetup" />
|
||||||
<ReplicantiUpgradeButton :setup="replicantiIntervalSetup" />
|
<ReplicantiUpgradeButton :setup="replicantiIntervalSetup" />
|
||||||
|
Loading…
Reference in New Issue
Block a user