Made it so crits ignore defense boosts and elements use enumerations for type effectiveness
This commit is contained in:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user