Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
0i00000000a7 committed Jun 30, 2024
1 parent 46cf2d2 commit 2de8151
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions scripts/changelog.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
const changelog = [
{
version: "0.2.4.5",
changes: [
"修改<spoiler>平方挑战5</spoiler>奖励",
]
},
{
version: "0.2.4.4",
changes: [
Expand Down
2 changes: 1 addition & 1 deletion scripts/square.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,6 @@ const sq_chal = [{
return hasSqUpg(8)
},
goal: E(2).pow(1024),
get reward() {return `每秒获取10%点数<sup>2</sup><br>√点数复制速度×100<br>解锁${wordShift.randomCrossWords("?????",10)}`},
get reward() {return `每秒获取10%点数<sup>2</sup><br>点数<sup>2</sup>基础效果^2<br>解锁${wordShift.randomCrossWords("?????",10)}`},
},
]
5 changes: 3 additions & 2 deletions scripts/temp.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ const tmp = {
if (player.square.chals.includes(1) && player.points.gte(1e10)) buff = buff.mul(player.points.slog(10))
if (player.square.chals.includes(2) && (player.sqrt.points.lt(Number.MAX_VALUE) || (hasSqUpg(7) && player.chal != 5))) buff = buff.mul(player.dims[8][4].add(10).log10())
if (hasSqChal(4)) buff = buff.mul(Math.PI)
if (hasSqChal(5)) buff = buff.mul(100)
return mult.root(debuff).pow(buff).min("1e10")
},
get galaxyEffect() {
Expand Down Expand Up @@ -83,7 +82,9 @@ const tmp = {
return player.points.div("1e485").root(300).div(10).floor()
},
get effect() {
return player.square.total.add(1).logBase(2).add(1)
let eff = player.square.total.add(1).logBase(2).add(1)
if (hasSqChal(5)) eff = eff.pow(2)
return eff
},
get chal1cap() {
return E(10).mul(E(0.99).pow(player.square.resetTime))
Expand Down

0 comments on commit 2de8151

Please sign in to comment.