timeskip
This commit is contained in:
@@ -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>",
|
||||
|
||||
Reference in New Issue
Block a user