Class: BCDice::GameSystem::LostRecord
- Defined in:
- lib/bcdice/game_system/LostRecord.rb
Constant Summary collapse
- ID =
ゲームシステムの識別子
'LostRecord'
- NAME =
ゲームシステム名
'ロストレコード'
- SORT_KEY =
ゲームシステム名の読みがな
'ろすとれこおと'
- HELP_MESSAGE =
ダイスボットの使い方
"\u203B\u3053\u306E\u30C0\u30A4\u30B9\u30DC\u30C3\u30C8\u306F\u90E8\u5C4B\u306E\u30B7\u30B9\u30C6\u30E0\u540D\u8868\u793A\u7528\u3068\u306A\u308A\u307E\u3059\u3002\nD66\u3092\u632F\u3063\u305F\u6642\u3001\u5C0F\u3055\u3044\u76EE\u304C\u5341\u306E\u4F4D\u306B\u306A\u308A\u307E\u3059\u3002\n"
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
Instance Method Summary collapse
-
#initialize(command) ⇒ LostRecord
constructor
A new instance of LostRecord.
Methods inherited from Base
#change_text, #check_result, command_pattern, #enable_debug, #enabled_d9?, #eval, eval, #grich_text, prefixes_pattern, register_prefix, register_prefix_from_super_class, #sort_add_dice?, #sort_barabara_dice?
Methods included from Translate
Constructor Details
#initialize(command) ⇒ LostRecord
Returns a new instance of LostRecord.
21 22 23 24 25 26 |
# File 'lib/bcdice/game_system/LostRecord.rb', line 21 def initialize(command) super(command) # D66は昇順に @d66_sort_type = D66SortType::ASC end |