Nephos/botpop

View on GitHub
plugins/dice/Warrior.rb

Summary

Maintainability
A
0 mins
Test Coverage
require_relative 'Character'

class Warrior < Character

  def initialize str, *arg
    super(str, 10, 10, 10, 10, 10, *arg)
  end

  def str; carac[:str]; end
  def bstr; (str - 10) / 2; end

end