Skip to content

Commit

Permalink
r
Browse files Browse the repository at this point in the history
  • Loading branch information
Icecreamdudes committed Oct 26, 2024
1 parent 9c74e03 commit 97e105a
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 2 deletions.
36 changes: 36 additions & 0 deletions js/checkback.js
Original file line number Diff line number Diff line change
Expand Up @@ -2206,6 +2206,42 @@
unlocked() { return player.cb.petDisplayIndex == 0 },

},
eggGuy: {
title: "Egg Guy",
body() { return "This fellow came out of a very powerful chicken... However he would meet his fate when the chicken inside hatches..." },
unlocked() { return player.cb.petDisplayIndex == 1 },

},
unsmith: {
title: "Unsmith",
body() { return "A creature that was synergized out of the purest form of SPV, which we don't know what it is yet... We will figure it out one day." },
unlocked() { return player.cb.petDisplayIndex == 2 },

},
gdCheckpoint: {
title: "Gd Checkpoint",
body() { return "This guy feels a little bit familiar, but you don't know why. You just ignore it." },
unlocked() { return player.cb.petDisplayIndex == 3 },

},
slax: {
title: "Slax",
body() { return "A being of neon green and plasma. The energy of the void radiates within it's presence." },
unlocked() { return player.cb.petDisplayIndex == 4 },

},
spider: {
title: "Spider",
body() { return "This eight-legged bug has no place in these worlds, but a small crack in the fabric of reality made it slip through and gain enough power to be your pet." },
unlocked() { return player.cb.petDisplayIndex == 5 },

},
blob: {
title: "Blob",
body() { return "Blob." },
unlocked() { return player.cb.petDisplayIndex == 5 },

},
},
microtabs: {
stuff: {
Expand Down
2 changes: 1 addition & 1 deletion js/infinity.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var tree = [["ad", "ip", "id"], ["ga", "ta", "bi", "om"], ["tad", "ca"]]
var tree = [["ad", "ip", "id"], ["tad", "ta", "bi", "om"], ["ga", "ca"]]
addLayer("in", {
name: "Universe 2", // This is optional, only used in a few places, If absent it just uses the layer id.
symbol: "2", // This appears on the layer's node. Default is the id with the first letter capitalized
Expand Down
25 changes: 24 additions & 1 deletion js/mod.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,34 @@ let credits = `<h1>Credits:</h1><br>
`

let changelog = `<h1>Changelog:</h1><br>
<h3>v1.0</h3><br>
<h3>v1.1 - The Pet Update Part 1 - With Bugfixes</h3><br>
- CONTAINS MAJOR SPOILERS FOR THE ENTIRE GAME. READ WITH CAUTION.<br>
<br>
<br>
<br>
Content:<br>
- Added 3 new pet evolutions, for spider, clock, and drippy ufo.<br>
- Added 3 new features to go with the evolutions: advanced halter, shard buttons and moonstone.<br><br>
Bugfixes:<br>
- Fixed volume slider not working properly.<br>
- Multiple NaN bugs.<br>
- Fixed grass spawning incorrectly on tab switches.<br>
- Fixed many negative number issues.<br>
- Fixed bug where pop-ups would stack over each other.<br>
- Fixed big crunch screen bug.<br>
- Fixed latin1 character range export bug.<br><br>
QoL:<br>
- Fixed typos.<br>
- Added factor and rank total mult text.<br>
- Improved pet visuals.<br>
- Added a "max all" button for antimatter dimensions.<br>
- Made Tav's Domain a separate layer.<br>
Balancing:<br>
- Rocket Fuel no longer resets pent milestones.<br>
- Buffed grass, rocket fuel, and ranks.<br>
- Changed some pet evolution requirements.<br>
- Made some challenges easier.<br><br>
<h3>v1.0</h3><br>
- Added Universe 1, Universe 2, and Alternate Universe 1.<br>
- Added Ranks, Tiers, Tetrs, Pents, Factors, Prestige, Trees, Grass, Grasshop, and Code Experience.<br>
- Added Check Back.<br>
Expand Down
1 change: 1 addition & 0 deletions js/tavDomain.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"background-origin": "border-box",
"border-color": "#b2d8d8",
"color": "#b2d8d8",
"transform": "scale(0.7)",
};
},

Expand Down

0 comments on commit 97e105a

Please sign in to comment.