Added a bunch of moves

This commit is contained in:
dalyjame
2019-06-12 09:36:47 -04:00
parent bebbf469db
commit 273a79c9c6
4 changed files with 6855 additions and 228 deletions
+2 -3
View File
@@ -14,12 +14,11 @@ case class Prop(url : Seq[String])
object Game {
def main(args : Array[String]): Unit = {
implicit val rng = new scala.util.Random()
val form1 = Form("Diabolo")
val form2 = Form("Chanilla")
val movepool1 = IndexedSeq(Move("electroball"), Move("thunderwave"))
val movepool2 = IndexedSeq(Move("headbutt"))
val movepool1 = IndexedSeq(Move("eruption"))
val movepool2 = IndexedSeq(Move("flail"))
val p1 = TrainerID("Jaeda", Gender.Female, 0)
val p2 = TrainerID("Wild Monster", Gender.Male, 0)
val party1 = new Party(p1, new MonsterPtr(Monster.generate("Allied Mon", p1, 500, form1, movepool1)), IndexedSeq())