This commit is contained in:
Nif 2024-03-19 08:21:20 +00:00
parent ee282325a7
commit 30e74619bf
2 changed files with 10 additions and 6 deletions

View file

@ -7,7 +7,7 @@ addLayer("i", {
points: new Decimal(0)
}},
color: "#a62222",
requires: Decimal.pow(2, 128), // Can be a function that takes requirement increases into account
requires: Decimal.pow(2, 127), // Can be a function that takes requirement increases into account
resource: "integrals", // Name of prestige currency
baseResource: "points", // Name of resource prestige is based on
baseAmount() {return player.points}, // Get the current amount of baseResource

View file

@ -13,14 +13,18 @@ let modInfo = {
// Set your version in num and name
let VERSION = {
num: "1.1",
name: "Slight Adjustments",
num: "1.2",
name: "First Release",
}
let changelog = `<h1>Changelog:</h1><br><br>
<h3>v1.1 Slight Adjustments</h3><br>
- Made all renders of Decimal objects use format()<br>
- Adjusted file costs and filestone 2 effect<br><br>
<h3>v1.2</h3><br>
- Added a few missing format() calls.<br>
- Added a note for the hardcap.<br>
- Decreased Integral requirement.<br><br>
<h3>v1.1</h3><br>
- Made all renders of Decimal objects use format().<br>
- Adjusted file costs and filestone 2 effect.<br><br>
<h3>v1.0 First Release</h3><br>
- Added Progress, Super Progress, and File layers.<br>
- Added bars Alpha to Lambda.<br>