Class: BCDice::GameSystem::DoubleCross_Korean
- Inherits:
-
DoubleCross
- Object
- Base
- DoubleCross
- BCDice::GameSystem::DoubleCross_Korean
- Defined in:
- lib/bcdice/game_system/DoubleCross_Korean.rb
Defined Under Namespace
Classes: DX
Constant Summary collapse
- ID =
ゲームシステムの識別子
'DoubleCross:Korean'
- NAME =
ゲームシステム名
'더블크로스2nd,3rd'
- SORT_KEY =
ゲームシステム名の読みがな
'国際化:Korean:더블크로스'
- HELP_MESSAGE =
ダイスボットの使い方
<<~INFO_MESSAGE_TEXT ・판정 커맨드(xDX+y@c or xDXc+y) "(개수)DX(수정)@(크리티컬치)" 혹은 "(개수)DX(크리티컬치)(수정)" 으로 지정합니다. 수정치도 붙일 수 있습니다. 예)10dx 10dx+5@8(OD tool식) 5DX7+7-3(질풍노도식) ・각종표 ・감정표(ET) 포지티브와 네거티브 양쪽을 굴려, 겉으로 나타는 쪽에 O를 붙여 표시합니다. 물론 임의로 정하는 부분을 변경해도 괜찮습니다. ・D66다이스 있음 INFO_MESSAGE_TEXT
- POSITIVE_EMOTION_TABLE =
感情表(ポジティブ)
positive_emotion_table(:ko_kr).freeze
- NEGATIVE_EMOTION_TABLE =
感情表(ネガティブ)
negative_emotion_table(:ko_kr).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
Instance Method Summary collapse
-
#initialize(command) ⇒ DoubleCross_Korean
constructor
A new instance of DoubleCross_Korean.
Methods inherited from DoubleCross
#eval_game_system_specific_command
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) ⇒ DoubleCross_Korean
Returns a new instance of DoubleCross_Korean.
32 33 34 35 36 |
# File 'lib/bcdice/game_system/DoubleCross_Korean.rb', line 32 def initialize(command) super(command) @locale = :ko_kr end |