class BCDice::GameSystem::RyuTuber

Constants

HELP_MESSAGE
ID

ゲームシステムの識別子

NAME

ゲームシステム名

SORT_KEY

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

TABLES
TEXTS

Public Instance Methods

eval_game_system_specific_command(command) click to toggle source
# File lib/bcdice/game_system/RyuTuber.rb, line 45
def eval_game_system_specific_command(command) # ダイスロールコマンド
  if (ret = roll_tables(command, TABLES))
    return ret
  end

  if (text = TEXTS[command])
    return text.chomp
  end

  return nil
end