This commit is contained in:
ntr 2019-03-29 22:27:38 +11:00
parent 8f52f9370c
commit 9f462bbfcc
2 changed files with 6 additions and 1 deletions

View File

@ -15,6 +15,11 @@
# WORK WORK # WORK WORK
## NOW ## NOW
fix taunt
decay is op
cryp vbox cryp vbox
update defensives in skill.rs update defensives in skill.rs

View File

@ -187,7 +187,7 @@ impl Spec {
if team_colours.green >= 2 && team_colours.red >= 2 { mult += 5 }; if team_colours.green >= 2 && team_colours.red >= 2 { mult += 5 };
if team_colours.green >= 5 && team_colours.red >= 5 { mult += 10 }; if team_colours.green >= 5 && team_colours.red >= 5 { mult += 10 };
if team_colours.green >= 10 && team_colours.red >= 10 { mult += 20 }; if team_colours.green >= 10 && team_colours.red >= 10 { mult += 20 };
mult * (team_colours.green + team_colours.red as u64) mult * (team_colours.green + team_colours.red) as u64
}, },
Spec::LBSI => modified + { Spec::LBSI => modified + {
let mut mult: u64 = 5; let mut mult: u64 = 5;