diff --git a/parts/modes/round_e.lua b/parts/modes/round_e.lua index 1a9e6162..173632ee 100644 --- a/parts/modes/round_e.lua +++ b/parts/modes/round_e.lua @@ -23,7 +23,7 @@ return{ }, load=function() PLY.newPlayer(1) - PLY.newAIPlayer(2,BOT.template{type='CC',speedLV=8,next=1,hold=true,node=8000}) + PLY.newAIPlayer(2,BOT.template{type='9S',speedLV=7,hold=false}) end, score=function(P)return{P.stat.piece,P.stat.time}end, scoreDisp=function(D)return D[1].." Pieces "..STRING.time(D[2])end, @@ -32,9 +32,9 @@ return{ if P.result=='win'then local T=P.stat.piece return - T<=7*8 and 5 or - T<=7*10 and 4 or - T<=7*15 and 3 or + T<=7*10 and 5 or + T<=7*13 and 4 or + T<=7*18 and 3 or T<=7*26 and 2 or 1 end diff --git a/parts/modes/round_h.lua b/parts/modes/round_h.lua index 0e4262e5..e1d08b47 100644 --- a/parts/modes/round_h.lua +++ b/parts/modes/round_h.lua @@ -23,7 +23,7 @@ return{ }, load=function() PLY.newPlayer(1) - PLY.newAIPlayer(2,BOT.template{type='CC',speedLV=8,next=2,hold=true,node=16000}) + PLY.newAIPlayer(2,BOT.template{type='CC',speedLV=7,next=2,hold=false,node=5000}) end, score=function(P)return{P.stat.piece,P.stat.time}end, scoreDisp=function(D)return D[1].." Pieces "..STRING.time(D[2])end, @@ -32,9 +32,9 @@ return{ if P.result=='win'then local T=P.stat.piece return - T<=7*8 and 5 or - T<=7*10 and 4 or - T<=7*15 and 3 or + T<=7*10 and 5 or + T<=7*13 and 4 or + T<=7*18 and 3 or T<=7*26 and 2 or 1 end diff --git a/parts/modes/round_l.lua b/parts/modes/round_l.lua index 323b15e5..20c768fe 100644 --- a/parts/modes/round_l.lua +++ b/parts/modes/round_l.lua @@ -23,7 +23,7 @@ return{ }, load=function() PLY.newPlayer(1) - PLY.newAIPlayer(2,BOT.template{type='CC',speedLV=8,next=3,hold=true,node=26000}) + PLY.newAIPlayer(2,BOT.template{type='CC',speedLV=7,next=3,hold=true,node=20000}) end, score=function(P)return{P.stat.piece,P.stat.time}end, scoreDisp=function(D)return D[1].." Pieces "..STRING.time(D[2])end, @@ -32,9 +32,9 @@ return{ if P.result=='win'then local T=P.stat.piece return - T<=7*8 and 5 or - T<=7*10 and 4 or - T<=7*15 and 3 or + T<=7*10 and 5 or + T<=7*13 and 4 or + T<=7*18 and 3 or T<=7*26 and 2 or 1 end diff --git a/parts/modes/round_n.lua b/parts/modes/round_n.lua index 3c8585f2..6041661e 100644 --- a/parts/modes/round_n.lua +++ b/parts/modes/round_n.lua @@ -23,7 +23,7 @@ return{ }, load=function() PLY.newPlayer(1) - PLY.newAIPlayer(2,BOT.template{type='CC',speedLV=8,next=1,hold=true,node=13000}) + PLY.newAIPlayer(2,BOT.template{type='9S',speedLV=7,hold=true}) end, score=function(P)return{P.stat.piece,P.stat.time}end, scoreDisp=function(D)return D[1].." Pieces "..STRING.time(D[2])end, @@ -32,9 +32,9 @@ return{ if P.result=='win'then local T=P.stat.piece return - T<=7*8 and 5 or - T<=7*10 and 4 or - T<=7*15 and 3 or + T<=7*10 and 5 or + T<=7*13 and 4 or + T<=7*18 and 3 or T<=7*26 and 2 or 1 end diff --git a/parts/modes/round_u.lua b/parts/modes/round_u.lua index db160690..89729f47 100644 --- a/parts/modes/round_u.lua +++ b/parts/modes/round_u.lua @@ -23,7 +23,7 @@ return{ }, load=function() PLY.newPlayer(1) - PLY.newAIPlayer(2,BOT.template{type='CC',speedLV=8,next=4,hold=true,node=40000}) + PLY.newAIPlayer(2,BOT.template{type='CC',speedLV=7,next=4,hold=true,node=40000}) end, score=function(P)return{P.stat.piece,P.stat.time}end, scoreDisp=function(D)return D[1].." Pieces "..STRING.time(D[2])end, @@ -32,9 +32,9 @@ return{ if P.result=='win'then local T=P.stat.piece return - T<=7*8 and 5 or - T<=7*10 and 4 or - T<=7*15 and 3 or + T<=7*10 and 5 or + T<=7*13 and 4 or + T<=7*18 and 3 or T<=7*26 and 2 or 1 end