Class: BCDice::GameSystem::JekyllAndHyde

Inherits:
DesperateRun show all
Defined in:
lib/bcdice/game_system/JekyllAndHyde.rb

Constant Summary collapse

ID =

ゲームシステムの識別子

"JekyllAndHyde"
NAME =

ゲームシステム名

"ジキルとハイドとグリトグラ"
SORT_KEY =

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

"しきるとはいととくりとくら"
HELP_MESSAGE =

ダイスボットの使い方

<<~HELP
  ・難易度算出コマンド DDC
  ・判定コマンド RCx or RCx+y or RCx-y(x=難易度、y=修正値(省略可能))
  ・目標決定表 GOALT
HELP
TABLES =
{
  "GOALT" => DiceTable::Table.new(
    "目標決定表",
    "1D6",
    [
      "「主人格の目的達成」",
      "「主人格の目的阻害」",
      "「主人格のハッピーエンド(目的達成しなくてもよい)」",
      "「主人格のバッドエンド(目的達成していてもよい)」",
      "「自分の人格が目的を決定できる」",
      "「主人格の目的達成」「主人格の目的阻害」「主人格のハッピーエンド(目的達成しなくてもよい)」「主人格のバッドエンド(目的達成していてもよい)」「自分の人格が目的を決定できる」のどれかを自由に選べる"
    ]
  )
}.freeze

Instance Attribute Summary

Attributes inherited from Base

#d66_sort_type, #default_cmp_op, #default_target_number, #randomizer, #reroll_dice_reroll_threshold, #round_type, #sides_implicit_d, #upper_dice_reroll_threshold

Method Summary

Methods inherited from DesperateRun

#initialize

Methods inherited from Base

#change_text, #check_result, command_pattern, #enable_debug, #enabled_d9?, #eval, eval, #grich_text, #initialize, prefixes_pattern, register_prefix, register_prefix_from_super_class, #sort_add_dice?, #sort_barabara_dice?

Methods included from Translate

#translate

Constructor Details

This class inherits a constructor from BCDice::GameSystem::DesperateRun