diff --git a/index.html b/index.html index 3d2f845..ea7db50 100644 --- a/index.html +++ b/index.html @@ -14,7 +14,15 @@
-

+
+

Version 1.1: The Life Update

+
+
+
+
+

Beta v1.2 Alpha 6



-
-




- This game uses break_eternity.js by Patashu.
- Made by Jacorb
- Idea by papyrus (on discord)
- Note: If anyone wishes to make a mod of this game, that is perfectly fine with me, just make sure to name it something different (ex: Prestige Tree NG+) and to let me know on my discord. -
-




- Time Played: {{ formatTime(player.timePlayed) }}


-
Credits

-
Changelog

- Plaza dSolver


-

Hotkeys



+
+

Prestige Tree

+
+

Version 1.1: The Life Update

+
+ Made by Jacorb and Aarex +
+ Idea by papyrus (on discord) +

+
+ Jacorb's Discord
+ Aarex's Home +
+ Note by Jacorb: If anyone wishes to make a mod of this game, that is perfectly fine with me, just make sure to name it something different (ex: Prestige Tree NG+) and to let me know on my discord. +

+ Time Played: {{ formatTime(player.timePlayed) }}

+

Hotkeys


P: Prestige reset
B: Booster reset
G: Generator reset
@@ -247,7 +259,7 @@ A: Balance reset
-




+
@@ -273,51 +285,47 @@
You have

{{format(player.points)}}

Points




- - - +
- - - +
- - - - - + + +




- - - +
- - - - - - - - + + + + + +




- - - +
- - - - - - - + + + + +




- - - +
+ + +


+ +
+ + + + + + +


diff --git a/js/canvas.js b/js/canvas.js index 3ad675c..89a54db 100644 --- a/js/canvas.js +++ b/js/canvas.js @@ -53,7 +53,24 @@ function drawTree() { drawTreeBranch("q", "ba") drawTreeBranch("ss", "ba") } - + if (layerUnl('sp')) { + drawTreeBranch("m", "sp") + drawTreeBranch("ba", "sp") + } + if (layerUnl('l')) { + drawTreeBranch("hb", "l") + drawTreeBranch("m", "l") + } + if (layerUnl('ps')) { + drawTreeBranch("h", "ps") + } + if (layerUnl('hs')) { + drawTreeBranch("ss", "hs") + drawTreeBranch("ba", "hs") + } + if (layerUnl('i')) { + drawTreeBranch("ss", "i") + } needCanvasUpdate = false; } diff --git a/js/game.js b/js/game.js index 95f8e0a..d5cefb6 100644 --- a/js/game.js +++ b/js/game.js @@ -14,8 +14,8 @@ function getStartPlayer() { autosave: true, msDisplay: "always", offlineProd: true, - versionType: "beta", - version: 1.2, + versionType: "release", + version: 1.1, timePlayed: 0, hasNaN: false, points: new Decimal(10), @@ -1156,7 +1156,7 @@ const TAB_REQS = { options: function() { return true }, info: function() { return true }, changelog: function() { return true }, - credits: function() { return true }, + changelog_beta: function() { return true }, p: function() { return (player.p.unl||player.points.gte(tmp.layerReqs.p))&&layerUnl('p') }, b: function() { return (player.b.unl||player.points.gte(tmp.layerReqs.b))&&layerUnl('b') }, g: function() { return (player.g.unl||player.points.gte(tmp.layerReqs.g))&&layerUnl('g') }, @@ -1658,6 +1658,21 @@ function layerUnl(layer) { case "ba": return player.q.unl&&player.ss.unl break; + case "sp": + return false //player.m.unl&&player.ba.unl + break; + case "l": + return false //player.m.unl&&player.ba.unl + break; + case "ps": + return false //player.m.unl&&player.ba.unl + break; + case "hs": + return false //player.m.unl&&player.ba.unl + break; + case "i": + return false //player.m.unl&&player.ba.unl + break; } } diff --git a/style.css b/style.css index 2ab8bed..c944986 100644 --- a/style.css +++ b/style.css @@ -265,6 +265,31 @@ h1, h2 { text-shadow: 0px 0px 10px #409c6e; } +.sp { + background-color: #007fff; + color: black; +} + +.l { + background-color: #7fbf7f; + color: black; +} + +.ps { + background-color: #b38fbf; + color: black; +} + +.hs { + background-color: #dfdfff; + color: black; +} + +.i { + background-color: #e5dab7; + color: black; +} + #optionWheel { position: absolute; top: 0px; @@ -297,15 +322,23 @@ h1, h2 { -3px 0px 12px #02f2f2; } -#cl { +a { + color: #007fff; + text-decoration-line: none; + cursor: pointer +} + +.link { + display: block; font-size: 20px; - color: white; + color: #41f5f5; + text-decoration-line: none; cursor: pointer; -webkit-text-stroke-width: 1px; -webkit-text-stroke-color: #02f2f2; } -#cl:hover { +.link:hover { transform: scale(1.2, 1.2); text-shadow: 5px 0px 10px #02f2f2, -3px 0px 12px #02f2f2;