20 lines
428 B
Scala
20 lines
428 B
Scala
package fmon
|
|
|
|
import scala.language.implicitConversions
|
|
|
|
import scala.util.Random
|
|
|
|
import fmon.util.Dice
|
|
|
|
package object stat {
|
|
type Stat = Statistic.Value
|
|
type EffectType = EffectType.Value
|
|
type MoveType = MoveType.Value
|
|
type Gender = Gender.Value
|
|
type Nature = Nature.Val
|
|
type Target = Target.Value
|
|
type XpCurve = XpCurve.Val
|
|
|
|
implicit def templateToStatus(status: StatusTemplate): Status = status.build
|
|
|
|
} |