why mode is now 20% easier, but still 25% harder than hard mode
  easy:1, normal:2, hard:4, why:6->5

new community map unchartedCave by 3xionDev!

Newtons 1st law 66->88% defense when moving fast
Newtons 2nd law 66->88% damage when moving fast
CIWS energy 20->18 per shot
rupture disables reel and tokamak
This commit is contained in:
landgreen
2023-12-10 19:33:49 -08:00
parent ad33cf68ea
commit 2d12f1da42
7 changed files with 462 additions and 47 deletions

View File

@@ -305,17 +305,14 @@ const build = {
// console.log(localSettings.isHideImages, from)
},
hideHUD() {
if (simulation.isTraining) {
localSettings.isHideHUD = false
} else {
localSettings.isHideHUD = !localSettings.isHideHUD
}
if (localSettings.isAllowed) localStorage.setItem("localSettings", JSON.stringify(localSettings)); //update local storage
document.getElementById("hide-hud").checked = localSettings.isHideHUD
document.getElementById("hide-hud").classList.toggle("ticked")
simulation.removeEphemera("dmgDefBars")
if (!localSettings.isHideHUD) {
simulation.ephemera.push({
@@ -791,9 +788,9 @@ ${simulation.isCheating ? "<br><br><em>lore disabled</em>" : ""}
<div>
<select name="difficulty-select" id="difficulty-select-experiment">
<option value="1">easy</option>
<option value="2" selected>normal</option>
<option value="4">hard</option>
<option value="6">why</option>
<option value="2" selected>normal</option>
<option value="4">hard</option>
<option value="5">why</option>
</select>
&nbsp; &nbsp;
<label for="hide-images-experiment" title="reload experiment with no images for fields, guns, and tech" style="font-size: 0.85em;">hide images</label>