Update to Roll and Created EightBall

Added more use to the Roll command, can now do basic math in addition to rolling dice.
Created Eightball, a command to output a standard eightball saying.
This commit is contained in:
Alex Stewart
2019-03-10 20:20:11 -07:00
parent 0d0e1e09ab
commit 36b210e0f5
3 changed files with 164 additions and 50 deletions
+1
View File
@@ -325,6 +325,7 @@ public class ObjectBuilderFactory
manager.Register("rpend", new CommandRPEnd(KittyRole.General, KittyRating.Safe));
manager.Register(new String[] {"tony", "stark", "dontfeelgood", "dontfeelsogood"}, new CommandStark(KittyRole.General, KittyRating.Safe));
manager.Register("blur", new CommandBlurry(KittyRole.General, KittyRating.Safe));
manager.Register(new String [] {"eightball", "8ball"}, new CommandEightBall(KittyRole.General, KittyRating.Safe));
return manager;
}