fermions: after a block is affected by pilot wave it collides with intangible mobs, but not you
This commit is contained in:
landgreen
2021-05-17 05:52:37 -07:00
parent 14dfc4a145
commit cdf98c804a
5 changed files with 54 additions and 13 deletions

View File

@@ -1489,9 +1489,9 @@
frequency: 4,
frequencyDefault: 4,
allowed() {
return tech.throwChargeRate > 1 && !tech.isNoHeals
return tech.throwChargeRate > 1 && !tech.isNoHeals && m.fieldUpgrades[m.fieldMode].name !== "pilot wave"
},
requires: "mass driver, not ergodicity",
requires: "mass driver, not ergodicity, pilot wave",
effect() {
tech.isBlockPowerUps = true
},
@@ -5110,7 +5110,7 @@
allowed() {
return m.fieldUpgrades[m.fieldMode].name === "pilot wave"
},
requires: "metamaterial cloaking",
requires: "pilot wave",
effect() {
tech.pilotForce = 0.0006
},
@@ -5118,6 +5118,24 @@
tech.pilotForce = 0.00002
}
},
{
name: "fermions",
description: "after a <strong>block</strong> is affected by <strong>pilot wave</strong> it<br><strong>collides</strong> with <strong>intangible</strong> mobs, but not you",
isFieldTech: true,
maxCount: 1,
count: 0,
frequency: 2,
allowed() {
return m.fieldUpgrades[m.fieldMode].name === "pilot wave"
},
requires: "pilot wave",
effect() {
tech.isBlockBullets = true
},
remove() {
tech.isBlockBullets = false
}
},
{
name: "cosmic string",
description: "<strong>stun</strong> and do <strong class='color-p'>radioactive</strong> <strong class='color-d'>damage</strong> to <strong>mobs</strong><br>if you tunnel through them with a <strong class='color-worm'>wormhole</strong>",
@@ -6711,11 +6729,11 @@
blockingIce: null,
isPhaseVelocity: null,
wavePacketLength: null,
isImaginaryWave: null,
waveBeamSpeed: null,
wavePacketAmplitude: null,
waveLengthRange: null,
isCollisionRealitySwitch: null,
iceIXOnDeath: null,
wimpCount: null
wimpCount: null,
isBlockBullets: null
}