class BCDice::GameSystem::BeastBindTrinity

Constants

HELP_MESSAGE

ダイスボットの使い方

ID

ゲームシステムの識別子

NAME

ゲームシステム名

SORT_KEY

ゲームシステム名の読みがな

TABLES

Public Class Methods

new(command) click to toggle source
Calls superclass method BCDice::Base::new
# File lib/bcdice/game_system/BeastBindTrinity.rb, line 54
def initialize(command)
  super(command)

  @d66_sort_type = D66SortType::ASC
end

Public Instance Methods

eval_game_system_specific_command(command) click to toggle source
# File lib/bcdice/game_system/BeastBindTrinity.rb, line 244
def eval_game_system_specific_command(command)
  if (ret = roll_tables(command, TABLES))
    return ret
  end

  bb = BBCommand.new(command)
  return bb.roll(@randomizer)
end