summaryrefslogtreecommitdiff
path: root/app/models/monster.rb
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2021-05-26 19:26:00 -0400
committerDavid Gay <david@davidgay.org>2021-05-26 19:26:00 -0400
commit9b2acceda7e36946f9bb15ff8d1a93f9c45a964f (patch)
tree67ebf8f7fcefb4a1811074c9eec519d865c70391 /app/models/monster.rb
parent0b9b45d573cc4f836ba7a99de77e9da18e768f10 (diff)
Combat styles
Diffstat (limited to 'app/models/monster.rb')
-rw-r--r--app/models/monster.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/models/monster.rb b/app/models/monster.rb
index 1b521aa..d1e1b99 100644
--- a/app/models/monster.rb
+++ b/app/models/monster.rb
@@ -9,19 +9,19 @@ class Monster < ApplicationRecord
self.whatnot[:speed][:base]
end
- def accuracy
+ def accuracy(with_combat_style: false)
self.whatnot[:accuracy][:base]
end
- def power
+ def power(with_combat_style: false)
self.whatnot[:power][:base]
end
- def evasion
+ def evasion(with_combat_style: false)
self.whatnot[:evasion][:base]
end
- def block
+ def block(with_combat_style: false)
self.whatnot[:block][:base]
end