Skip to content
This repository has been archived by the owner on Oct 3, 2020. It is now read-only.

Commit

Permalink
added some personality code
Browse files Browse the repository at this point in the history
  • Loading branch information
fulton committed Nov 2, 2019
1 parent 0fc938e commit 9da4369
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/main/java/com/andromeda/araserver/skills/SocialSkills.kt
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
package com.andromeda.araserver.skills

import com.andromeda.araserver.util.OutputModel

//this is where ara is nice to people :)
class SocialSkills {
fun doYouLike(thing:String){
var returedVal = OutputModel("", "", "", "", "", "")
when (thing){
"star trek"-> TODO()
"star wars"-> TODO()
"google"-> TODO()
"star trek"-> returedVal = OutputModel("Yes", "I love next generation, Data is my favorite", "", "", "Yes, I love next generation, Data is my favorite", "")
"star wars"-> returedVal = OutputModel("Yes", "I love Star Wars, my favorite is the one is space", "", "", "Love star wars I do", "")
"google"-> returedVal = OutputModel("Yup", "The google assistant is a friend of mine", "", "", "yup, The google assistant is a friend of mine", "")
}
}
fun mainFun(){

}
fun favorite(thing: String){
var returedVal = OutputModel("", "", "", "", "", "")
when (thing){
"colour" -> TODO()
}
Expand Down

0 comments on commit 9da4369

Please sign in to comment.