mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-08-03 04:16:19 -04:00
changed powercrystal loottable to live values, changed tune values to live values
Flawless power crystal was rare loot too according to official forums guide, however no screenshot proof could be found.
This commit is contained in:
@@ -1687,7 +1687,7 @@ public class LootService implements INetworkDispatch {
|
||||
minValue1 = 21;
|
||||
maxValue1 = 23;
|
||||
finalMinDmg = minValue1+new Random().nextInt(maxValue1+1-minValue1);
|
||||
finalMaxDmg = finalMinDmg+1;
|
||||
finalMaxDmg = finalMinDmg+2;
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -1729,15 +1729,17 @@ public class LootService implements INetworkDispatch {
|
||||
minValue1 = 15;
|
||||
maxValue1 = 17;
|
||||
finalMinDmg = minValue1+new Random().nextInt(maxValue1+1-minValue1);
|
||||
finalMaxDmg = finalMinDmg+1;
|
||||
finalMaxDmg = finalMinDmg+2;
|
||||
break;
|
||||
case "kraytpearl_flawless": // Flawless - 19/20 damage
|
||||
finalMinDmg = 19;
|
||||
finalMaxDmg = 20;
|
||||
break;
|
||||
case "kraytpearl_ancient": // Ancient - 20/22 damage
|
||||
finalMinDmg = 20;
|
||||
finalMaxDmg = 22;
|
||||
case "kraytpearl_ancient": // Ancient - between 20/21 min and 22/23 max damage
|
||||
minValue1 = 20;
|
||||
maxValue1 = 21;
|
||||
finalMinDmg = minValue1+new Random().nextInt(maxValue1+1-minValue1);
|
||||
finalMaxDmg = finalMinDmg+2;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user