0.8.11
This commit is contained in:
18
parts/AITemplate.lua
Normal file
18
parts/AITemplate.lua
Normal file
@@ -0,0 +1,18 @@
|
||||
local int=math.floor
|
||||
local AISpeed={60,50,45,35,25,15,9,6,4,2}
|
||||
return function(type,speedLV,next,hold,node)
|
||||
if type=="CC"then
|
||||
return{
|
||||
type="CC",
|
||||
next=next,
|
||||
hold=hold,
|
||||
delta=AISpeed[speedLV],
|
||||
node=node,
|
||||
}
|
||||
elseif type=="9S"then
|
||||
return{
|
||||
type="9S",
|
||||
delta=int(AISpeed[speedLV]*.5),
|
||||
}
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user