Made it so crits ignore defense boosts and elements use enumerations for type effectiveness

This commit is contained in:
dalyjame
2019-06-24 16:51:31 -04:00
parent 4d456d7e5d
commit 7c9942066f
8 changed files with 373 additions and 347 deletions
+6
View File
@@ -6,6 +6,9 @@ case class Config(
val title: String,
val crit: Double,
val stab: Double,
val resistMult: Double,
val weakMult: Double,
val immuneMult: Double,
val maxBoost: Int
) {
@@ -17,5 +20,8 @@ object Config {
def title = config.title
def crit = config.crit
def stab = config.stab
def resistMult = config.resistMult
def weakMult = config.weakMult
def immuneMult = config.immuneMult
def maxBoost = config.maxBoost
}