summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVittorio Romeo <vittorio.romeo@outlook.com>2021-10-31 18:09:55 +0000
committerVittorio Romeo <vittorio.romeo@outlook.com>2021-10-31 18:09:55 +0000
commit460aabcf67bed50d0d86326f69ac8438cbcf43f7 (patch)
tree23c29560f2412d9586ae33cc5bae87c805e407dc
parent852e5dec530550ae895d0280d1d26fe23af07615 (diff)
Make spirals easier in low difficulty mult apeirogon
-rw-r--r--_RELEASE/Packs/cube/Scripts/Levels/apeirogon.lua10
1 files changed, 9 insertions, 1 deletions
diff --git a/_RELEASE/Packs/cube/Scripts/Levels/apeirogon.lua b/_RELEASE/Packs/cube/Scripts/Levels/apeirogon.lua
index 754d37da..6ac770a8 100644
--- a/_RELEASE/Packs/cube/Scripts/Levels/apeirogon.lua
+++ b/_RELEASE/Packs/cube/Scripts/Levels/apeirogon.lua
@@ -29,7 +29,15 @@ function addPattern(mKey)
if l_getSides() > 5 then
pWallExVortex(0, u_rndInt(1, 2), 1)
end
- elseif mKey == 6 then pDMBarrageSpiral(u_rndInt(3, 6), 0.295 * (u_getDifficultyMult() ^ 0.56), 1)
+ elseif mKey == 6 then
+ if u_getDifficultyMult() < 1.0 then
+ local oldThickness = THICKNESS
+ THICKNESS = 60
+ pDMBarrageSpiral(u_rndInt(2, 4), 0.12, 1)
+ THICKNESS = oldThickness
+ else
+ pDMBarrageSpiral(u_rndInt(3, 6), 0.295 * (u_getDifficultyMult() ^ 0.56), 1)
+ end
elseif mKey == 7 then pRandomBarrage(u_rndInt(2, 5), 2.25)
elseif mKey == 8 then pMirrorSpiralDouble(u_rndInt(4, 6), 0)
elseif mKey == 9 then pMirrorSpiral(u_rndInt(2, 4), 0)