This commit is contained in:
landgreen
2020-03-31 06:01:54 -07:00
parent 860daf9160
commit fc34952a86
5 changed files with 46 additions and 34 deletions

View File

@@ -584,24 +584,6 @@ const b = {
b.isModEntanglement = false;
}
},
{
name: "ground state",
description: "reduce <strong>harm</strong> by <strong>67%</strong><br>you <strong>no longer</strong> passively regenerate <strong class='color-f'>energy</strong>",
maxCount: 1,
count: 0,
allowed() {
return true
},
requires: "",
effect: () => {
b.modEnergyRegen = 0;
mech.fieldRegen = b.modEnergyRegen;
},
remove() {
b.modEnergyRegen = 0.005;
mech.fieldRegen = b.modEnergyRegen;
}
},
{
name: "piezoelectricity",
description: "<strong>colliding</strong> with mobs fills your <strong class='color-f'>energy</strong><br><strong>15%</strong> less <strong>harm</strong> from mob collisions",
@@ -619,6 +601,24 @@ const b = {
b.isModPiezo = false;
}
},
{
name: "ground state",
description: "reduce <strong>harm</strong> by <strong>50%</strong><br>you <strong>no longer</strong> passively regenerate <strong class='color-f'>energy</strong>",
maxCount: 1,
count: 0,
allowed() {
return b.isModPiezo
},
requires: "piezoelectricity",
effect: () => {
b.modEnergyRegen = 0;
mech.fieldRegen = b.modEnergyRegen;
},
remove() {
b.modEnergyRegen = 0.001;
mech.fieldRegen = b.modEnergyRegen;
}
},
{
name: "energy conservation",
description: "<strong>15%</strong> of <strong class='color-d'>damage</strong> done is recovered as <strong class='color-f'>energy</strong>",