Files
Gods-bot/scripts/commands.wren
2025-11-30 13:26:24 +00:00

14 lines
347 B
Plaintext

import "random" for Random
class Commands {
static god(){
var random = Random.new()
var list = ["may his shepherd guide you", "jesus loves you", "i was sent hear by god to build his 7th temple"]
return random.sample(list)
}
static pray(){
return "The Lord guides my words today so they speak lovingly and with kindness."
}
}