Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion parts/eventsets/attacker_u.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ return {
P:win('finish')
else
local s
local t=800-10*D.wave-- 800~700~600~500
local t=800-10*math.min(D.wave,30)-- 800~700~600~500
if D.wave<10 then
table.insert(P.atkBuffer,{line=generateLine(P.holeRND:random(5,6)),amount=9,countdown=t,cd0=t,time=0,sent=false,lv=3})
table.insert(P.atkBuffer,{line=generateLine(P.holeRND:random(4,7)),amount=11,countdown=t,cd0=t+62,time=0,sent=false,lv=4})
Expand Down
2 changes: 1 addition & 1 deletion parts/eventsets/defender_n.lua
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ return {
P:_showText(text.awesome,0,-140,100,'appear',.6)
P.gameEnv.pushSpeed=3
P.dropDelay,P.gameEnv.drop=10,10
elseif D.wave==180 then
elseif D.wave==140 then
P.dropDelay,P.gameEnv.drop=5,5
P:_showText(text.maxspeed,0,-140,100,'appear',.6)
end
Expand Down
Loading