Changed some data in BlueNormals and the movements in KockedDown()
This commit is contained in:
parent
4b34390e10
commit
2a65b84316
@ -748,7 +748,7 @@ public class BlueBaseFrames {
|
||||
|
||||
private static Frame KnockedDown1() {
|
||||
//movement data
|
||||
double moveX = -6.0;
|
||||
double moveX = -16.0;
|
||||
double moveY = 0.0;
|
||||
|
||||
//cancelData
|
||||
@ -776,7 +776,7 @@ public class BlueBaseFrames {
|
||||
|
||||
private static Frame KnockedDown2() {
|
||||
//movement data
|
||||
double moveX = -6.0;
|
||||
double moveX = -16.0;
|
||||
double moveY = 0.0;
|
||||
|
||||
//cancelData
|
||||
@ -804,7 +804,7 @@ public class BlueBaseFrames {
|
||||
|
||||
private static Frame KnockedDown3() {
|
||||
//movement data
|
||||
double moveX = -6.0;
|
||||
double moveX = -16.0;
|
||||
double moveY = 0.0;
|
||||
|
||||
//cancelData
|
||||
@ -888,7 +888,7 @@ public class BlueBaseFrames {
|
||||
|
||||
private static Frame KnockedDown6() {
|
||||
//movement data
|
||||
double moveX = -6.0;
|
||||
double moveX = -8.0;
|
||||
double moveY = 0.0;
|
||||
|
||||
//cancelData
|
||||
@ -916,7 +916,7 @@ public class BlueBaseFrames {
|
||||
|
||||
private static Frame KnockedDown7() {
|
||||
//movement data
|
||||
double moveX = -6.0;
|
||||
double moveX = -8.0;
|
||||
double moveY = 0.0;
|
||||
|
||||
//cancelData
|
||||
@ -944,7 +944,7 @@ public class BlueBaseFrames {
|
||||
|
||||
private static Frame KnockedDown8() {
|
||||
//movement data
|
||||
double moveX = -6.0;
|
||||
double moveX = -8.0;
|
||||
double moveY = 0.0;
|
||||
|
||||
//cancelData
|
||||
|
@ -144,7 +144,7 @@ public class BlueNormals {
|
||||
f[0] = crouchAFrame2();
|
||||
f[1] = crouchAFrame2();
|
||||
f[2] = crouchAFrame2();
|
||||
return(new attackPart(15,0,4,4,8,3,f,false,false,false));
|
||||
return(new attackPart(10,0,4,4,8,3,f,false,false,false));
|
||||
}
|
||||
|
||||
protected static Attack blueCrouchJab() {
|
||||
@ -331,7 +331,7 @@ public class BlueNormals {
|
||||
for(int i = 0; i < f.length; i++) {
|
||||
f[i] = crouchCFrame3();
|
||||
}
|
||||
return(new attackPart(90,0,13,29,12,5,f,false,false,false));
|
||||
return(new attackPart(45,0,13,29,12,5,f,false,false,false));
|
||||
}
|
||||
|
||||
protected static Attack blueCrouchFierce() {
|
||||
@ -468,7 +468,7 @@ public class BlueNormals {
|
||||
f[1] = crouchBFrame2();
|
||||
f[2] = crouchBFrame2();
|
||||
f[3] = crouchBFrame2();
|
||||
return(new attackPart(15,0,9,8,10,5,f,false,false,false));
|
||||
return(new attackPart(10,0,9,8,10,5,f,false,false,false));
|
||||
}
|
||||
|
||||
protected static Attack blueCrouchShort() {
|
||||
@ -646,7 +646,7 @@ public class BlueNormals {
|
||||
for(int i = 0; i < f.length; i++) {
|
||||
f[i] = crouchDFrame2();
|
||||
}
|
||||
return(new attackPart(120,0,31,10,30,15,f,true,false,true));
|
||||
return(new attackPart(70,0,31,10,30,15,f,true,false,true));
|
||||
}
|
||||
|
||||
protected static Attack blueCrouchRoundHouse() {
|
||||
@ -732,7 +732,7 @@ public class BlueNormals {
|
||||
*/
|
||||
Frame f = new Frame(0.0,0.0,phb,ahb,pthb,athb,pushb,
|
||||
//cancels (in order : normal, special, jump, move, dash)
|
||||
false,true,false,false,false);
|
||||
false,false,false,false,false);
|
||||
f.setSpriteWrap((138*13),0,138,138);
|
||||
return f;
|
||||
}
|
||||
@ -753,7 +753,7 @@ public class BlueNormals {
|
||||
phb.add(bStandPHB4);
|
||||
pthb.add(bStandPTHB1);
|
||||
Frame blueStandframe1 = new Frame(0.0,0.0,phb,new ArrayList<Active_HitBox>(),pthb,new ArrayList<Active_throw_Hitbox>(),
|
||||
bStandPB1,false,true,false,false,false);
|
||||
bStandPB1,false,false,false,false,false);
|
||||
blueStandframe1.setSpriteWrap(138,0,138,138);
|
||||
return blueStandframe1;
|
||||
}
|
||||
@ -781,7 +781,7 @@ public class BlueNormals {
|
||||
f[0] = standAFrame2();
|
||||
f[1] = standAFrame2();
|
||||
f[2] = standAFrame2();
|
||||
return(new attackPart(80,0,4,4,8,3,f,false,false,false));
|
||||
return(new attackPart(50,0,4,4,8,3,f,false,false,false));
|
||||
}
|
||||
|
||||
protected static Attack blueStandJab() {
|
||||
@ -994,7 +994,7 @@ public class BlueNormals {
|
||||
for(int i = 0; i < f.length; i++) {
|
||||
f[i] = StandCFrame3();
|
||||
}
|
||||
return(new attackPart(100,0,28,14,10,5,f,false,false,false));
|
||||
return(new attackPart(60,0,28,14,10,5,f,false,false,false));
|
||||
}
|
||||
|
||||
protected static Attack blueStandFierce() {
|
||||
@ -1220,7 +1220,7 @@ public class BlueNormals {
|
||||
for(int i = 0; i < f.length; i++) {
|
||||
f[i] = standDFrame3();
|
||||
}
|
||||
return(new attackPart(100,0,20,18,16,14,f,false,false,false));
|
||||
return(new attackPart(70,0,20,18,16,14,f,false,false,false));
|
||||
}
|
||||
|
||||
protected static attackPart blueStandDrecovery() {
|
||||
@ -1389,7 +1389,7 @@ public class BlueNormals {
|
||||
for(int i = 0; i < f.length; i++) {
|
||||
f[i] = StandBFrame2();
|
||||
}
|
||||
return(new attackPart(80,0,11,8,8,5,f,false,false,false));
|
||||
return(new attackPart(50,0,11,8,8,5,f,false,false,false));
|
||||
}
|
||||
|
||||
private static attackPart blueStandBrecovery() {
|
||||
@ -1679,7 +1679,7 @@ public class BlueNormals {
|
||||
for (int i = 0; i < f.length; i++) {
|
||||
f[i] = ForwardDFrame3();
|
||||
}
|
||||
return(new attackPart(30,0,5,5,0,0,f,false,true,false));
|
||||
return(new attackPart(20,0,5,5,0,0,f,false,true,false));
|
||||
}
|
||||
|
||||
protected static attackPart blueForwardDactive2() {
|
||||
@ -1687,7 +1687,7 @@ public class BlueNormals {
|
||||
for (int i = 0; i < f.length; i++) {
|
||||
f[i] = ForwardDFrame4();
|
||||
}
|
||||
return(new attackPart(70,0,11,3,8.0,4.0,f,false,true,false));
|
||||
return(new attackPart(60,0,11,3,8.0,4.0,f,false,true,false));
|
||||
}
|
||||
|
||||
protected static Attack blueFordwardRoundHouse() {
|
||||
@ -1825,7 +1825,7 @@ public class BlueNormals {
|
||||
for(int i = 0; i < f.length; i++) {
|
||||
f[i] = JumpAFrame2();
|
||||
}
|
||||
return(new attackPart(80,0,10,5,8,3,f,false,true,false));
|
||||
return(new attackPart(60,0,10,5,8,3,f,false,true,false));
|
||||
}
|
||||
|
||||
private static attackPart blueJumpArecovery() {
|
||||
@ -1973,7 +1973,7 @@ public class BlueNormals {
|
||||
for(int i = 0; i < f.length; i++) {
|
||||
f[i] = JumpCFrame2();
|
||||
}
|
||||
return(new attackPart(115,0,30,5,13,5,f,false,true,false));
|
||||
return(new attackPart(60,0,30,5,13,5,f,false,true,false));
|
||||
}
|
||||
|
||||
private static attackPart blueJumpCrecovery() {
|
||||
@ -2123,7 +2123,7 @@ public class BlueNormals {
|
||||
for(int i = 0; i < f.length; i++) {
|
||||
f[i] = JumpBFrame2();
|
||||
}
|
||||
return(new attackPart(80,0,30,15,25,10,f,false,true,false));
|
||||
return(new attackPart(60,0,30,15,25,10,f,false,true,false));
|
||||
}
|
||||
|
||||
private static attackPart blueJumpBrecovery() {
|
||||
@ -2252,7 +2252,7 @@ public class BlueNormals {
|
||||
for(int i = 0; i < f.length; i++) {
|
||||
f[i] = JumpDFrame2();
|
||||
}
|
||||
return(new attackPart(115,0,50,20,45,15,f,false,true,false));
|
||||
return(new attackPart(90,0,50,20,45,15,f,false,true,false));
|
||||
}
|
||||
|
||||
private static attackPart blueJumpDrecovery() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user